Changeset 368
- Timestamp:
- May 24, 2012, 12:13:31 AM (13 years ago)
- Location:
- trunk/icedtea-web/plugin/icedteanp
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/icedtea-web/plugin/icedteanp/IcedTeaNPPlugin.cc ¶
r365 r368 44 44 #include <os2.h> 45 45 #include <emx/startup.h> 46 #include <sys/socket.h> 46 47 #endif 47 48 … … 160 161 static GIOChannel* in_from_appletviewer = NULL; 161 162 163 #ifdef __OS2__ 164 #define CLOSE_FD(fd) do { if (fd != -1) { close (fd); fd = -1; } } while (0) 165 #endif 166 167 #ifdef __OS2__ 168 int in_pipe[2] = { -1 }; 169 #else 162 170 // Applet viewer input pipe name. 163 171 gchar* in_pipe_name; 172 #endif 164 173 165 174 // Applet viewer input watch source. 166 175 gint in_watch_source; 167 176 177 #ifdef __OS2__ 178 int out_pipe[2] = { -1 }; 179 #else 168 180 // Applet viewer output pipe name. 169 181 gchar* out_pipe_name; 182 #endif 170 183 171 184 // Applet viewer output watch source. … … 453 466 // pipe. 454 467 468 #ifdef __OS2__ 469 if (socketpair (AF_LOCAL, SOCK_STREAM, 0, in_pipe) == -1) 470 { 471 PLUGIN_ERROR_TWO ("Failed to create input pipe", strerror (errno)); 472 np_error = NPERR_GENERIC_ERROR; 473 goto cleanup_in_pipe; 474 } 475 PLUGIN_DEBUG ("ITNP_New: created input fifo: %d/%d\n", in_pipe[0], in_pipe[1]); 476 #else 455 477 // in_pipe_name 456 478 in_pipe_name = g_strdup_printf ("%s/%d-icedteanp-appletviewer-to-plugin", … … 476 498 } 477 499 PLUGIN_DEBUG ("ITNP_New: created input fifo: %s\n", in_pipe_name); 500 #endif 478 501 479 502 // Create plugin-to-appletviewer pipe which we refer to as the 480 503 // output pipe. 481 504 505 #ifdef __OS2__ 506 if (socketpair (AF_LOCAL, SOCK_STREAM, 0, out_pipe) == -1) 507 { 508 PLUGIN_ERROR_TWO ("Failed to create input pipe", strerror (errno)); 509 np_error = NPERR_GENERIC_ERROR; 510 goto cleanup_out_pipe; 511 } 512 PLUGIN_DEBUG ("ITNP_New: created output fifo: %d/%d\n", out_pipe[0], out_pipe[1]); 513 #else 482 514 // out_pipe_name 483 515 out_pipe_name = g_strdup_printf ("%s/%d-icedteanp-plugin-to-appletviewer", … … 502 534 } 503 535 PLUGIN_DEBUG ("ITNP_New: created output fifo: %s\n", out_pipe_name); 536 #endif 504 537 505 538 // Start a separate appletviewer process for each applet, even if … … 510 543 np_error = plugin_start_appletviewer (data); 511 544 545 #ifdef __OS2__ 546 // close child ends of the pipes (not needed) 547 CLOSE_FD (in_pipe[1]); 548 CLOSE_FD (out_pipe[1]); 549 #endif 550 512 551 // Create plugin-to-appletviewer channel. The default encoding for 513 552 // the file is UTF-8. 514 553 // out_to_appletviewer 554 #ifdef __OS2__ 555 out_to_appletviewer = g_io_channel_unix_new (out_pipe[0]); 556 #else 515 557 out_to_appletviewer = g_io_channel_new_file (out_pipe_name, 516 558 "w", &channel_error); 559 #endif 517 560 if (!out_to_appletviewer) 518 561 { … … 540 583 // the file is UTF-8. 541 584 // in_from_appletviewer 585 #ifdef __OS2__ 586 in_from_appletviewer = g_io_channel_unix_new (in_pipe [0]); 587 #else 542 588 in_from_appletviewer = g_io_channel_new_file (in_pipe_name, 543 589 "r", &channel_error); 590 #endif 544 591 if (!in_from_appletviewer) 545 592 { … … 591 638 592 639 // cleanup_out_pipe: 640 #ifdef __OS2__ 641 cleanup_out_pipe: 642 CLOSE_FD (out_pipe [0]); 643 CLOSE_FD (out_pipe[1]); 644 #else 593 645 // Delete output pipe. 594 PLUGIN_DEBUG ("ITNP_New: deleting input fifo: %s\n", in_pipe_name);646 PLUGIN_DEBUG ("ITNP_New: deleting output fifo: %s\n", out_pipe_name); 595 647 unlink (out_pipe_name); 596 PLUGIN_DEBUG ("ITNP_New: deleted input fifo: %s\n", in_pipe_name);648 PLUGIN_DEBUG ("ITNP_New: deleted output fifo: %s\n", out_pipe_name); 597 649 598 650 cleanup_out_pipe_name: 599 651 g_free (out_pipe_name); 600 652 out_pipe_name = NULL; 653 #endif 601 654 602 655 // cleanup_in_pipe: 656 #ifdef __OS2__ 657 cleanup_in_pipe: 658 CLOSE_FD (in_pipe[0]); 659 CLOSE_FD (out_pipe[1]); 660 #else 603 661 // Delete input pipe. 604 PLUGIN_DEBUG ("ITNP_New: deleting output fifo: %s\n", out_pipe_name);662 PLUGIN_DEBUG ("ITNP_New: deleting input fifo: %s\n", in_pipe_name); 605 663 unlink (in_pipe_name); 606 PLUGIN_DEBUG ("ITNP_New: deleted output fifo: %s\n", out_pipe_name);664 PLUGIN_DEBUG ("ITNP_New: deleted input fifo: %s\n", in_pipe_name); 607 665 608 666 cleanup_in_pipe_name: 609 667 g_free (in_pipe_name); 610 668 in_pipe_name = NULL; 669 #endif 611 670 612 671 done: … … 1570 1629 } 1571 1630 command_line[cmd_num++] = g_strdup("sun.applet.PluginMain"); 1631 #ifdef __OS2__ 1632 command_line[cmd_num++] = g_strdup_printf("%d", out_pipe [1]); 1633 command_line[cmd_num++] = g_strdup_printf("%d", in_pipe [1]); 1634 #else 1572 1635 command_line[cmd_num++] = g_strdup(out_pipe_name); 1573 1636 command_line[cmd_num++] = g_strdup(in_pipe_name); 1637 #endif 1574 1638 command_line[cmd_num] = NULL; 1575 1639 } else … … 1581 1645 command_line[cmd_num++] = g_strdup_printf("%s/lib/rt.jar", ICEDTEA_WEB_JRE); 1582 1646 command_line[cmd_num++] = g_strdup("sun.applet.PluginMain"); 1647 #ifdef __OS2__ 1648 command_line[cmd_num++] = g_strdup_printf("%d", out_pipe [1]); 1649 command_line[cmd_num++] = g_strdup_printf("%d", in_pipe [1]); 1650 #else 1583 1651 command_line[cmd_num++] = g_strdup(out_pipe_name); 1584 1652 command_line[cmd_num++] = g_strdup(in_pipe_name); 1653 #endif 1585 1654 command_line[cmd_num] = NULL; 1586 1655 } … … 1603 1672 error = NPERR_GENERIC_ERROR; 1604 1673 } 1674 1675 // make sure we get an error rather than crash the browser when talking to the 1676 // jvm process if it dies unexpectedly (we do it here since g_spawn() is known 1677 // to reset SIGPIPE handler to SIG_DFL) 1678 signal (SIGPIPE, SIG_IGN); 1605 1679 1606 1680 g_strfreev (environment); … … 2423 2497 2424 2498 // cleanup_out_pipe: 2499 #ifdef __OS2__ 2500 CLOSE_FD (out_pipe [0]); 2501 CLOSE_FD (out_pipe [1]); 2502 #else 2425 2503 // Delete output pipe. 2426 2504 PLUGIN_DEBUG ("NP_Shutdown: deleting output fifo: %s\n", out_pipe_name); … … 2431 2509 g_free (out_pipe_name); 2432 2510 out_pipe_name = NULL; 2511 #endif 2433 2512 2434 2513 // cleanup_in_pipe: 2514 #ifdef __OS2__ 2515 CLOSE_FD (in_pipe [0]); 2516 CLOSE_FD (in_pipe [1]); 2517 #else 2435 2518 // Delete input pipe. 2436 2519 PLUGIN_DEBUG ("NP_Shutdown: deleting input fifo: %s\n", in_pipe_name); … … 2441 2524 g_free (in_pipe_name); 2442 2525 in_pipe_name = NULL; 2526 #endif 2443 2527 2444 2528 // Destroy the call queue mutex -
TabularUnified trunk/icedtea-web/plugin/icedteanp/java/sun/applet/PluginMain.java ¶
r348 r368 63 63 package sun.applet; 64 64 65 import java.io.File;66 import java.io.FileInputStream;67 import java.io.FileOutputStream;68 65 import java.io.IOException; 69 66 import java.net.Authenticator; … … 81 78 * The main entry point into PluginAppletViewer. 82 79 */ 83 public class PluginMain {80 public class PluginMain extends PluginMainBase { 84 81 // the files where stdout/stderr are sent to 85 82 public static final String PLUGIN_STDERR_FILE = "java.stderr"; … … 95 92 public static void main(String args[]) 96 93 throws IOException { 97 if (args.length != 2 || !(new File(args[0]).exists()) || !(new File(args[1]).exists())) { 98 System.err.println("Invalid pipe names provided. Refusing to proceed."); 94 if (!checkArgs(args)) { 99 95 System.exit(1); 100 96 } 101 97 102 98 try { 103 PluginStreamHandler streamHandler = connect(args [0], args[1]);99 PluginStreamHandler streamHandler = connect(args); 104 100 boolean redirectStreams = System.getenv().containsKey("ICEDTEAPLUGIN_DEBUG"); 105 101 … … 128 124 private PluginMain() { 129 125 // The PluginMain constructor should never, EVER, be called 130 }131 132 private static PluginStreamHandler connect(String inPipe, String outPipe) {133 PluginStreamHandler streamHandler = null;134 try {135 streamHandler = new PluginStreamHandler(new FileInputStream(inPipe), new FileOutputStream(outPipe));136 PluginDebug.debug("Streams initialized");137 } catch (IOException ioe) {138 ioe.printStackTrace();139 }140 return streamHandler;141 126 } 142 127
Note:
See TracChangeset
for help on using the changeset viewer.