plugin.cpp
上传用户:hongyu5696
上传日期:2018-01-22
资源大小:391k
文件大小:90k
源码类别:

PlugIns编程

开发平台:

Unix_Linux

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: NPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Netscape Public License
  5.  * Version 1.1 (the "License"); you may not use this file except in
  6.  * compliance with the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/NPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is mozilla.org code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 1998
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the NPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the NPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36. #include "plugin.h"
  37. #include "nsIServiceManager.h"
  38. #include "nsIMemory.h"
  39. #include "nsISupportsUtils.h" // this is where some useful macros defined
  40. #include <errno.h>
  41. #include <fcntl.h>
  42. #include <dirent.h>
  43. #include <unistd.h>
  44. #include <arpa/inet.h>
  45. #include <string.h>
  46. #include <sys/types.h>
  47. #include <stdlib.h>
  48. #include <sys/stat.h>
  49. #include <stdio.h>
  50. #include <sys/socket.h>
  51. #include <netinet/in.h>
  52. #include <errno.h>
  53. #include <string.h>
  54. #ifdef GTK2_ENABLED
  55. #include "../pixmaps/gtk_logo.h"
  56. #endif
  57. #ifdef GTK1_ENABLED
  58. #include "../pixmaps/logo.xpm"
  59. #endif
  60. #ifdef HAVE_GETTEXT
  61. #ifdef X_ENABLED
  62. #include <locale.h>
  63. #endif
  64. #endif
  65. extern int errno;
  66. extern int DEBUG;
  67. extern int instance_counter;
  68. char device[255];
  69. char data[1024];
  70. int32 STREAMBUFSIZE = 0X0FFFFFFF;
  71. // service manager which will give the access to all public browser services
  72. // we will use memory service as an illustration
  73. nsIServiceManager *gServiceManager = NULL;
  74. // Unix needs this
  75. #ifdef XP_UNIX
  76. char *NPP_GetMIMEDescription(void)
  77. {
  78.     return "application/download-nsplugin:.*:Download Firefox Plugin for Unix/Linux";
  79. }
  80. // get values per plugin
  81. NPError NS_PluginGetValue(NPPVariable aVariable, void *aValue)
  82. {
  83.     return GetValue(aVariable, aValue);
  84. }
  85. #endif //XP_UNIX
  86. //////////////////////////////////////
  87. //
  88. // general initialization and shutdown
  89. //
  90. NPError NS_PluginInitialize()
  91. {
  92.     // this is probably a good place to get the service manager
  93.     // note that Mozilla will add reference, so do not forget to release
  94.     nsISupports *sm = NULL;
  95. //    system("echo NS_PluginInitialize >>log");
  96.     NPN_GetValue(NULL, NPNVserviceManager, &sm);
  97.     // Mozilla returns nsIServiceManager so we can use it directly; doing QI on
  98.     // nsISupports here can still be more appropriate in case something is changed
  99.     // in the future so we don't need to do casting of any sort.
  100.     if (sm) {
  101. sm->QueryInterface(NS_GET_IID(nsIServiceManager),
  102.    (void **) &gServiceManager);
  103. NS_RELEASE(sm);
  104.     }
  105.     return NPERR_NO_ERROR;
  106. }
  107. void NS_PluginShutdown()
  108. {
  109.     // we should release the service manager
  110. //    system("echo NS_PluginShutdown >>log");
  111.     NS_IF_RELEASE(gServiceManager);
  112.     gServiceManager = NULL;
  113. }
  114. /////////////////////////////////////////////////////////////
  115. //
  116. // construction and destruction of our plugin instance object
  117. //
  118. nsPluginInstanceBase *NS_NewPluginInstance(nsPluginCreateData *
  119.    aCreateDataStruct)
  120. {
  121.     if (!aCreateDataStruct)
  122. return NULL;
  123. //    system("echo NS_NewPluginInstance>>log");
  124.     nsPluginInstance *plugin =
  125. new nsPluginInstance(aCreateDataStruct->instance);
  126.     New(plugin, aCreateDataStruct);
  127.     return plugin;
  128. }
  129. void NS_DestroyPluginInstance(nsPluginInstanceBase * aPlugin)
  130. {
  131. //    system("echo NS_DestroyPluginInstance>>log");
  132.     if (aPlugin)
  133. delete(nsPluginInstance *) aPlugin;
  134. }
  135. ////////////////////////////////////////
  136. //
  137. // nsPluginInstance class implementation
  138. //
  139. nsPluginInstance::nsPluginInstance(NPP aInstance):nsPluginInstanceBase(),
  140. mInstance(aInstance),
  141. mInitialized(FALSE), mScriptablePeer(NULL), mControlsScriptablePeer(NULL)
  142. {
  143.     int i;
  144.     instance_counter++;
  145. //    system("echo nsPluginInstance >>log");
  146.     toolkitok = toolkitOk(mInstance, &moz_toolkit, &plug_toolkit);
  147.     mScriptablePeer = getScriptablePeer();
  148.     mControlsScriptablePeer = getControlsScriptablePeer();
  149.     mScriptablePeer->InitControls(mControlsScriptablePeer);
  150.     mControlsScriptablePeer->AddRef();
  151.     // init the instance variables here.
  152.     mimetype = NULL;
  153.     state = 0;
  154.     url = NULL;
  155.     fname = NULL;
  156.     href = NULL;
  157.     lastmessage = (char *) NPN_MemAlloc(sizeof(char) * 1024);
  158.     memset(lastmessage, '', 1);
  159.     mode = 0;
  160.     window_width = 0;
  161.     window_height = 0;
  162.     embed_width = 0;
  163.     embed_height = 0;
  164.     movie_width = 0;
  165.     movie_height = 0;
  166.     setwindow = 0;
  167.     baseurl = NULL;
  168.     hostname = NULL;
  169.     pid = 0;
  170.     noredraw = 0;
  171.     hrefrequested = 0;
  172.     threadsetup = 0;
  173.     threadlaunched = 0;
  174.     threadsignaled = 0;
  175.     cancelled = 0;
  176.     list = newNode();
  177.     currentnode = NULL;
  178.     td = (ThreadData *) NPN_MemAlloc(sizeof(ThreadData));
  179.     td->list = NULL;
  180.     td->instance = NULL;
  181.     control = -1;
  182.     player = NULL;
  183.     autostart = 1;
  184.     showcontrols = 1;
  185.     showtracker = 1;
  186.     showbuttons = 1;
  187.     showfsbutton = 1;
  188.     redrawbuttons = 0;
  189.     mmsstream = 0;
  190.     js_state = JS_STATE_UNDEFINED;
  191.     nQtNext = 0;
  192.     for (i = 0; i < 256; i++)
  193. qtNext[i] = NULL;
  194.     widget = 0;
  195.     display = NULL;
  196.     window = 0;
  197.     player_window = 0;
  198.     controlwindow = 0;
  199.     panel_height = 0;
  200.     panel_drawn = 0;
  201.     mediaCompleteCallback = NULL;
  202.     mediaCompleteWithErrorCallback = NULL;
  203.     mouseClickCallback = NULL;
  204.     mouseDownCallback = NULL;
  205.     mouseUpCallback = NULL;
  206.     mouseEnterCallback = NULL;
  207.     mouseLeaveCallback = NULL;
  208.     onVisibleCallback = NULL;
  209.     onHiddenCallback = NULL;
  210.     onDestroyCallback = NULL;
  211.     mediaLength = 0.0;
  212.     mediaPercent = 0;
  213.     mediaTime = 0.0;
  214.     mediaPos = 0.0;
  215.     nomediacache = 0;
  216.     controlsvisible = 0;
  217.     fullscreen = 0;
  218.     showlogo = 1;
  219.     showtime = 1;
  220.     DPMSEnabled = 0;
  221.     black_background = 0;
  222.     nomouseinput = 1;
  223.     noconsolecontrols = 1;
  224.     cookies = 1;
  225.     starttime = 0;
  226.     nopauseonhide = 0;
  227.     targetplayer = 0;
  228.     hidestatus = 0;
  229.     enablecontextmenu = 1;
  230. #ifdef GTK_ENABLED
  231.     image = NULL;
  232.     progress_bar = NULL;
  233.     mediaprogress_bar = NULL;
  234.     status = NULL;
  235.     play_event_box = NULL;
  236.     pause_event_box = NULL;
  237.     stop_event_box = NULL;
  238.     ff_event_box = NULL;
  239.     rew_event_box = NULL;
  240.     fs_event_box = NULL;
  241.     src_event_box = NULL;
  242.     gtkwidget = NULL;
  243.     fixed_container = NULL;
  244.     drawing_area = NULL;
  245.     popup_menu = NULL;
  246.     conf_window = NULL;
  247.     file_selector = NULL;
  248. #ifdef GTK2_ENABLED
  249.     fs_window = NULL;
  250.     paused_wheninvisible = 0;
  251. #endif
  252. #endif
  253. #ifdef X_ENABLED
  254.     font = NULL;
  255.     logo = (Pixmap) NULL;
  256.     logomask = (Pixmap) NULL;
  257.     progress_left = (Pixmap) NULL;
  258.     progress_leftmask = (Pixmap) NULL;
  259.     progress_middle = (Pixmap) NULL;
  260.     progress_middlemask = (Pixmap) NULL;
  261.     progress_right = (Pixmap) NULL;
  262.     progress_rightmask = (Pixmap) NULL;
  263.     progress_fill = (Pixmap) NULL;
  264.     progress_fillmask = (Pixmap) NULL;
  265.     lastpercent = -1;
  266. #endif
  267.     // options
  268.     vo = NULL;
  269.     vop = NULL;
  270.     novop = 0;
  271.     noembed = 0;
  272.     ao = NULL;
  273.     af = NULL;
  274.     loop = -1;
  275.     rtsp_use_tcp = 0;
  276.     rtsp_use_http = 0;
  277.     keep_download = 0;
  278.     maintain_aspect = 1;
  279.     download_dir = strdup(getenv("HOME"));
  280.     cachesize = 512;
  281.     output_display = NULL;
  282.     osdlevel = 0;
  283.     qt_speed = SPEED_MED;
  284.     cache_percent = 25;
  285.     framedrop = 0;
  286.     autosync = 0;
  287.     mc = 0;
  288.     useragent = NULL;
  289.     enable_smil = 1;
  290.     enable_helix = 1;
  291.     enable_wmp = 1;
  292.     enable_qt = 1;
  293.     enable_rm = 1;
  294.     enable_gmp = 1;
  295.     enable_mpeg = 1;
  296.     enable_mp3 = 1;
  297.     enable_ogg = 1;
  298.     enable_midi = 0;
  299.     enable_pls = 1;
  300.     // JavaScript
  301.     paused = 0;
  302.     // thread setup
  303.     pthread_mutex_init(&playlist_mutex, NULL);
  304.     pthread_mutex_init(&playlist_cond_mutex, NULL);
  305.     pthread_mutex_init(&control_mutex, NULL);
  306.     pthread_mutex_init(&read_mutex, NULL);
  307.     pthread_attr_init(&thread_attr);
  308.     pthread_cond_init(&playlist_complete_cond, NULL);
  309.     LoadConfigFile(this);
  310. #ifdef HAVE_GETTEXT
  311. #ifdef X_ENABLED
  312.     setlocale(LC_ALL, "");
  313. #endif
  314.     textdomain("downloadplug-in");
  315.     bind_textdomain_codeset("downloadplug-in", "utf-8");
  316. #endif
  317. }
  318. nsPluginInstance::~nsPluginInstance()
  319. {
  320.     // mScriptablePeer may be also held by the browser
  321.     // so releasing it here does not guarantee that it is over
  322.     // we should take precaution in case it will be called later
  323.     // and zero its mPlugin member
  324. //    system("echo ~nsPluginInstance >>log");
  325.     if (DEBUG)
  326. printf("~nsPluginInstance calledn");
  327. #ifdef GTK_ENABLED
  328.     gdk_flush();
  329. #endif
  330.     instance_counter--;
  331.     mInstance = NULL;
  332.     mInitialized = FALSE;
  333.     if (mControlsScriptablePeer != NULL) {
  334. mControlsScriptablePeer->SetInstance(NULL);
  335. mControlsScriptablePeer->Release();
  336. NS_IF_RELEASE(mControlsScriptablePeer);
  337.     }
  338.     if (mScriptablePeer != NULL) {
  339. mScriptablePeer->InitControls(NULL);
  340. mScriptablePeer->SetInstance(NULL);
  341. NS_IF_RELEASE(mScriptablePeer);
  342.     }
  343. }
  344. NPBool nsPluginInstance::init(NPWindow * aWindow)
  345. {
  346. //    system("echo init>>log");
  347.     if (aWindow == NULL)
  348. return FALSE;
  349.     mInitialized = TRUE;
  350.     return TRUE;
  351. }
  352. void nsPluginInstance::shut()
  353. {
  354. //    system("echo shut>>log");
  355.     if (DEBUG)
  356. printf("shut calledn");
  357.     if (onDestroyCallback != NULL) {
  358. if (DEBUG)
  359.     printf("Destroy Callback = %sn", onDestroyCallback);
  360. NPN_GetURL(mInstance, onDestroyCallback, NULL);
  361.     }
  362.     shutdown();
  363. }
  364. void nsPluginInstance::shutdown()
  365. {
  366.     int i;
  367.     long flags;
  368. //    system("echo shutdown>>log");
  369.     if (DEBUG)
  370. printf("shutdown calledn");
  371.     if (threadsetup == 1 && threadsignaled == 0) {
  372. if (DEBUG)
  373.     printf
  374. ("Thread is setup but waiting for signal so we need to shut it downn");
  375. signalPlayerThread(this);
  376. threadsignaled = 1;
  377.     }
  378.     if (threadsetup == 1) {
  379. if (threadlaunched == 1) {
  380.     // switch to non blocking mode
  381.     if (player != NULL) {
  382. flags = fcntl(fileno(player), F_GETFL, 0);
  383. flags |= O_NONBLOCK;
  384. fcntl(fileno(player), F_SETFL, flags);
  385.     }
  386.     pthread_mutex_lock(&control_mutex);
  387.     if (paused == 1) {
  388. sendCommand(this, "pausen");
  389. paused = 0;
  390.     }
  391.     sendCommand(this, "quitn");
  392. #ifndef BSD
  393.     pthread_mutex_lock(&read_mutex);
  394. #endif
  395.     cancelled = 1;
  396. #ifndef BSD
  397.     pthread_mutex_unlock(&read_mutex);
  398. #endif
  399.     pthread_mutex_unlock(&control_mutex);
  400.     pthread_cancel(player_thread);
  401.     pthread_join(player_thread, NULL);
  402.     js_state = JS_STATE_UNDEFINED;
  403. }
  404.     }
  405. #ifdef GTK_ENABLED
  406.     while (g_idle_remove_by_data(this)) {
  407. if (DEBUG)
  408.     printf("Removing function from idle handlern");
  409.     }
  410. #endif
  411.     if (pid != 0) {
  412. killdownload(this);
  413.     }
  414.     if (DEBUG)
  415. printf("download deadn");
  416. #ifdef X_ENABLED
  417.     FreeUI((Display *) display, this);
  418. #endif
  419.     mInitialized = FALSE;
  420. #ifdef GTK_ENABLED
  421.     while (g_idle_remove_by_data(this)) {
  422. if (DEBUG)
  423.     printf("Removing function from idle handlern");
  424.     }
  425. #endif
  426. #ifdef GTK2_ENABLED
  427.     if (controlwindow == 0) {
  428. if (conf_window != NULL) {
  429.     if (GTK_IS_WIDGET(conf_window))
  430. gtk_widget_destroy(conf_window);
  431. }
  432. if (targetplayer != 0) {
  433.     if (GTK_IS_WIDGET(gtkwidget)) {
  434. g_signal_handler_disconnect(GTK_OBJECT(gtkwidget),
  435.     delete_signal_id);
  436. g_signal_handler_disconnect(GTK_OBJECT(gtkwidget),
  437.     visible_signal_id);
  438.     }
  439.     if (GTK_IS_WIDGET(button_window))
  440. gtk_widget_destroy(button_window);
  441. }
  442. if (GTK_IS_WIDGET(gtkwidget))
  443.     gtk_widget_destroy(gtkwidget);
  444.     }
  445. #endif
  446.     if (DEBUG)
  447. printf("Window Cleaned upn");
  448. #ifdef GTK1_ENABLED
  449.     if (controlwindow == 0) {
  450. if (targetplayer != 0)
  451.     gtk_signal_disconnect(GTK_OBJECT(gtkwidget), delete_signal_id);
  452. if (GTK_IS_WIDGET(gtkwidget))
  453.     gtk_widget_destroy(gtkwidget);
  454.     }
  455.     gdk_flush();
  456.     XSync(display, FALSE);
  457. #endif
  458. #ifdef GTK_ENABLED
  459.     image = NULL;
  460.     progress_bar = NULL;
  461.     mediaprogress_bar = NULL;
  462.     status = NULL;
  463.     play_event_box = NULL;
  464.     pause_event_box = NULL;
  465.     stop_event_box = NULL;
  466.     ff_event_box = NULL;
  467.     rew_event_box = NULL;
  468.     fs_event_box = NULL;
  469.     gtkwidget = NULL;
  470.     fixed_container = NULL;
  471.     drawing_area = NULL;
  472.     popup_menu = NULL;
  473. #ifdef GTK2_ENABLED
  474.     fs_window = NULL;
  475. #endif
  476.     gtkwidget = NULL;
  477. #endif
  478. #ifdef DPMSExtension
  479.     if (DPMSEnabled)
  480. DPMSReenable(this);
  481. #endif
  482.     if (mimetype != NULL) {
  483. free(mimetype);
  484. mimetype = NULL;
  485.     }
  486.     if (href != NULL) {
  487. free(href);
  488. href = NULL;
  489.     }
  490.     if (fname != NULL) {
  491. free(fname);
  492. fname = NULL;
  493.     }
  494.     if (url != NULL) {
  495. free(url);
  496. url = NULL;
  497.     }
  498.     if (baseurl != NULL) {
  499. NPN_MemFree(baseurl);
  500. baseurl = NULL;
  501.     }
  502.     if (hostname != NULL) {
  503. NPN_MemFree(hostname);
  504. hostname = NULL;
  505.     }
  506.     if (vo != NULL) {
  507. free(vo);
  508. vo = NULL;
  509.     }
  510.     if (vop != NULL) {
  511. free(vop);
  512. vop = NULL;
  513.     }
  514.     if (ao != NULL) {
  515. free(ao);
  516. ao = NULL;
  517.     }
  518.     if (useragent != NULL) {
  519. free(useragent);
  520. useragent = NULL;
  521.     }
  522.     if (output_display != NULL) {
  523. free(output_display);
  524. output_display = NULL;
  525.     }
  526.     nQtNext = 0;
  527.     for (i = 0; i < 256; i++) {
  528. if (qtNext[i] != NULL)
  529.     free(qtNext[i]);
  530. qtNext[i] = NULL;
  531.     }
  532.     if (download_dir != NULL) {
  533. free(download_dir);
  534. download_dir = NULL;
  535.     }
  536.     if (td->list != NULL) {
  537. pthread_mutex_lock(&playlist_mutex);
  538. deleteList(td->list);
  539. td->list = NULL;
  540. list = NULL;
  541. pthread_mutex_unlock(&playlist_mutex);
  542.     }
  543.     if (td != NULL) {
  544. td->instance = NULL;
  545. NPN_MemFree(td);
  546. td = NULL;
  547.     }
  548.     if (lastmessage != NULL) {
  549. NPN_MemFree(lastmessage);
  550. lastmessage = NULL;
  551.     }
  552.     if (mediaCompleteCallback != NULL) {
  553. NPN_MemFree(mediaCompleteCallback);
  554. mediaCompleteCallback = NULL;
  555.     }
  556.     if (mouseClickCallback != NULL) {
  557. NPN_MemFree(mouseClickCallback);
  558. mouseClickCallback = NULL;
  559.     }
  560.     if (onVisibleCallback != NULL) {
  561. NPN_MemFree(onVisibleCallback);
  562. onVisibleCallback = NULL;
  563.     }
  564.     if (onHiddenCallback != NULL) {
  565. NPN_MemFree(onHiddenCallback);
  566. onHiddenCallback = NULL;
  567.     }
  568.     if (DEBUG)
  569. printf("memory freen");
  570.     autostart = 1;
  571.     showcontrols = 1;
  572.     showtracker = 1;
  573.     showbuttons = 1;
  574.     showfsbutton = 1;
  575.     panel_drawn = 0;
  576.     mmsstream = 0;
  577.     cancelled = 0;
  578.     js_state = JS_STATE_UNDEFINED;
  579.     if (DEBUG > 1)
  580. printf("destorying pthread attrs, mutexes and condsn");
  581.     pthread_attr_destroy(&thread_attr);
  582.     if (DEBUG > 1)
  583. printf("thread_attr destroyedn");
  584.     pthread_mutex_destroy(&playlist_mutex);
  585.     if (DEBUG > 1)
  586. printf("playlist_mutex destroyedn");
  587.     pthread_mutex_destroy(&playlist_cond_mutex);
  588.     if (DEBUG > 1)
  589. printf("playlist_cond_mutex destroyedn");
  590.     pthread_mutex_destroy(&control_mutex);
  591.     if (DEBUG > 1)
  592. printf("control_mutex destroyedn");
  593.     pthread_mutex_destroy(&read_mutex);
  594.     if (DEBUG > 1)
  595. printf("read_mutex destroyedn");
  596.     pthread_cond_destroy(&playlist_complete_cond);
  597.     if (DEBUG > 1)
  598. printf("playlist_complete_cond destroyedn");
  599. }
  600. NPBool nsPluginInstance::isInitialized()
  601. {
  602. //    system("echo isInitialized>>log");
  603.     return mInitialized;
  604. }
  605. NPError nsPluginInstance::SetWindow(NPWindow * aWindow)
  606. {
  607.     NPSetWindowCallbackStruct *ws;
  608.     GC black_gc;
  609.     XGCValues values;
  610.     char message[100];
  611. #ifdef GTK_ENABLED
  612.     int multiplier, height, width;
  613.     GdkColormap *colormap;
  614.     GdkColor black, white;
  615. #endif
  616. #ifdef GTK1_ENABLED
  617. //    GtkStyle *s;
  618. #endif
  619. return NPERR_NO_ERROR;
  620.     if (DEBUG >= 2)
  621. printf("*****SetWindow Callback Enter************n");
  622. //    system("echo SetWindow>>/root/log");
  623.     if ((aWindow == NULL) || (aWindow->window == NULL)) {
  624. return NPERR_NO_ERROR;
  625.     }
  626.     if ((Window) window != (Window) aWindow->window) {
  627. if (DEBUG)
  628.     printf("New window! old: 0x%li    new 0x%lin",
  629.    (unsigned long int) window,
  630.    (unsigned long int) aWindow->window);
  631.     }
  632.     if (controlwindow == 1)
  633. return NPERR_NO_ERROR;
  634.     if (toolkitok != 0) { // something is wrong
  635. ws = (NPSetWindowCallbackStruct *) aWindow->ws_info;
  636. values.foreground =
  637.     BlackPixel(ws->display, DefaultScreen(ws->display));
  638. black_gc =
  639.     XCreateGC(ws->display, (Window) aWindow->window, GCForeground,
  640.       &values);
  641. snprintf(message, 100,
  642.  "Toolkit mismatch mozilla(GTK%i), plug-in(GTK%i)",
  643.  moz_toolkit, plug_toolkit);
  644. XDrawString(ws->display, (Window) aWindow->window, black_gc, 10,
  645.     10, message, strlen(message));
  646. XFreeGC(ws->display, black_gc);
  647. return NPERR_NO_ERROR;
  648.     }
  649.     if (state < STATE_WINDOWSET) {
  650. if (DEBUG) {
  651.     printf("Size: %d %d %pn", aWindow->x, aWindow->y,
  652.    aWindow->window);
  653.     printf("Size: %dx%d n", aWindow->width, aWindow->height);
  654. }
  655. ws = (NPSetWindowCallbackStruct *) aWindow->ws_info;
  656. display = ws->display;
  657. #ifdef X_ENABLED
  658. widget =
  659.     XtWindowToWidget((Display *) ws->display,
  660.      (Window) aWindow->window);
  661. XtAddEventHandler(widget, ExposureMask, FALSE,
  662.   (XtEventHandler) RedrawCB, this);
  663. #endif
  664. #ifdef DPMSExtension
  665. DPMSEnabled = DPMSIsEnabled(this);
  666. #endif
  667. window = (Window) aWindow->window;
  668. window_width = aWindow->width;
  669. window_height = aWindow->height;
  670. state = STATE_WINDOWSET;
  671. #ifdef GTK_ENABLED
  672. gtkplug = gtk_plug_new(window);
  673. if (targetplayer == 0) {
  674.     gtkwidget = gtk_window_new(GTK_WINDOW_POPUP);
  675. } else {
  676.     gtkwidget = gtk_window_new(GTK_WINDOW_TOPLEVEL);
  677.     button_window = gtk_window_new(GTK_WINDOW_POPUP);
  678. #ifdef GTK2_ENABLED
  679.     delete_signal_id =
  680. g_signal_connect(GTK_OBJECT(gtkwidget), "delete_event",
  681.  G_CALLBACK(target_hide_callback), this);
  682. #endif
  683. #ifdef GTK1_ENABLED
  684.     delete_signal_id = gtk_signal_connect(GTK_OBJECT(gtkwidget),
  685.   "delete_event",
  686.   GTK_SIGNAL_FUNC
  687.   (target_hide_callback),
  688.   this);
  689. #endif
  690.     gtk_window_set_title(GTK_WINDOW(gtkwidget),
  691.  "downloadplug-in player");
  692. }
  693. gtk_widget_realize(gtkwidget);
  694. gdk_flush();
  695. gtk_widget_add_events(gtkwidget, GDK_BUTTON_PRESS_MASK);
  696. gtk_widget_add_events(gtkwidget, GDK_BUTTON_RELEASE_MASK);
  697. gtk_widget_add_events(gtkwidget, GDK_ENTER_NOTIFY_MASK);
  698. gtk_widget_add_events(gtkwidget, GDK_LEAVE_NOTIFY_MASK);
  699. gtk_widget_add_events(gtkwidget, GDK_KEY_PRESS_MASK);
  700. gtk_widget_add_events(gtkwidget, GDK_VISIBILITY_NOTIFY_MASK);
  701. if (targetplayer == 1) {
  702.     window_width = 400;
  703.     window_height = 200;
  704.     movie_width = 400;
  705.     movie_height = 200;
  706. }
  707. if (DEBUG > 1)
  708.     printf("setting window sizen");
  709. #ifdef GTK2_ENABLED
  710. gtk_widget_set_size_request(gtkwidget, window_width,
  711.     window_height);
  712. logo = gdk_pixbuf_new_from_inline(-1, gtk_logo, FALSE, NULL);
  713. image = gtk_image_new_from_pixbuf(logo);
  714. #endif
  715. #ifdef GTK1_ENABLED
  716. gtk_widget_set_usize(gtkwidget, window_width, window_height);
  717. #endif
  718. popup_menu = GTK_MENU(gtk_menu_new());
  719. menuitem_play =
  720.     GTK_MENU_ITEM(gtk_menu_item_new_with_label(_("Play")));
  721. gtk_menu_append(popup_menu, GTK_WIDGET(menuitem_play));
  722. gtk_widget_show(GTK_WIDGET(menuitem_play));
  723. menuitem_pause =
  724.     GTK_MENU_ITEM(gtk_menu_item_new_with_label(_("Pause")));
  725. gtk_menu_append(popup_menu, GTK_WIDGET(menuitem_pause));
  726. gtk_widget_show(GTK_WIDGET(menuitem_pause));
  727. menuitem_stop =
  728.     GTK_MENU_ITEM(gtk_menu_item_new_with_label(_("Stop")));
  729. gtk_menu_append(popup_menu, GTK_WIDGET(menuitem_stop));
  730. gtk_widget_show(GTK_WIDGET(menuitem_stop));
  731. #ifdef GTK2_ENABLED
  732. menuitem_sep1 = GTK_MENU_ITEM(gtk_separator_menu_item_new());
  733. #endif
  734. #ifdef GTK1_ENABLED
  735. menuitem_sep1 = GTK_MENU_ITEM(gtk_menu_item_new());
  736. #endif
  737. gtk_menu_append(popup_menu, GTK_WIDGET(menuitem_sep1));
  738. gtk_widget_show(GTK_WIDGET(menuitem_sep1));
  739. menuitem_showcontrols =
  740.     GTK_MENU_ITEM(gtk_check_menu_item_new_with_label
  741.   (_("Show Controls")));
  742. gtk_menu_append(popup_menu, GTK_WIDGET(menuitem_showcontrols));
  743. gtk_widget_show(GTK_WIDGET(menuitem_showcontrols));
  744. if (showcontrols)
  745.     gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM
  746.    (menuitem_showcontrols), TRUE);
  747. menuitem_fullscreen =
  748.     GTK_MENU_ITEM(gtk_check_menu_item_new_with_label
  749.   (_("Full Screen")));
  750. gtk_menu_append(popup_menu, GTK_WIDGET(menuitem_fullscreen));
  751. gtk_widget_show(GTK_WIDGET(menuitem_fullscreen));
  752. #ifdef GTK2_ENABLED
  753. menuitem_sep2 = GTK_MENU_ITEM(gtk_separator_menu_item_new());
  754. #endif
  755. #ifdef GTK1_ENABLED
  756. menuitem_sep2 = GTK_MENU_ITEM(gtk_menu_item_new());
  757. #endif
  758. gtk_menu_append(popup_menu, GTK_WIDGET(menuitem_sep2));
  759. gtk_widget_show(GTK_WIDGET(menuitem_sep2));
  760. menuitem_copy =
  761.     GTK_MENU_ITEM(gtk_menu_item_new_with_label(_("Copy URL")));
  762. gtk_menu_append(popup_menu, GTK_WIDGET(menuitem_copy));
  763. gtk_widget_show(GTK_WIDGET(menuitem_copy));
  764. menuitem_save =
  765.     GTK_MENU_ITEM(gtk_menu_item_new_with_label(_("Save")));
  766. gtk_menu_append(popup_menu, GTK_WIDGET(menuitem_save));
  767. gtk_widget_show(GTK_WIDGET(menuitem_save));
  768. gtk_widget_set_sensitive(GTK_WIDGET(menuitem_save), FALSE);
  769. #ifdef GTK2_ENABLED
  770. menuitem_sep3 = GTK_MENU_ITEM(gtk_separator_menu_item_new());
  771. gtk_menu_append(popup_menu, GTK_WIDGET(menuitem_sep3));
  772. gtk_widget_show(GTK_WIDGET(menuitem_sep3));
  773. menuitem_config =
  774.     GTK_MENU_ITEM(gtk_menu_item_new_with_label(_("Configure")));
  775. gtk_menu_append(popup_menu, GTK_WIDGET(menuitem_config));
  776. gtk_widget_show(GTK_WIDGET(menuitem_config));
  777. #endif
  778. #ifdef GTK2_ENABLED
  779.         if (enablecontextmenu != 0) {
  780.     g_signal_connect_swapped(G_OBJECT(gtkwidget),
  781.      "button_press_event",
  782.      G_CALLBACK(popup_handler),
  783.      GTK_OBJECT(popup_menu));
  784. }
  785. g_signal_connect(G_OBJECT(gtkwidget),
  786.  "key_press_event",
  787.  G_CALLBACK(keyboard_callback), this);
  788. g_signal_connect(GTK_OBJECT(menuitem_play), "activate",
  789.  G_CALLBACK(menuitem_play_callback), this);
  790. g_signal_connect(GTK_OBJECT(menuitem_pause), "activate",
  791.  G_CALLBACK(menuitem_pause_callback), this);
  792. g_signal_connect(GTK_OBJECT(menuitem_stop), "activate",
  793.  G_CALLBACK(menuitem_stop_callback), this);
  794. g_signal_connect(GTK_OBJECT(menuitem_showcontrols), "toggled",
  795.  G_CALLBACK(menuitem_showcontrols_callback), this);
  796. g_signal_connect(GTK_OBJECT(menuitem_fullscreen), "toggled",
  797.  G_CALLBACK(menuitem_fullscreen_callback), this);
  798. g_signal_connect(GTK_OBJECT(menuitem_save), "activate",
  799.  G_CALLBACK(menuitem_save_callback), this);
  800. g_signal_connect(GTK_OBJECT(menuitem_copy), "activate",
  801.  G_CALLBACK(menuitem_copy_callback), this);
  802. g_signal_connect(GTK_OBJECT(menuitem_config), "activate",
  803.  G_CALLBACK(menuitem_config_callback), this);
  804. g_signal_connect(G_OBJECT(gtkwidget), "button_press_event",
  805.  G_CALLBACK(mouse_callback), this);
  806. g_signal_connect(G_OBJECT(gtkwidget), "button_release_event",
  807.  G_CALLBACK(mouse_callback), this);
  808. g_signal_connect(G_OBJECT(gtkwidget), "enter_notify_event",
  809.  G_CALLBACK(mousenotify_callback), this);
  810. g_signal_connect(G_OBJECT(gtkwidget), "leave_notify_event",
  811.  G_CALLBACK(mousenotify_callback), this);
  812. #endif
  813. #ifdef GTK1_ENABLED
  814. gtk_signal_connect_object(GTK_OBJECT(gtkwidget),
  815.   "button_press_event",
  816.   GTK_SIGNAL_FUNC(popup_handler),
  817.   GTK_OBJECT(popup_menu));
  818. gtk_signal_connect(GTK_OBJECT(gtkwidget),
  819.    "key_press_event",
  820.    GTK_SIGNAL_FUNC(keyboard_callback), this);
  821. gtk_signal_connect(GTK_OBJECT(menuitem_play), "activate",
  822.    GTK_SIGNAL_FUNC(menuitem_play_callback), this);
  823. gtk_signal_connect(GTK_OBJECT(menuitem_pause), "activate",
  824.    GTK_SIGNAL_FUNC(menuitem_pause_callback), this);
  825. gtk_signal_connect(GTK_OBJECT(menuitem_stop), "activate",
  826.    GTK_SIGNAL_FUNC(menuitem_stop_callback), this);
  827. gtk_signal_connect(GTK_OBJECT(menuitem_showcontrols), "toggled",
  828.    GTK_SIGNAL_FUNC(menuitem_showcontrols_callback),
  829.    this);
  830. gtk_signal_connect(GTK_OBJECT(menuitem_fullscreen), "toggled",
  831.    GTK_SIGNAL_FUNC(menuitem_fullscreen_callback),
  832.    this);
  833. gtk_signal_connect(GTK_OBJECT(menuitem_save), "activate",
  834.    GTK_SIGNAL_FUNC(menuitem_save_callback), this);
  835. gtk_signal_connect(GTK_OBJECT(menuitem_copy), "activate",
  836.    GTK_SIGNAL_FUNC(menuitem_copy_callback), this);
  837. gtk_signal_connect(GTK_OBJECT(gtkwidget), "button_press_event",
  838.    GTK_SIGNAL_FUNC(mouse_callback), this);
  839. #endif
  840. if (DEBUG > 1)
  841.     printf("menus builtn");
  842. fixed_event_box = gtk_event_box_new();
  843. fixed_container = gtk_fixed_new();
  844. #ifdef GTK2_ENABLED
  845. gtk_widget_set_size_request(GTK_WIDGET(fixed_container),
  846.     window_width, window_height);
  847. gtk_widget_set_size_request(GTK_WIDGET(fixed_event_box),
  848.     window_width, window_height);
  849. #endif
  850. #ifdef GTK1_ENABLED
  851. gtk_widget_set_usize(GTK_WIDGET(fixed_container), window_width,
  852.      window_height);
  853. gtk_widget_set_usize(GTK_WIDGET(fixed_event_box), window_width,
  854.      window_height);
  855. #endif
  856. gtk_container_add(GTK_CONTAINER(fixed_event_box), fixed_container);
  857. status = GTK_LABEL(gtk_label_new(_("Initializing")));
  858. progress_bar = GTK_PROGRESS_BAR(gtk_progress_bar_new());
  859. if (window_height > 125) {
  860. #ifdef GTK2_ENABLED
  861.     gtk_fixed_put(GTK_FIXED(fixed_container), image, 10, 10);
  862.     gtk_widget_set_size_request(GTK_WIDGET(progress_bar),
  863. window_width - 20, 15);
  864.     gtk_widget_set_size_request(GTK_WIDGET(status),
  865. window_width - 20,
  866. window_height - 125);
  867. #endif
  868. #ifdef GTK1_ENABLED
  869.     if (DEBUG > 1)
  870. printf("> 125 setupn");
  871.     gtk_widget_show(gtkwidget);
  872.     logo = gdk_pixmap_create_from_xpm_d(gtkwidget->window,
  873. NULL, NULL, logo_xpm);
  874.     image = gtk_pixmap_new(logo, NULL);
  875.     gtk_fixed_put(GTK_FIXED(fixed_container), GTK_WIDGET(image),
  876.   10, 10);
  877.     gtk_widget_set_usize(GTK_WIDGET(progress_bar),
  878.  aWindow->width - 20, 15);
  879.     gtk_widget_set_usize(GTK_WIDGET(status),
  880.  aWindow->width - 20,
  881.  aWindow->height - 125);
  882. #endif
  883.     gtk_fixed_put(GTK_FIXED(fixed_container),
  884.   GTK_WIDGET(progress_bar), 10,
  885.   window_height - 50);
  886.     if (showlogo)
  887. gtk_widget_show(image);
  888.     if (!hidestatus)
  889. gtk_widget_show(GTK_WIDGET(progress_bar));
  890.     gtk_fixed_put(GTK_FIXED(fixed_container), GTK_WIDGET(status),
  891.   10, 60);
  892. } else {
  893.     if (window_height < 20) {
  894. if (window_width < 126) {
  895.     gtk_fixed_put(GTK_FIXED(fixed_container),
  896.   GTK_WIDGET(status), 65, 0);
  897. } else {
  898.     gtk_fixed_put(GTK_FIXED(fixed_container),
  899.   GTK_WIDGET(status), 105, 0);
  900. }
  901.     } else {
  902. gtk_fixed_put(GTK_FIXED(fixed_container),
  903.       GTK_WIDGET(status), 10, 10);
  904.     }
  905.     gtk_fixed_put(GTK_FIXED(fixed_container),
  906.   GTK_WIDGET(progress_bar), 10,
  907.   window_height - 20);
  908.     if (!hidestatus)
  909. gtk_widget_show(GTK_WIDGET(progress_bar));
  910. #ifdef GTK2_ENABLED
  911.     gtk_widget_set_size_request(GTK_WIDGET(progress_bar),
  912. window_width - 20, 15);
  913.     gtk_widget_set_size_request(GTK_WIDGET(status),
  914. window_width - 20,
  915. window_height - 25);
  916. #endif
  917. #ifdef GTK1_ENABLED
  918.     if (DEBUG > 1)
  919. printf("< 125 setupn");
  920.     gtk_widget_set_usize(GTK_WIDGET(progress_bar),
  921.  aWindow->width - 20, 15);
  922.     gtk_widget_set_usize(GTK_WIDGET(status),
  923.  aWindow->width - 20,
  924.  aWindow->height - 25);
  925. #endif
  926. }
  927. gtk_misc_set_alignment(GTK_MISC(status), 0, 0);
  928. gtk_label_set_line_wrap(status, TRUE);
  929. drawing_area = gtk_socket_new();
  930. if (mode == NP_EMBED) {
  931.     gtk_fixed_put(GTK_FIXED(fixed_container), drawing_area, 0, 0);
  932. } else {
  933.     gtk_fixed_put(GTK_FIXED(fixed_container),
  934.   drawing_area, 10, 100);
  935. }
  936. gtk_widget_show(drawing_area);
  937. gtk_container_add(GTK_CONTAINER(gtkwidget), fixed_event_box);
  938. if (!hidestatus)
  939.     gtk_widget_show(GTK_WIDGET(status));
  940. gtk_widget_show(fixed_container);
  941. gtk_widget_show(fixed_event_box);
  942. if (targetplayer == 0)
  943.     gtk_widget_show(gtkwidget);
  944. if (black_background != 0) {
  945. #ifdef GTK_ENABLED
  946.     colormap = gdk_window_get_colormap(gtkwidget->window);
  947.     gdk_color_parse("black", &black);
  948.     gdk_color_parse("white", &white);
  949.     gdk_colormap_alloc_color(colormap, &black, FALSE, TRUE);
  950.     gdk_colormap_alloc_color(colormap, &white, FALSE, TRUE);
  951. #endif
  952. #ifdef GTK2_ENABLED
  953.     gtk_widget_modify_bg(gtkwidget, GTK_STATE_NORMAL, &black);
  954.     gtk_widget_modify_bg(fixed_event_box, GTK_STATE_NORMAL,
  955.  &black);
  956.     gtk_widget_modify_fg(GTK_WIDGET(status), GTK_STATE_NORMAL,
  957.  &white);
  958. #endif
  959. #ifdef GTK_ENABLED
  960.     gdk_window_set_background(gtkwidget->window, &black);
  961.     gdk_window_clear(gtkwidget->window);
  962. #endif
  963. }
  964. gdk_flush();
  965. InitPixbufs(this);
  966. #ifdef GTK_ENABLED
  967. if (targetplayer == 0) {
  968.     XReparentWindow(GDK_WINDOW_XDISPLAY(gtkwidget->window),
  969.     GDK_WINDOW_XWINDOW(gtkwidget->window), window,
  970.     0, 0);
  971.     gtk_widget_map(gtkwidget);
  972. } else {
  973.     gtk_widget_show(button_window);
  974.     XReparentWindow(GDK_WINDOW_XDISPLAY(button_window->window),
  975.     GDK_WINDOW_XWINDOW(button_window->window),
  976.     window, 0, 0);
  977.     gtk_widget_map(button_window);
  978. }
  979. #endif
  980. if (panel_drawn == 0 && autostart == 0 && nomediacache == 1) {
  981.     if (showcontrols) {
  982. panel_height = window_height;
  983. #ifdef GTK_ENABLED
  984. g_idle_add(gtkgui_draw, this);
  985. #endif
  986.     }
  987. }
  988. #endif
  989.     } else {
  990. if (setwindow == 0) {
  991.     if (DEBUG)
  992. printf("back in SetWindown");
  993.     if (DEBUG)
  994. printf("New Size: %ix%in", aWindow->width,
  995.        aWindow->height);
  996.     setwindow++;
  997.     if (DEBUG > 1)
  998. printf("Current state is %in", state);
  999.     if (state != STATE_GETTING_PLAYLIST) {
  1000. state = STATE_GETTING_PLAYLIST;
  1001. if (url != NULL) {
  1002.     // hard code 0 here by doing this it actually makes nomediacache work properly
  1003.     // http src url's are automatically requested, so if we request an http here too, we get it twice
  1004.     if (isMms(url, 0)) {
  1005. snprintf(list->url, 1024, "%s", url);
  1006. state = STATE_STARTED_PLAYER;
  1007. list->mmsstream = 1;
  1008. if (threadsetup == 0 && controlwindow == 0)
  1009.     SetupPlayer(this, NULL);
  1010.     }
  1011. }
  1012. if (fname != NULL) {
  1013.     if (isMms(fname, nomediacache)) {
  1014. snprintf(list->url, 1024, "%s", fname);
  1015. state = STATE_STARTED_PLAYER;
  1016. list->mmsstream = 1;
  1017. if (threadsetup == 0 && controlwindow == 0)
  1018.     SetupPlayer(this, NULL);
  1019.     } else {
  1020. if (autostart) {
  1021.     Play();
  1022. } else {
  1023.     pthread_mutex_lock(&control_mutex);
  1024.     js_state = JS_STATE_READY;
  1025.     pthread_mutex_unlock(&control_mutex);
  1026. }
  1027.     }
  1028. }
  1029. if ((href != NULL) && (url == NULL) && (fname == NULL)) {
  1030.     if (isMms(href, nomediacache)) {
  1031. snprintf(list->url, 1024, "%s", href);
  1032. state = STATE_STARTED_PLAYER;
  1033. list->mmsstream = 1;
  1034. if (threadsetup == 0 && controlwindow == 0)
  1035.     SetupPlayer(this, NULL);
  1036.     } else {
  1037. if (autostart) {
  1038.     Play();
  1039. } else {
  1040.     pthread_mutex_lock(&control_mutex);
  1041.     js_state = JS_STATE_READY;
  1042.     pthread_mutex_unlock(&control_mutex);
  1043. }
  1044.     }
  1045. }
  1046.     }
  1047. }
  1048. if (mode == NP_EMBED) {
  1049.     embed_width = aWindow->width;
  1050.     embed_height = aWindow->height;
  1051. } else {
  1052.     window_width = aWindow->width;
  1053.     window_height = aWindow->height;
  1054. }
  1055.     }
  1056.     if (DEBUG)
  1057. printf("resizing widgets to %i x %i n", aWindow->width,
  1058.        aWindow->height);
  1059. #ifdef GTK_ENABLED
  1060.     if ((status != NULL) && (targetplayer == 0)) {
  1061. window_height = aWindow->height;
  1062. window_width = aWindow->width;
  1063. if (!hidestatus)
  1064.     gtk_widget_show(GTK_WIDGET(status));
  1065. #ifdef GTK2_ENABLED
  1066. gtk_widget_set_size_request(GTK_WIDGET(status),
  1067.     window_width - 20, window_height - 25);
  1068. gtk_widget_set_size_request(GTK_WIDGET(gtkwidget),
  1069.     window_width, window_height);
  1070. #endif
  1071. #ifdef GTK1_ENABLED
  1072. gtk_widget_set_usize(GTK_WIDGET(status),
  1073.      window_width - 20, window_height - 25);
  1074. gtk_widget_set_usize(GTK_WIDGET(gtkwidget),
  1075.      window_width, window_height);
  1076. #endif
  1077. if (panel_drawn == 1) {
  1078.     height = 16;
  1079.     width = 21;
  1080.     multiplier = 0;
  1081.     if (mmsstream == 0) {
  1082. gtk_fixed_move(GTK_FIXED(fixed_container),
  1083.        GTK_WIDGET(rew_event_box),
  1084.        width * multiplier++,
  1085.        window_height - height);
  1086.     }
  1087.     gtk_fixed_move(GTK_FIXED(fixed_container),
  1088.    GTK_WIDGET(play_event_box),
  1089.    width * multiplier++, window_height - height);
  1090.     gtk_fixed_move(GTK_FIXED(fixed_container),
  1091.    GTK_WIDGET(pause_event_box),
  1092.    width * multiplier++, window_height - height);
  1093.     gtk_fixed_move(GTK_FIXED(fixed_container),
  1094.    GTK_WIDGET(stop_event_box),
  1095.    width * multiplier++, window_height - height);
  1096.     if (mmsstream == 0) {
  1097. gtk_fixed_move(GTK_FIXED(fixed_container),
  1098.        GTK_WIDGET(ff_event_box),
  1099.        width * multiplier++,
  1100.        window_height - height);
  1101.     }
  1102.     if (GTK_IS_WIDGET(mediaprogress_bar)) {
  1103. gtk_fixed_move(GTK_FIXED(fixed_container),
  1104.        GTK_WIDGET(mediaprogress_bar),
  1105.        (width * multiplier + 10),
  1106.        window_height - height + 2);
  1107. gtk_widget_set_usize(GTK_WIDGET(mediaprogress_bar),
  1108.      window_width -
  1109.      (width * (multiplier + 1) + 20),
  1110.      height - 4);
  1111.     }
  1112.     gtk_fixed_move(GTK_FIXED(fixed_container),
  1113.    GTK_WIDGET(fs_event_box),
  1114.    (window_width - width), window_height - height);
  1115. }
  1116. if (progress_bar != NULL) {
  1117.     gtk_fixed_move(GTK_FIXED(fixed_container),
  1118.    GTK_WIDGET(progress_bar),
  1119.    10, window_height - 50);
  1120.     gtk_widget_set_usize(GTK_WIDGET(progress_bar),
  1121.  window_width - 20, 15);
  1122. }
  1123.     }
  1124.     if (gtkwidget == NULL)
  1125. return NPERR_NO_ERROR;
  1126.     if (targetplayer == 0)
  1127. gtk_widget_show(gtkwidget);
  1128.     if (DEBUG > 1)
  1129. printf("resize is completen");
  1130.     if (panel_drawn == 0 && autostart == 0 && nomediacache == 1) {
  1131. if (showcontrols) {
  1132.     panel_height = window_height;
  1133. #ifdef GTK_ENABLED
  1134.     g_idle_add(gtkgui_draw, this);
  1135. #endif
  1136. }
  1137.     }
  1138. #endif
  1139.     if (DEBUG >= 2) {
  1140. printf("***********SetWindow Callback Exit**************n");
  1141.     }
  1142.     return NPERR_NO_ERROR;
  1143. }
  1144. NPError nsPluginInstance::NewStream(NPMIMEType type, NPStream * stream,
  1145.     NPBool seekable, uint16 * stype)
  1146. {
  1147. // system("echo NewStream>>log");
  1148.     if (DEBUG >= 2)
  1149. printf("**********NewStream Callback %s ****************n",
  1150.        stream->url);
  1151.     if (baseurl == NULL)
  1152. baseurl = getURLBase((char *) stream->url);
  1153.     if (hostname == NULL)
  1154. hostname = getURLHostname((char *) stream->url);
  1155.     if (mode == NP_FULL) {
  1156. url = strdup(stream->url);
  1157.     }
  1158.     if ((threadsetup == 0) && (controlwindow == 0)) {
  1159. state = STATE_GETTING_PLAYLIST;
  1160. SetupPlayer(this, NULL);
  1161.     }
  1162.     *stype = NP_NORMAL;
  1163.     if (DEBUG >= 2)
  1164. printf("*********Exiting NewStream Callback*****************n");
  1165.     return NPERR_NO_ERROR;
  1166. }
  1167. NPError nsPluginInstance::DestroyStream(NPStream * stream, NPError reason)
  1168. {
  1169.     int playable, all_retrieved, all_above_cache;
  1170.     Node *n;
  1171.     char *tmp;
  1172.     
  1173. //    system("echo DestroyStream>>log");
  1174.     if (DEBUG >= 2)
  1175. printf("***********NPP_DestroyStream called %in URL: %sn",
  1176.        reason, stream->url);
  1177.     if (reason == NPRES_DONE) {
  1178. playable = 0;
  1179. if (strlen(stream->url) >= 1023) {
  1180.     return NPERR_NO_ERROR;
  1181. }
  1182. pthread_mutex_lock(&playlist_mutex);
  1183. n = td->list;
  1184. while (n != NULL) {
  1185.     if (URLcmp(n->url, stream->url) == 0) {
  1186. if (DEBUG)
  1187.     printf("Destroy stream found a URL matchn%sn%sn",
  1188.    n->url, stream->url);
  1189. break;
  1190.     } else {
  1191. if (strstr(stream->url, n->url) != NULL) {
  1192.     break;
  1193. }
  1194.     }
  1195.     n = n->next;
  1196. }
  1197. if (n != NULL) {
  1198.     n->retrieved = 1;
  1199. #ifdef GTK_ENABLED
  1200.     g_idle_add(gtkgui_save_enable, this);
  1201. #endif
  1202.     if (n->localcache != NULL) {
  1203. if (fclose(n->localcache) != 0) {
  1204.     if (DEBUG)
  1205. printf("fclose had an error %i : %sn", errno,
  1206.        strerror(errno));
  1207. };
  1208. n->localcache = NULL;
  1209.     }
  1210.     if (controlwindow == 1) {
  1211. if (n->fname != NULL)
  1212.     remove(n->fname);
  1213.     }
  1214.     if (DEBUG)
  1215. printf
  1216.     ("checking to see if we need to make a buttonnn->url=%snurl=%snhref=%sn",
  1217.      n->url, url, (href == NULL) ? "(NULL)" : href);
  1218.     if (n->url != NULL && url != NULL) {
  1219. if ((strncmp(n->url, url, 1024) == 0) && href != NULL) {
  1220.     if (srcToButton(n->fname, this)) {
  1221. n->play = 0;
  1222. pthread_mutex_unlock(&playlist_mutex);
  1223. return NPERR_NO_ERROR;
  1224.     } else {
  1225. n = newNode();
  1226. snprintf(n->url, 1024, "%s", href);
  1227. addToEnd(td->list, n);
  1228. pthread_mutex_unlock(&playlist_mutex);
  1229. NPN_GetURL(mInstance, href, NULL);
  1230. return NPERR_NO_ERROR;
  1231.     }
  1232. } else if (strstr(n->url, url) && href != NULL) {
  1233.     // we are in this block because the url is a relative url and so
  1234.     // it is a subset of the fully qualified n->url
  1235.     if (srcToButton(n->fname, this)) {
  1236. n->play = 0;
  1237. pthread_mutex_unlock(&playlist_mutex);
  1238. return NPERR_NO_ERROR;
  1239.     } else {
  1240. n = newNode();
  1241. snprintf(n->url, 1024, "%s", href);
  1242. addToEnd(td->list, n);
  1243. pthread_mutex_unlock(&playlist_mutex);
  1244. NPN_GetURL(mInstance, href, NULL);
  1245. return NPERR_NO_ERROR;
  1246.     }
  1247. }
  1248.     }
  1249.     if (!isMms(n->url, nomediacache)) {
  1250. if (DEBUG)
  1251.     printf("calling buildPlaylist with filename %sn",
  1252.    n->fname);
  1253. buildPlaylist(this, n->fname, n);
  1254. if (mode == NP_FULL || noembed == 1) {
  1255. #ifdef X_ENABLED
  1256.     DrawUI(widget, this, _("Download Complete"), 0, 99);
  1257. #endif
  1258. #ifdef GTK_ENABLED
  1259.     if (status != NULL) {
  1260. gtk_label_set_text(status, _("Download Complete"));
  1261.     }
  1262.     g_idle_add(gtkgui_save_enable, this);
  1263.     if (progress_bar != NULL) {
  1264. gtk_progress_bar_update(progress_bar, 1.0);
  1265. if (n->next == NULL) {
  1266.     gtk_widget_hide(GTK_WIDGET(progress_bar));
  1267. } else {
  1268.     if (movie_width == 0 && movie_height == 0)
  1269. if (!hidestatus)
  1270.     gtk_widget_show(GTK_WIDGET
  1271.     (progress_bar));
  1272. }
  1273.     }
  1274. #endif
  1275. }
  1276. if (DEBUG > 1)
  1277.     printf("buildPlaylist is completen");
  1278. if (strncasecmp(mimetype, "application/sdp", 15) == 0) {
  1279.     tmp = strdup(n->fname);
  1280.     strcpy(n->fname, "sdp://");
  1281.     strcat(n->fname, tmp);
  1282.     free(tmp);
  1283. }
  1284. if (n->playlist == 1 || n->cancelled == 1) {
  1285.     if (n->mmsstream == 0) {
  1286. if (n->next == NULL) {
  1287.     pthread_mutex_unlock(&playlist_mutex);
  1288.     if (DEBUG > 1)
  1289. printf
  1290.     ("Exiting DS with playlist = %i, cancelled = %i, mmsstream = 0, and n->url = %s and threadsignaled = %in",
  1291.      n->playlist, n->cancelled, n->url,
  1292.      threadsignaled);
  1293.     if (autostart && threadsignaled == 0) {
  1294. signalPlayerThread(this);
  1295. threadsignaled = 1;
  1296.     } else {
  1297. if (showcontrols && panel_drawn == 0) {
  1298.     panel_height = 16;
  1299. #ifdef GTK_ENABLED
  1300.     g_idle_add(gtkgui_draw, this);
  1301. #endif
  1302.     pthread_mutex_lock(&control_mutex);
  1303.     js_state = JS_STATE_READY;
  1304.     pthread_mutex_unlock(&control_mutex);
  1305. }
  1306.     }
  1307.     return NPERR_NO_ERROR;
  1308. }
  1309.     }
  1310. }
  1311.     } else {
  1312. n->mmsstream = 1;
  1313. pthread_mutex_unlock(&playlist_mutex);
  1314.     }
  1315.     // test for all retrieved
  1316.     if (threadsignaled == 0) {
  1317. all_retrieved = 1;
  1318. n = td->list;
  1319. while (n != NULL) {
  1320.     if ((n->retrieved == 0) && (n->play == 1)) {
  1321. all_retrieved = 0;
  1322. break;
  1323.     }
  1324.     n = n->next;
  1325. }
  1326. // if all retrieved signal player
  1327. if (all_retrieved) {
  1328.     if (threadsignaled == 0) {
  1329. if (DEBUG)
  1330.     printf("signalling player (retrieved)n");
  1331. if (autostart) {
  1332.     signalPlayerThread(this);
  1333.     threadsignaled = 1;
  1334. } else {
  1335.     if (showcontrols && panel_drawn == 0) {
  1336. panel_height = 16;
  1337. #ifdef GTK_ENABLED
  1338. g_idle_add(gtkgui_draw, this);
  1339. #endif
  1340. pthread_mutex_lock(&control_mutex);
  1341. js_state = JS_STATE_READY;
  1342. pthread_mutex_unlock(&control_mutex);
  1343.     }
  1344. }
  1345.     }
  1346. }
  1347.     }
  1348.     // if not then see if all not retrieved are above cache,
  1349.     if (threadsignaled == 0) {
  1350. all_above_cache = 1;
  1351. n = td->list;
  1352. while (n != NULL) {
  1353.     if (DEBUG) {
  1354. printf
  1355.     ("n->url= %snn->bytes = %linn->cachebytes = %linn->play= %inn->playlist= %inn->mmsstream= %in",
  1356.      n->url, n->bytes, n->cachebytes, n->play,
  1357.      n->playlist, n->mmsstream);
  1358.     }
  1359.     if ((n->bytes <= n->cachebytes) && (n->play == 1)) {
  1360. all_above_cache = 0;
  1361. break;
  1362.     }
  1363.     n = n->next;
  1364. }
  1365. // if all above cache signal player
  1366. if (all_above_cache) {
  1367.     if (threadsignaled == 0) {
  1368. if (DEBUG)
  1369.     printf("signalling player (above cache)n");
  1370. if (autostart) {
  1371.     signalPlayerThread(this);
  1372.     threadsignaled = 1;
  1373. } else {
  1374.     pthread_mutex_lock(&control_mutex);
  1375.     js_state = JS_STATE_READY;
  1376.     pthread_mutex_unlock(&control_mutex);
  1377. }
  1378.     }
  1379. }
  1380.     }
  1381.     // check for streaming media
  1382.     if (threadsignaled == 0) {
  1383. // look for mmsstream
  1384. n = td->list;
  1385. while (n != NULL) {
  1386.     if ((n->mmsstream == 1)
  1387. && (n->play == 1)) {
  1388. if (threadsignaled == 0) {
  1389.     if (DEBUG)
  1390. printf("signalling player (mmsstream)n");
  1391.     if (autostart) {
  1392. signalPlayerThread(this);
  1393. threadsignaled = 1;
  1394.     } else {
  1395. if (showcontrols && panel_drawn == 0) {
  1396.     panel_height = 16;
  1397. #ifdef GTK_ENABLED
  1398.     g_idle_add(gtkgui_draw, this);
  1399. #endif
  1400.     pthread_mutex_lock(&control_mutex);
  1401.     js_state = JS_STATE_READY;
  1402.     pthread_mutex_unlock(&control_mutex);
  1403. }
  1404.     }
  1405. }
  1406. break;
  1407.     }
  1408.     n = n->next;
  1409. }
  1410.     }
  1411. }
  1412. pthread_mutex_unlock(&playlist_mutex);
  1413.     }
  1414.     if (reason == NPRES_USER_BREAK) {
  1415. if (DEBUG)
  1416.     printf("User cancelled the downloadn");
  1417.     }
  1418.     if (DEBUG >= 2)
  1419. printf
  1420.     ("*******Exiting DestroyStream Callback, state = %d, js_state = %dn",
  1421.      state, js_state);
  1422.     return NPERR_NO_ERROR;
  1423. }
  1424. void nsPluginInstance::URLNotify(const char *url, NPReason reason,
  1425.  void *notifyData)
  1426. {
  1427.     Node *n;
  1428.     bool isHttpStream = false;
  1429. // system("echo URLNotify>>log");
  1430.     if (DEBUG)
  1431. printf("URL: %snReason %in", url, reason);
  1432.     if (reason == 1) {
  1433. // check for streaming media
  1434. if (threadsignaled == 0) {
  1435.     // look for mmsstream
  1436.     n = td->list;
  1437.     while (n != NULL) {
  1438. if ((useragent != NULL) && (strlen(useragent) != 0) && (strstr(mimetype, "quicktime") == NULL)) // if we have a user agent 
  1439.     if (strncasecmp(n->url, "http://", 7) == 0) // and we have an http url
  1440. isHttpStream = true; // then we might have an http stream
  1441. if ((isHttpStream || n->mmsstream == 1)
  1442.     && (n->play == 1)) {
  1443.     if (threadsignaled == 0) {
  1444. if (DEBUG)
  1445.     printf("signalling player (mmsstream)n");
  1446. if (autostart) {
  1447.     signalPlayerThread(this);
  1448.     threadsignaled = 1;
  1449. } else {
  1450.     if (showcontrols && panel_drawn == 0) {
  1451. panel_height = 16;
  1452. #ifdef GTK_ENABLED
  1453. g_idle_add(gtkgui_draw, this);
  1454. #endif
  1455. pthread_mutex_lock(&control_mutex);
  1456. js_state = JS_STATE_READY;
  1457. pthread_mutex_unlock(&control_mutex);
  1458.     }
  1459. }
  1460.     }
  1461.     break;
  1462. }
  1463. n = n->next;
  1464.     }
  1465. }
  1466.     }
  1467. }
  1468. int32 nsPluginInstance::WriteReady(NPStream * stream)
  1469. {
  1470.     Node *n;
  1471.     char *filename;
  1472.     
  1473.     return 0;
  1474. //    system("echo WriteReady>>log");
  1475.     if (state == STATE_PLAY_CANCELLED || cancelled == 1)
  1476. return -1;
  1477.     if (td == NULL)
  1478. return -1;
  1479.     if (strlen(stream->url) >= 1023)
  1480. return -1;
  1481.     pthread_mutex_lock(&playlist_mutex);
  1482.     if (DEBUG >= 3)
  1483. printf("**WriteReady for %s, state =%d, js_state = %dn",
  1484.        stream->url, state, js_state);
  1485.     n = td->list;
  1486.     while (n != NULL) {
  1487. if (DEBUG > 1)
  1488.     printf("WR:nn->url= %snstream->url= %sn", n->url,
  1489.    stream->url);
  1490. if (strlen(n->url) != 0) {
  1491.     if (URLcmp(n->url, stream->url) == 0) {
  1492. break;
  1493.     } else {
  1494. if (strstr(stream->url, n->url) != NULL) {
  1495.     break;
  1496. }
  1497.     }
  1498. } else {
  1499.     snprintf(n->url, 1024, "%s", stream->url);
  1500.     break;
  1501. }
  1502. n = n->next;
  1503.     }
  1504.     // redirect case on initial node
  1505.     if ( n == NULL ) {
  1506.      if (DEBUG)
  1507.     printf("n == NULLn");
  1508.      if (td->list != NULL) {
  1509.     if (DEBUG)
  1510. printf("td->list != NULLn");
  1511.     if (((strlen(td->list->fname) == 0) 
  1512.   || (strncmp(getURLFilename(td->list->url),getURLFilename(stream->url),1024) == 0))
  1513.           && (mmsstream == 0)) {
  1514.     if (DEBUG)
  1515. printf("Redirected initial URLn");
  1516.     n = list;
  1517.     snprintf(n->url, 1024, "%s", stream->url);
  1518.     }
  1519.      }
  1520.     }
  1521.     if (n != NULL) {
  1522. // if we have determined that we are not going to play the file
  1523. // stop downloading it, and clean it up during cleanup
  1524. if (n->cancelled == 1) {
  1525.     n->remove = 1;
  1526.     //check locking here
  1527.     NPN_DestroyStream(mInstance, stream, NPRES_DONE);
  1528. }
  1529. // don't download it twice
  1530. if (n->retrieved == 1) {
  1531.     NPN_DestroyStream(mInstance, stream, NPRES_DONE);
  1532. }
  1533. if ((nomediacache == 1) && (stream->end > 16384)) {
  1534.     n->mmsstream = 1;
  1535.     pthread_mutex_unlock(&playlist_mutex);
  1536.     if (threadsignaled == 0) {
  1537. if (autostart) {
  1538.     if (DEBUG)
  1539. printf("signalling player from write readyn");
  1540.     signalPlayerThread(this);
  1541.     threadsignaled = 1;
  1542. } else {
  1543.     if (showcontrols && panel_drawn == 0) {
  1544. panel_height = 16;
  1545. #ifdef GTK_ENABLED
  1546. g_idle_add(gtkgui_draw, this);
  1547. #endif
  1548. pthread_mutex_lock(&control_mutex);
  1549. js_state = JS_STATE_READY;
  1550. pthread_mutex_unlock(&control_mutex);
  1551.     }
  1552. }
  1553.     }
  1554.     return -1;
  1555. } else {
  1556.     if (strlen(n->fname) == 0) {
  1557. if (keep_download == 1) {
  1558.     n->remove = 0;
  1559.     filename = getURLFilename(n->url);
  1560.     snprintf(n->fname, 1024, "%s/%s",
  1561.      download_dir, filename);
  1562.     if (filename)
  1563. NPN_MemFree(filename);
  1564. } else {
  1565.     snprintf(n->fname, 1024, "%s",
  1566.      tempnam("/tmp", "downloadplug-inXXXXXX"));
  1567.     if (strstr(mimetype, "midi") != NULL) {
  1568. strlcat(n->fname, ".mid", 1024);
  1569.     }
  1570.     if (strstr(mimetype, "mp3") != NULL) {
  1571. strlcat(n->fname, ".mp3", 1024);
  1572.     }
  1573.     if (strstr(mimetype, "audio/mpeg") != NULL) {
  1574. strlcat(n->fname, ".mp3", 1024);
  1575.     }
  1576.     if (strstr(mimetype, "audio/x-mod") != NULL) {
  1577. strlcat(n->fname, ".mod", 1024);
  1578.     }
  1579. }
  1580.     
  1581. if (DEBUG)
  1582.     printf("WR tempname: %sn", n->fname);
  1583.     }
  1584.     if (n->totalbytes != (int) stream->end)
  1585. n->totalbytes = stream->end;
  1586.     if (n->cachebytes <
  1587. (long int) (stream->end * cache_percent / 100))
  1588. n->cachebytes =
  1589.     (long int) (stream->end * cache_percent / 100);
  1590.     if (n->cachebytes < (cachesize * 1024))
  1591. n->cachebytes = cachesize * 1024;
  1592.     // if the file is really big , cap the amount to be cached
  1593.     if (n->cachebytes > (cachesize * 1024 * 2)
  1594. && cache_percent != 100)
  1595. n->cachebytes = cachesize * 1024 * 2;
  1596.     pthread_mutex_unlock(&playlist_mutex);
  1597.     return STREAMBUFSIZE;
  1598. }
  1599.     } else {
  1600. if (DEBUG)
  1601.     printf("didn't find the node in the playlistn %sn",
  1602.    stream->url);
  1603. n = newNode();
  1604. snprintf(n->url, 1024, "%s", stream->url);
  1605. if ((nomediacache == 1) && (stream->end > 16384)) {
  1606.     addToEnd(td->list, n);
  1607.     pthread_mutex_unlock(&playlist_mutex);
  1608.     if (showcontrols && panel_drawn == 0) {
  1609. panel_height = 16;
  1610. #ifdef GTK_ENABLED
  1611. g_idle_add(gtkgui_draw, this);
  1612. #endif
  1613.     }
  1614.     return -1;
  1615. } else {
  1616.     if (keep_download == 1) {
  1617. n->remove = 0;
  1618. filename = getURLFilename(n->url);
  1619. snprintf(n->fname, 1024, "%s/%s",
  1620.  download_dir, filename);
  1621. if (filename)
  1622.     NPN_MemFree(filename);
  1623.     } else {
  1624. snprintf(n->fname, 1024, "%s",
  1625.  tempnam("/tmp", "downloadplug-inXXXXXX"));
  1626.     }
  1627.     addToEnd(td->list, n);
  1628.     if (n->totalbytes != (int) stream->end)
  1629. n->totalbytes = stream->end;
  1630.     pthread_mutex_unlock(&playlist_mutex);
  1631.     if (DEBUG >= 3) {
  1632. printf
  1633.     ("**Exiting WriteReady Callback, state = %d, js_state = %dn",
  1634.      state, js_state);
  1635.     }
  1636.     return STREAMBUFSIZE;
  1637. }
  1638.     }
  1639. }
  1640. int32 nsPluginInstance::Write(NPStream * stream, int32 offset, int32 len,
  1641.       void *buffer)
  1642. {
  1643.     int ret = 0;
  1644.     long int currdownload, maxdownload;
  1645.     FILE *fp;
  1646.     Node *n;
  1647.     char message[1024];
  1648.     char *burl;
  1649.     
  1650. //    system("echo Write>>log");
  1651.     if (state == STATE_PLAY_CANCELLED || cancelled == 1)
  1652. return -1;
  1653.     if (td == NULL)
  1654. return -1;
  1655.     if (DEBUG >= 3)
  1656. printf("****Write Callback %s : %i : %in", stream->url,
  1657.        offset, len);
  1658.     if (strlen(stream->url) >= 1023)
  1659. return -1;
  1660.     pthread_mutex_lock(&playlist_mutex);
  1661.     // find the node that matches the URL and open the file name in it.
  1662.     currdownload = 0;
  1663.     maxdownload = 0;
  1664.     for (n = td->list; n != NULL; n = n->next) {
  1665. //if (URLcmp(n->url, stream->url) == 0) continue;
  1666. //if (strstr(stream->url, n->url) == NULL) continue;
  1667. if (n->play == 0)
  1668.     continue;
  1669. if (n->cancelled)
  1670.     continue;
  1671. currdownload += n->bytes;
  1672. maxdownload += n->totalbytes;
  1673.     }
  1674.     n = td->list;
  1675.     if (DEBUG > 2)
  1676. printf("Write - scanning playlist for %sn", stream->url);
  1677.     while (n != NULL) {
  1678. if (DEBUG > 2)
  1679.     printf("Write - current item is %sn", n->url);
  1680. if (URLcmp(n->url, stream->url) == 0) {
  1681.     break;
  1682. } else {
  1683.     if (strstr(stream->url, n->url) != NULL) {
  1684. break;
  1685.     }
  1686. }
  1687. n = n->next;
  1688.     }
  1689.     if (n == NULL) {
  1690. pthread_mutex_unlock(&playlist_mutex);
  1691. return -1;
  1692.     } else {
  1693. if (n->cancelled == 1 || state == STATE_PLAY_CANCELLED) {
  1694.     if (n->localcache != NULL) {
  1695. fclose(n->localcache);
  1696. n->localcache = NULL;
  1697.     }
  1698.     pthread_mutex_unlock(&playlist_mutex);
  1699.     if (DEBUG) {
  1700. printf
  1701.     ("*******Exiting Write: CANCELLED, state = %d, js_state = %dn",
  1702.      state, js_state);
  1703.     }
  1704.     return -1;
  1705. }
  1706. if (n->status != STATE_CANCELLED) {
  1707.     // Detect NSV media 
  1708.     snprintf(message, 1024, "%s", (char *) buffer);
  1709.     if (memmem(message, 1024, "ICY 200 OK", 10) != NULL) {
  1710. n->mmsstream = 1;
  1711. n->cancelled = 1;
  1712. n->status = STATE_CANCELLED;
  1713.     } else {
  1714. // normal media so keep going.
  1715. if (n->localcache == NULL) {
  1716.     fp = fopen(n->fname, "w+");
  1717.     n->localcache = fp;
  1718. } else {
  1719.     fp = n->localcache;
  1720. }
  1721. if (fp == NULL) {
  1722.     pthread_mutex_unlock(&playlist_mutex);
  1723.     return -1;
  1724. }
  1725. fseek(fp, offset, SEEK_SET);
  1726. ret = fwrite(buffer, 1, len, fp);
  1727. n->bytes = n->bytes + ret;
  1728. if (maxdownload == 0) {
  1729.     snprintf(message, 1024, _("Buffering %li KB"),
  1730.      (n->bytes / 1024));
  1731. } else {
  1732.     if (currdownload < maxdownload) {
  1733. snprintf(message, 1024,
  1734.  _("Buffering %i%% - %li KB"),
  1735.  (int) (100.0 *
  1736. ((double) currdownload /
  1737.  (double) maxdownload)),
  1738.  (n->bytes / 1024));
  1739. percent = ((double) currdownload /
  1740.    (double) maxdownload);
  1741.     } else {
  1742. snprintf(message, 1024,
  1743.  _("Buffering Complete - %li KB"),
  1744.  (n->bytes / 1024));
  1745. percent = 1.0;
  1746.      n->retrieved = 1;
  1747.     }
  1748. }
  1749. if (mode == NP_EMBED && noembed == 0 && fullscreen == 0) {
  1750.     if (state < STATE_PLAYING) {
  1751. #ifdef X_ENABLED
  1752. DrawUI(widget, this, message,
  1753.        0,
  1754.        (int) ((currdownload /
  1755.        (maxdownload * 1.0)) * 100));
  1756. #endif
  1757. #ifdef GTK_ENABLED
  1758. if (GTK_IS_WIDGET(progress_bar)
  1759.     && maxdownload != 0) {
  1760.     if (movie_width == 0 && movie_height == 0) {
  1761. gtk_progress_bar_update(progress_bar,
  1762. ((currdownload *
  1763.   1.0) /
  1764.  (maxdownload *
  1765.   1.0)));
  1766. if (!hidestatus)
  1767.     gtk_widget_show(GTK_WIDGET
  1768.     (progress_bar));
  1769. gtk_widget_queue_draw(GTK_WIDGET
  1770.       (progress_bar));
  1771.     }
  1772. }
  1773. if (status != NULL) {
  1774.     gtk_label_set_text(status, message);
  1775.     if (!hidestatus)
  1776. gtk_widget_show(GTK_WIDGET(status));
  1777.     gtk_widget_queue_draw(GTK_WIDGET(status));
  1778. }
  1779. #endif
  1780.     }
  1781. } else {
  1782.     if (fullscreen == 0) {
  1783. #ifdef X_ENABLED
  1784. DrawUI(widget, this, message,
  1785.        0,
  1786.        (int) ((currdownload /
  1787.        (maxdownload * 1.0)) * 100));
  1788. #endif
  1789. #ifdef GTK_ENABLED
  1790. if (GTK_IS_WIDGET(progress_bar)
  1791.     && maxdownload != 0) {
  1792.     if (movie_width == 0 && movie_height == 0) {
  1793. gtk_progress_bar_update(progress_bar,
  1794. ((currdownload *
  1795.   1.0) /
  1796.  (maxdownload *
  1797.   1.0)));
  1798. if (!hidestatus)
  1799.     gtk_widget_show(GTK_WIDGET
  1800.     (progress_bar));
  1801. gtk_widget_queue_draw(GTK_WIDGET
  1802.       (progress_bar));
  1803.     }
  1804. }
  1805. if (status != NULL) {
  1806.     if (state < STATE_PLAYING) {
  1807. gtk_label_set_text(status, message);
  1808. if (!hidestatus)
  1809.     gtk_widget_show(GTK_WIDGET(status));
  1810. gtk_widget_queue_draw(GTK_WIDGET(status));
  1811.     }
  1812. }
  1813. #endif
  1814.     }
  1815. }
  1816.     }
  1817.     if (n->status != STATE_DOWNLOADED_ENOUGH) {
  1818. burl = getURLBase(n->url);
  1819. if (burl != NULL) {
  1820.     if (baseurl == NULL) {
  1821. baseurl = burl;
  1822.     } else {
  1823. if (strcmp(baseurl, burl) != 0) {
  1824.     NPN_MemFree(baseurl);
  1825.     baseurl = burl;
  1826. } else {
  1827.     NPN_MemFree(burl);
  1828. }
  1829.     }
  1830. }
  1831. if (isMms(n->url, nomediacache)) {
  1832.     n->mmsstream = 1;
  1833. }
  1834.     }
  1835.     if (n->play == 1) {
  1836. if (n->localcache != NULL && nomediacache == 1) {
  1837.     fclose(n->localcache);
  1838.     n->localcache = NULL;
  1839. }
  1840. if (n->mmsstream == 1) {
  1841.     if (threadsignaled == 0) {
  1842. if (autostart) {
  1843.     if (DEBUG)
  1844. printf("signalling player from writen");
  1845.     signalPlayerThread(this);
  1846.     threadsignaled = 1;
  1847. } else {
  1848.     pthread_mutex_lock(&control_mutex);
  1849.     js_state = JS_STATE_READY;
  1850.     pthread_mutex_unlock(&control_mutex);
  1851. }
  1852.     }
  1853. } else {
  1854.     if (n->bytes > n->cachebytes) {
  1855. if (threadsignaled == 0) {
  1856.     if (autostart) {
  1857. if (DEBUG)
  1858.     printf
  1859. ("signalling player from writen");
  1860. signalPlayerThread(this);
  1861. threadsignaled = 1;
  1862.     } else {
  1863. if (showcontrols && panel_drawn == 0) {
  1864.     panel_height = 16;
  1865. #ifdef GTK_ENABLED
  1866.     g_idle_add(gtkgui_draw, this);
  1867. #endif
  1868.     pthread_mutex_lock(&control_mutex);
  1869.     js_state = JS_STATE_READY;
  1870.     pthread_mutex_unlock(&control_mutex);
  1871. }
  1872.     }
  1873. }
  1874.     }
  1875. }
  1876.     }
  1877. }
  1878. n->status = STATE_DOWNLOADED_ENOUGH;
  1879. pthread_mutex_unlock(&playlist_mutex);
  1880. if (DEBUG >= 3) {
  1881.     printf("*******Exiting Write, state = %d, js_state = %dn",
  1882.    state, js_state);
  1883. }
  1884. return ret;
  1885.     }
  1886. }
  1887. // methods called from nsScriptablePeer
  1888. void nsPluginInstance::Play()
  1889. {
  1890.     Node *n;
  1891.     int clearlist = 1;
  1892.     
  1893. //    system("echo Play>>log");
  1894.     return;
  1895.     if (DEBUG > 1) {
  1896. printf("*****Play Calledn");
  1897.     }
  1898.     // when js_state == JS_STATE_UNDEFINED, this means that the playlist
  1899.     // has been completely processed and the window is clear with the controls
  1900.     // visible
  1901.     // someone just pressed play so we have to reset the playlist
  1902.     if (js_state == JS_STATE_UNDEFINED) {
  1903. //reset the playlist
  1904. if (DEBUG)
  1905.     printf("Play: resetting playlistn");
  1906. pthread_mutex_lock(&playlist_mutex); // manipulating the playlist, so lock it
  1907. n = list;
  1908. while (n != NULL) {
  1909.     if (n->played == 0 && n->play == 1) {
  1910. clearlist = 0;
  1911.     }
  1912.     n = n->next;
  1913. }
  1914. if (clearlist) {
  1915.     n = list;
  1916.     while (n != NULL) {
  1917. if (n->played == 1)
  1918.     n->played = 0; // reset played flag
  1919. n = n->next;
  1920.     }
  1921. }
  1922. pthread_mutex_unlock(&playlist_mutex); // unlock the playlist
  1923.     }
  1924.     // the thread is not inited
  1925.     // controlwindow is set to 1 when the controls are in one instance and the 
  1926.     // output is in another, right now we can't control both instances so when
  1927.     // we detect a control window we just don't set it up.
  1928.     if (threadsetup == 0 && controlwindow == 0) {
  1929. if (DEBUG > 1)
  1930.     printf("Play: setupplayern");
  1931. state = STATE_GETTING_PLAYLIST;
  1932. SetupPlayer(this, NULL);
  1933. if (nomediacache == 1)
  1934.     js_state = JS_STATE_BUFFERING;
  1935.     }
  1936.     if (threadsetup == 1 && threadlaunched == 0 && controlwindow == 0) {
  1937. if (DEBUG > 1)
  1938.     printf("Play: launching threadn");
  1939. pthread_mutex_lock(&control_mutex);
  1940. launchPlayerThread(this);
  1941. pthread_mutex_unlock(&control_mutex); // unlock the control pipe, so that playPlaylist can grab it in a separate thread
  1942.     }
  1943.     // we are here cause Play 
  1944.     // also the thread has not been signalled to start, so signal it
  1945.     if (threadsignaled == 0 && threadsetup == 1 && threadlaunched == 1) {
  1946. if (DEBUG > 1)
  1947.     printf("Play: ready to signaln");
  1948. while (state < STATE_WAITING_FOR_SIGNAL) {
  1949.     printf("sleeping state = %in", state);
  1950.     usleep(100);
  1951. }
  1952. if (DEBUG > 1)
  1953.     printf("Play: signalling threadn");
  1954. signalPlayerThread(this);
  1955. threadsignaled = 1;
  1956.     }
  1957.     // normal state, the media is paused or stopped and the thread is active.
  1958.     if (paused == 1) {
  1959. if (DEBUG)
  1960.     printf("Play: sending playn");
  1961. pthread_mutex_lock(&control_mutex);
  1962. sendCommand(this, "pausen"); // send pause again to unpause
  1963. paused = 0;
  1964. js_state = JS_STATE_PLAYING;
  1965. pthread_mutex_unlock(&control_mutex);
  1966.     }
  1967. #ifdef GTK_ENABLED
  1968.     play_callback(NULL, NULL, this);
  1969. #endif
  1970.     if (DEBUG > 1) {
  1971. printf("***********Exiting Play*************n");
  1972.     }
  1973. }
  1974. void nsPluginInstance::PlayAt(double counter)
  1975. {
  1976. // system("echo PlayAt>>log");
  1977.     starttime = (long int) counter;
  1978.     Play();
  1979. }
  1980. void nsPluginInstance::Pause()
  1981. {
  1982. // system("echo Pause>>log");
  1983.     if (threadlaunched == 0)
  1984. return;
  1985.     pthread_mutex_lock(&control_mutex);
  1986.     if (paused == 0) {
  1987. if (DEBUG)
  1988.     printf("sending pausen");
  1989. sendCommand(this, "pausen");
  1990. #ifdef GTK_ENABLED
  1991. pause_callback(NULL, NULL, this);
  1992. #endif
  1993. paused = 1;
  1994. js_state = JS_STATE_PAUSED;
  1995.     }
  1996.     pthread_mutex_unlock(&control_mutex);
  1997. }
  1998. void nsPluginInstance::Stop()
  1999. {
  2000.     Node *n;
  2001.     int hdc;
  2002.     int ret;
  2003.     return ;
  2004. #if 0
  2005.     system("echo >>/root/tmp");
  2006.     hdc = open(device, O_RDWR);
  2007.     if(hdc == -1)
  2008.     {
  2009. system("echo open com1 failed >>/root/tmp");
  2010. return;
  2011.     }
  2012.     else
  2013.     {
  2014. system("echo open com1 ok >>/root/tmp");
  2015.         ret = write(hdc, data, strlen(data));
  2016.     if(ret == -1)
  2017. system("echo write com1 failed >>/root/tmp");
  2018. else
  2019. system("echo write com1 ok >>/root/tmp");
  2020.         close(hdc);
  2021. return;
  2022.     }
  2023. #endif
  2024.     if (threadlaunched == 0)
  2025. return;
  2026.     pthread_mutex_lock(&control_mutex);
  2027.     if (DEBUG)
  2028. printf("sending stopn");
  2029.     if (paused == 1)
  2030. sendCommand(this, "pausen");
  2031.     if (mmsstream == 0) {
  2032. sendCommand(this, "seek 0 2npausen");
  2033.     } else {
  2034. pthread_mutex_trylock(&playlist_mutex); // manipulating the playlist, so lock it
  2035. n = list;
  2036. while (n != NULL) {
  2037.     if (n->played)
  2038. n->played = 0; // reset playlist
  2039.     n = n->next;
  2040. }
  2041. pthread_mutex_unlock(&playlist_mutex); // unlock the playlist
  2042. sendCommand(this, "quitn");
  2043.     }
  2044. #ifdef GTK_ENABLED
  2045.     stop_callback(NULL, NULL, this);
  2046. #endif
  2047.     paused = 1;
  2048.     js_state = JS_STATE_STOPPED;
  2049.     pthread_mutex_unlock(&control_mutex);
  2050. }
  2051. void nsPluginInstance::Quit()
  2052. {
  2053. // system("echo Quit>>log");
  2054.     if (threadlaunched == 0)
  2055. return;
  2056.     pthread_mutex_lock(&control_mutex);
  2057.     if (DEBUG)
  2058. printf("sending quitn");
  2059.     if (paused == 1)
  2060. sendCommand(this, "pausen");
  2061.     sendCommand(this, "quitn");
  2062.     paused = 0;
  2063.     js_state = JS_STATE_UNDEFINED;
  2064.     pthread_mutex_unlock(&control_mutex);
  2065.     killdownload(this);
  2066. }
  2067. void nsPluginInstance::FastForward()
  2068. {
  2069.     int pre_state;
  2070. //system("echo FastForward>>log");
  2071.     if (threadlaunched == 0)
  2072. return;
  2073.     if ((js_state == JS_STATE_PLAYING) || (js_state == JS_STATE_PAUSED)) {
  2074. // do nothing, since these are ok states to FF in
  2075.     } else {
  2076. return;
  2077.     }
  2078.     pthread_mutex_lock(&control_mutex);
  2079.     pre_state = js_state;
  2080.     js_state = JS_STATE_SCANFORWARD;
  2081.     if (DEBUG)
  2082. printf("sending FastForwardn");
  2083.     if (paused == 1)
  2084. sendCommand(this, "pausen");
  2085.     sendCommand(this, "seek +10 0n");
  2086.     if (paused == 1)
  2087. sendCommand(this, "pausen");
  2088.     js_state = pre_state;
  2089.     pthread_mutex_unlock(&control_mutex);
  2090. }
  2091. void nsPluginInstance::FastReverse()
  2092. {
  2093.     int pre_state;
  2094. //system("echo FastReverse>>log");
  2095.     if (threadlaunched == 0)
  2096. return;
  2097.     if ((js_state == JS_STATE_PLAYING) || (js_state == JS_STATE_PAUSED)) {
  2098. // do nothing, since these are ok states to REW in
  2099.     } else {
  2100. return;
  2101.     }
  2102.     pthread_mutex_lock(&control_mutex);
  2103.     pre_state = js_state;
  2104.     js_state = JS_STATE_SCANREVERSE;
  2105.     if (DEBUG)
  2106. printf("sending FastReversen");
  2107.     if (paused == 1)
  2108. sendCommand(this, "pausen");
  2109.     sendCommand(this, "seek -10 0n");
  2110.     if (paused == 1)
  2111. sendCommand(this, "pausen");
  2112.     js_state = pre_state;
  2113.     pthread_mutex_unlock(&control_mutex);
  2114. }
  2115. void nsPluginInstance::Seek(double counter)
  2116. {
  2117.     char command[32];
  2118. //    system("echo Seek>>log");
  2119.     if (threadlaunched == 0)
  2120. return;
  2121.     pthread_mutex_lock(&control_mutex);
  2122.     if (paused == 1)
  2123. sendCommand(this, "pausen");
  2124.     snprintf(command, 32, "seek %5.0f 2n", counter);
  2125.     sendCommand(this, command);
  2126.     if (paused == 1)
  2127. sendCommand(this, "pausen");
  2128.     pthread_mutex_unlock(&control_mutex);
  2129. }
  2130. void nsPluginInstance::GetPlayState(PRInt32 * playstate)
  2131. {
  2132. // system("echo GetPlayState>>log");
  2133.     pthread_mutex_lock(&control_mutex);
  2134.     *playstate = js_state;
  2135.     pthread_mutex_unlock(&control_mutex);
  2136. }
  2137. char *nsPluginInstance::GetTime(void)
  2138. {
  2139.    return "over";
  2140. #if 0
  2141.     system("echo Gettime >>tmp");
  2142.     int hdc;
  2143.    
  2144.     hdc = open(device, O_RDWR);
  2145.     if(hdc == -1)
  2146.     {
  2147.         system("echo open device failed >>tmp");
  2148. return "open fail";
  2149.     }
  2150.     else
  2151.     {
  2152. system("echo read data>>tmp");
  2153.      return "read data from device";
  2154.     }
  2155.     if (js_state == JS_STATE_STOPPED) {
  2156. mediaTime = 0.0;
  2157.     }
  2158.     *_retval = (double) mediaTime;
  2159. #endif
  2160. }
  2161. void nsPluginInstance::GetDuration(double *_retval)
  2162. {
  2163. // system("echo GetDuration>>log");
  2164.     *_retval = (double) mediaLength;
  2165. }
  2166. void nsPluginInstance::GetPercent(double *_retval)
  2167. {
  2168. // system("echo GetPercent>>log");
  2169.     *_retval = (double) mediaPercent;
  2170. }
  2171. void nsPluginInstance::GetFilename(char **filename)
  2172. {
  2173. // system("echo GetFilename>>log");
  2174.     if (DEBUG >= 2)
  2175. printf("***************** GetFilename called %sn", *filename);
  2176.     if (href != NULL)
  2177. *filename = strdup(href);
  2178.     if (fname != NULL)
  2179. *filename = strdup(fname);
  2180.     if (url != NULL)
  2181. *filename = strdup(url);
  2182.     if (DEBUG >= 2)
  2183. printf("***************** GetFilename exited %sn", *filename);
  2184. }
  2185. void nsPluginInstance::SetFilename(const char *filename)
  2186. {
  2187.     char localurl[1024];
  2188.     char *media_save;
  2189.     strcpy(device, filename);
  2190.     return ;
  2191.     if (DEBUG >= 2)
  2192. printf("***************** SetFilename called %sn", filename);
  2193. /*
  2194.     killdownload(this);
  2195.     // reset some vars
  2196.     paused = 0;
  2197.     threadsetup = 0;
  2198.     threadsignaled = 0;
  2199.     // reset the list
  2200. */
  2201.     if (DEBUG)
  2202. printf("threadsetup = %i, threadsignaled = %in", threadsetup,
  2203.        threadsignaled);
  2204.     if (threadsetup == 1 && threadsignaled == 1) {
  2205. media_save = NULL;
  2206. if (mediaCompleteCallback != NULL) {
  2207.     media_save = mediaCompleteCallback;
  2208.     mediaCompleteCallback = NULL;
  2209. }
  2210. Quit();
  2211. while (threadsetup != 0) {
  2212.     if (DEBUG)
  2213. printf("waiting to quitn");
  2214.     usleep(100);
  2215. }
  2216. if (media_save != NULL) {
  2217.     mediaCompleteCallback = media_save;
  2218.     media_save = NULL;
  2219. }
  2220.     }
  2221.     pthread_mutex_lock(&playlist_mutex);
  2222.     if (baseurl != NULL) {
  2223. free(baseurl);
  2224. baseurl = NULL;
  2225.     }
  2226.     if (hostname != NULL) {
  2227. free(hostname);
  2228. hostname = NULL;
  2229.     }
  2230.     deleteList(list);
  2231.     list = newNode();
  2232.     td->list = NULL;
  2233.     // need to convert to Fully Qualified URL here
  2234.     fullyQualifyURL(this, (char *) filename, localurl);
  2235.     if (href != NULL) {
  2236. free(href);
  2237. href = NULL;
  2238.     }
  2239.     if (fname != NULL) {
  2240. free(fname);
  2241. fname = NULL;
  2242.     }
  2243.     if (url != NULL) {
  2244. free(url);
  2245. url = NULL;
  2246.     }
  2247.     pthread_mutex_unlock(&playlist_mutex);
  2248.     url = strdup(localurl);
  2249.     cancelled = 0;
  2250.     if (DEBUG)
  2251. printf("SetFilename getting %sn", localurl);
  2252.     if (!isMms(localurl, nomediacache))
  2253. NPN_GetURL(mInstance, localurl, NULL);
  2254.     if (DEBUG >= 2) {
  2255. printf("**********SetFilename Exit***************n");
  2256.     }
  2257. }
  2258. void nsPluginInstance::GetShowControls(PRBool * _retval)
  2259. {
  2260. // system("echo GetShowControls>>log");
  2261.     *_retval = (PRBool) controlsvisible;
  2262. }
  2263. void nsPluginInstance::SetShowControls(PRBool value)
  2264. {
  2265. // system("echo SetShowControls>>log");
  2266. #ifdef GTK_ENABLED
  2267.     if (value) {
  2268. if (panel_drawn == 0) {
  2269.     gtkgui_draw(this);
  2270. } else {
  2271.     if (play_event_box != NULL)
  2272. gtk_widget_show(play_event_box);
  2273.     if (pause_event_box != NULL)
  2274. gtk_widget_show(pause_event_box);
  2275.     if (stop_event_box != NULL)
  2276. gtk_widget_show(stop_event_box);
  2277.     if (ff_event_box != NULL)
  2278. gtk_widget_show(ff_event_box);
  2279.     if (rew_event_box != NULL)
  2280. gtk_widget_show(rew_event_box);
  2281.     if (mediaprogress_bar != NULL && mediaPercent > 0)
  2282. gtk_widget_show(GTK_WIDGET(mediaprogress_bar));
  2283.     if (fs_event_box != NULL)
  2284. gtk_widget_show(GTK_WIDGET(fs_event_box));
  2285. }
  2286. controlsvisible = 1;
  2287.     } else { // hide everything
  2288. if (panel_drawn == 0) {
  2289.     // do nothing
  2290. } else {
  2291.     if (play_event_box != NULL)
  2292. gtk_widget_hide(play_event_box);
  2293.     if (pause_event_box != NULL)
  2294. gtk_widget_hide(pause_event_box);
  2295.     if (stop_event_box != NULL)
  2296. gtk_widget_hide(stop_event_box);
  2297.     if (ff_event_box != NULL)
  2298. gtk_widget_hide(ff_event_box);
  2299.     if (rew_event_box != NULL)
  2300. gtk_widget_hide(rew_event_box);
  2301.     if (mediaprogress_bar != NULL)
  2302. gtk_widget_hide(GTK_WIDGET(mediaprogress_bar));
  2303.     if (fs_event_box != NULL)
  2304. gtk_widget_hide(GTK_WIDGET(fs_event_box));
  2305. }
  2306. controlsvisible = 0;
  2307.     }
  2308. #endif
  2309. #ifdef GTK2_ENABLED
  2310.     gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM
  2311.    (menuitem_showcontrols),
  2312.    controlsvisible);
  2313. #endif
  2314. }
  2315. void nsPluginInstance::GetFullscreen(PRBool * _retval)
  2316. {
  2317. // system("echo GetFullscreen>>log");
  2318.     *_retval = (PRBool) fullscreen;
  2319. }
  2320. void nsPluginInstance::SetFullscreen(PRBool value)
  2321. {
  2322. //system("echo SetFullscreen>>log");
  2323. #ifdef GTK2_ENABLED
  2324.     GdkScreen *screen;
  2325.     GdkRectangle rect;
  2326.     gint wx, wy;
  2327.     gint wwidth, wheight;
  2328. #endif
  2329. #ifdef GTK_ENABLED
  2330.     int multiplier, height = 0, width;
  2331.     int x, y, disp_x, pos_x, disp_y, pos_y, button_top;
  2332.     GdkColormap *colormap;
  2333.     GdkColor black;
  2334. #endif
  2335.     int win_height, win_width;
  2336. return;
  2337. #if 0
  2338.     if (threadlaunched == 0 && value == 1)
  2339. return;
  2340.     if (DEBUG)
  2341. printf("in SetFullscreen with %infullscreen = %in", value,
  2342.        fullscreen);
  2343. #ifdef GTK_ENABLED
  2344.     black.red = 0;
  2345.     black.green = 0;
  2346.     black.blue = 0;
  2347.     if (drawing_area != NULL) {
  2348. colormap = gdk_window_get_colormap(drawing_area->window);
  2349. gdk_color_alloc(colormap, &black);
  2350.     }
  2351. #endif
  2352.     if (mode == NP_EMBED) {
  2353. win_height = embed_height;
  2354. win_width = embed_width;
  2355.     } else {
  2356. win_height = window_height;
  2357. win_width = window_width;
  2358.     }
  2359.     if (targetplayer == 1) {
  2360. win_height = movie_height;
  2361. win_width = movie_width;
  2362.     }
  2363.     if (DEBUG)
  2364. printf("height = %i and width = %in", win_height, win_width);
  2365.     if (win_height == 0 || win_width == 0 || hidden == 1)
  2366. return;
  2367.     if (fullscreen) {
  2368. if (value) {
  2369.     // do nothing
  2370.     if (DEBUG > 1)
  2371. printf("SetFullscreen doing nothingn");
  2372. #ifdef GTK2_ENABLED
  2373.     screen = gtk_window_get_screen(GTK_WINDOW(gtkwidget));
  2374.     gdk_screen_get_monitor_geometry(screen,
  2375.     gdk_screen_get_monitor_at_window
  2376.     (screen, gtkwidget->window),
  2377.     &rect);
  2378.     //gtk_widget_reparent(gtkwidget, fs_window);
  2379.     gtk_window_get_size(GTK_WINDOW(gtkwidget), &wwidth, &wheight);
  2380.     if ((wwidth != rect.width) && (wheight != rect.height)) {
  2381. if (targetplayer == 0) {
  2382.     XReparentWindow(GDK_WINDOW_XDISPLAY(gtkwidget->window),
  2383.     GDK_WINDOW_XWINDOW(gtkwidget->window),
  2384.     GDK_WINDOW_XWINDOW(fs_window->window),
  2385.     0, 0);
  2386.     gtk_widget_map(gtkwidget);
  2387.     gtk_window_resize(GTK_WINDOW(gtkwidget), rect.width,
  2388.       rect.height);
  2389.     if (DEBUG)
  2390. printf("gtkwidget resized to %i x %in",
  2391.        rect.width, rect.height);
  2392. }
  2393.     } else {
  2394. if (DEBUG)
  2395.     printf("gtkwidget is %i x %in", wwidth, wheight);
  2396.     }
  2397.     x = rect.width;
  2398.     y = rect.height;
  2399.     disp_y = y;
  2400.     disp_x = x;
  2401.     if (movie_height != 0 && movie_width != 0) {
  2402. disp_y = ((long int) (x * movie_height)) / movie_width;
  2403. disp_x = ((long int) (y * movie_width)) / movie_height;
  2404.     } else {
  2405. if (win_width != 0) {
  2406.     disp_y = ((long int) (x * win_height)) / win_width;
  2407.     disp_x = ((long int) (y * win_width)) / win_height;
  2408. }
  2409.     }
  2410.     pos_y = (y - disp_y) / 2;
  2411.     pos_x = (x - disp_x) / 2;
  2412.     if (drawing_area != NULL) {
  2413. if (disp_y <= y) {
  2414.     gtk_widget_set_usize(drawing_area, x, disp_y);
  2415.     gtk_fixed_move(GTK_FIXED(fixed_container),
  2416.    GTK_WIDGET(drawing_area), 0, pos_y);
  2417.     if (DEBUG)
  2418. printf("drawing_area is %i x %in", x, disp_y);
  2419. } else {
  2420.     gtk_widget_set_usize(drawing_area, disp_x, y);
  2421.     gtk_fixed_move(GTK_FIXED(fixed_container),
  2422.    GTK_WIDGET(drawing_area), pos_x, 0);
  2423.     if (DEBUG)
  2424. printf("drawing_area is %i x %in", disp_x, y);
  2425. }
  2426.     }
  2427. #endif
  2428.     fullscreen = 1;
  2429. } else {
  2430. #ifdef GTK_ENABLED
  2431.     if (DEBUG > 1)
  2432. printf("SetFullscreen returning to original sizen");
  2433. #ifdef GTK2_ENABLED
  2434.     if (fs_window != NULL) {
  2435. gtk_window_unfullscreen(GTK_WINDOW(fs_window));
  2436. if (targetplayer == 0) {
  2437.     XReparentWindow(GDK_WINDOW_XDISPLAY(gtkwidget->window),
  2438.     GDK_WINDOW_XWINDOW(gtkwidget->window),
  2439.     window, 0, 0);
  2440.     gtk_widget_map(gtkwidget);
  2441. }
  2442. gtk_widget_destroy(fs_window);
  2443. fs_window = NULL;
  2444.     } else {
  2445. gtk_window_unfullscreen(GTK_WINDOW(gtkwidget));
  2446.     }
  2447.     if (targetplayer == 0) {
  2448. gtk_window_move(GTK_WINDOW(gtkwidget), 0, 0);
  2449. gtk_window_resize(GTK_WINDOW(gtkwidget), win_width,
  2450.   win_height);
  2451.     }
  2452. #endif
  2453. #ifdef GTK1_ENABLED
  2454.     if (fs_window != NULL) {
  2455. XReparentWindow(GDK_WINDOW_XDISPLAY(gtkwidget->window),
  2456. GDK_WINDOW_XWINDOW(gtkwidget->window),
  2457. window, 0, 0);
  2458. XMapWindow(GDK_WINDOW_XDISPLAY(gtkwidget->window),
  2459.    GDK_WINDOW_XWINDOW(gtkwidget->window));
  2460. gtk_widget_destroy(fs_window);
  2461. fs_window = NULL;
  2462.     }
  2463.     XResizeWindow(GDK_WINDOW_XDISPLAY(gtkwidget->window),
  2464.   GDK_WINDOW_XWINDOW(gtkwidget->window),
  2465.   win_width, win_height);
  2466. #endif
  2467.     if (panel_drawn == 1) {
  2468. height = 16;
  2469. width = 21;
  2470. if (targetplayer == 0) {
  2471.     button_top = win_height - height;
  2472. } else {
  2473.     button_top = win_height;
  2474. }
  2475. multiplier = 0;
  2476. if (mmsstream == 0 && win_width > 126) {
  2477.     gtk_fixed_move(GTK_FIXED(fixed_container),
  2478.    GTK_WIDGET(rew_event_box),
  2479.    width * multiplier++, button_top);
  2480. }
  2481. gtk_fixed_move(GTK_FIXED(fixed_container),
  2482.        GTK_WIDGET(play_event_box),
  2483.        width * multiplier++, button_top);
  2484. if (win_width > 126)
  2485.     gtk_fixed_move(GTK_FIXED(fixed_container),
  2486.    GTK_WIDGET(pause_event_box),
  2487.    width * multiplier++, button_top);
  2488. gtk_fixed_move(GTK_FIXED(fixed_container),
  2489.        GTK_WIDGET(stop_event_box),
  2490.        width * multiplier++, button_top);
  2491. if (mmsstream == 0 && win_width > 126) {
  2492.     gtk_fixed_move(GTK_FIXED(fixed_container),
  2493.    GTK_WIDGET(ff_event_box),
  2494.    width * multiplier++, button_top);
  2495. }
  2496. if (mediaprogress_bar != NULL) {
  2497.     gtk_fixed_move(GTK_FIXED(fixed_container),
  2498.    GTK_WIDGET(mediaprogress_bar),
  2499.    (width * multiplier + 10),
  2500.    button_top + 2);
  2501.     gtk_widget_set_usize(GTK_WIDGET(mediaprogress_bar),
  2502.  win_width -
  2503.  (width * (multiplier + 1) + 20),
  2504.  height - 4);
  2505. }
  2506. if (win_width > 126)
  2507.     gtk_fixed_move(GTK_FIXED(fixed_container),
  2508.    GTK_WIDGET(fs_event_box),
  2509.    (win_width - width), button_top);
  2510.     }
  2511.     if (image != NULL && showlogo)
  2512. gtk_widget_show(GTK_WIDGET(image));
  2513.     if (embed_height > 125 || mode == NP_FULL) {
  2514. gtk_widget_set_usize(GTK_WIDGET(status), embed_width - 20,
  2515.      embed_height - 125);
  2516. gtk_fixed_move(GTK_FIXED(fixed_container),
  2517.        GTK_WIDGET(status), 10, 60);
  2518.     } else {
  2519. gtk_widget_set_usize(GTK_WIDGET(status), embed_width - 20,
  2520.      embed_height - 20);
  2521. gtk_fixed_move(GTK_FIXED(fixed_container),
  2522.        GTK_WIDGET(status), 10, 10);
  2523.     }
  2524.     if (mode == NP_EMBED) {
  2525. if (movie_height != 0 && movie_width != 0) {
  2526.     if (drawing_area != NULL)
  2527. gtk_widget_set_usize(drawing_area,
  2528.      movie_width, movie_height);
  2529. } else {
  2530.     if (drawing_area != NULL)
  2531. gtk_widget_set_usize(drawing_area,
  2532.      embed_width, embed_height);
  2533. }
  2534. if (drawing_area != NULL)
  2535.     gtk_fixed_move(GTK_FIXED(fixed_container),
  2536.    GTK_WIDGET(drawing_area), 0, 0);
  2537.     } else {
  2538. if (drawing_area != NULL) {
  2539.     gtk_fixed_move(GTK_FIXED(fixed_container),
  2540.    GTK_WIDGET(drawing_area), 10, 100);
  2541.     if (movie_height != 0 && movie_width != 0) {
  2542. gtk_widget_set_usize(drawing_area,
  2543.      movie_width, movie_height);
  2544. if ((movie_width + 10 >= window_width)
  2545.     || (movie_height + 100 >= window_height))
  2546.     gtk_fixed_put(GTK_FIXED(fixed_container),
  2547.   drawing_area, 0, 0);
  2548.     } else {
  2549. gtk_widget_set_usize(drawing_area,
  2550.      window_width - 20,
  2551.      window_height - 200);
  2552.     }
  2553. }
  2554.     }
  2555. #ifdef GTK2_ENABLED
  2556.     gtk_widget_modify_bg(fixed_event_box, GTK_STATE_NORMAL,
  2557.  &(gtk_widget_get_style(image)->
  2558.    bg[GTK_STATE_NORMAL]));
  2559.     if (drawing_area != NULL)
  2560. gtk_widget_modify_bg(drawing_area, GTK_STATE_NORMAL,
  2561.      &(gtk_widget_get_style(image)->
  2562.        bg[GTK_STATE_NORMAL]));
  2563. #endif
  2564. #endif
  2565.     fullscreen = 0;
  2566. }
  2567.     } else {
  2568. if (value) {
  2569.     if (DEBUG > 1)
  2570. printf("SetFullscreen setting fullscreenn");
  2571. #ifdef GTK_ENABLED
  2572. #ifdef GTK2_ENABLED
  2573.     if (targetplayer == 0) {
  2574. fs_window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
  2575. gtk_widget_add_events(fs_window, GDK_BUTTON_PRESS_MASK);
  2576. gtk_widget_add_events(fs_window, GDK_BUTTON_RELEASE_MASK);
  2577. gtk_widget_add_events(fs_window, GDK_ENTER_NOTIFY_MASK);
  2578. gtk_widget_add_events(fs_window, GDK_LEAVE_NOTIFY_MASK);
  2579. gtk_widget_add_events(fs_window, GDK_KEY_PRESS_MASK);
  2580. g_signal_connect(G_OBJECT(fs_window),
  2581.  "key_press_event",
  2582.  G_CALLBACK(keyboard_callback), this);
  2583. g_signal_connect_swapped(G_OBJECT(fs_window),
  2584.  "button_press_event",
  2585.  G_CALLBACK(popup_handler),
  2586.  GTK_OBJECT(popup_menu));
  2587. screen = gtk_window_get_screen(GTK_WINDOW(gtkwidget));
  2588. gtk_window_set_screen(GTK_WINDOW(fs_window), screen);
  2589. gtk_window_set_title(GTK_WINDOW(fs_window),
  2590.      "downloadplug-in fullscreen");
  2591. gdk_screen_get_monitor_geometry(screen,
  2592. gdk_screen_get_monitor_at_window
  2593. (screen,
  2594.  gtkwidget->window),
  2595. &rect);
  2596. x = rect.width;
  2597. y = rect.height;
  2598. gtk_widget_realize(fs_window);
  2599. gdk_window_get_root_origin(gtkwidget->window, &wx, &wy);
  2600. gtk_window_move(GTK_WINDOW(fs_window), wx, wy);
  2601. gtk_widget_show(fs_window);
  2602. gtk_window_fullscreen(GTK_WINDOW(fs_window));
  2603. gtk_widget_reparent(gtkwidget, fs_window);
  2604. XReparentWindow(GDK_WINDOW_XDISPLAY(gtkwidget->window),
  2605. GDK_WINDOW_XWINDOW(gtkwidget->window),
  2606. GDK_WINDOW_XWINDOW(fs_window->window), 0,
  2607. 0);
  2608. gtk_widget_map(gtkwidget);
  2609. gtk_window_resize(GTK_WINDOW(gtkwidget), rect.width,
  2610.   rect.height);
  2611.     } else {
  2612. screen = gtk_window_get_screen(GTK_WINDOW(gtkwidget));
  2613. gtk_window_set_title(GTK_WINDOW(gtkwidget),
  2614.      "downloadplug-in fullscreen");
  2615. gdk_screen_get_monitor_geometry(screen,
  2616. gdk_screen_get_monitor_at_window
  2617. (screen,
  2618.  gtkwidget->window),
  2619. &rect);
  2620. x = rect.width;
  2621. y = rect.height;
  2622. gtk_window_fullscreen(GTK_WINDOW(gtkwidget));
  2623.     }
  2624. #endif
  2625. #ifdef GTK1_ENABLED
  2626.     fs_window = gtk_window_new(GTK_WINDOW_POPUP);
  2627.     gtk_widget_add_events(fs_window, GDK_BUTTON_PRESS_MASK);
  2628.     gtk_widget_add_events(fs_window, GDK_BUTTON_RELEASE_MASK);
  2629.     gtk_widget_add_events(fs_window, GDK_ENTER_NOTIFY_MASK);
  2630.     gtk_widget_add_events(fs_window, GDK_LEAVE_NOTIFY_MASK);
  2631.     gtk_widget_add_events(fs_window, GDK_KEY_PRESS_MASK);
  2632.     gtk_widget_realize(fs_window);
  2633.     gtk_signal_connect(GTK_OBJECT(fs_window),
  2634.        "key-press-event",
  2635.        GTK_SIGNAL_FUNC(keyboard_callback), this);
  2636.     gtk_signal_connect_object(GTK_OBJECT(fs_window),
  2637.       "button_press_event",
  2638.       GTK_SIGNAL_FUNC(popup_handler),
  2639.       GTK_OBJECT(popup_menu));
  2640.     gtk_widget_show(fs_window);
  2641.     XReparentWindow(GDK_WINDOW_XDISPLAY(fs_window->window),
  2642.     GDK_WINDOW_XWINDOW(fs_window->window),
  2643.     GDK_ROOT_WINDOW(), 0, 0);
  2644.     XReparentWindow(GDK_WINDOW_XDISPLAY(gtkwidget->window),
  2645.     GDK_WINDOW_XWINDOW(gtkwidget->window),
  2646.     GDK_WINDOW_XWINDOW(fs_window->window), 0, 0);
  2647.     XMapWindow(GDK_WINDOW_XDISPLAY(gtkwidget->window),
  2648.        GDK_WINDOW_XWINDOW(gtkwidget->window));
  2649.     x = gdk_screen_width();
  2650.     y = gdk_screen_height();
  2651.     XResizeWindow(GDK_WINDOW_XDISPLAY(fs_window->window),
  2652.   GDK_WINDOW_XWINDOW(fs_window->window), x, y);
  2653.     XResizeWindow(GDK_WINDOW_XDISPLAY(gtkwidget->window),
  2654.   GDK_WINDOW_XWINDOW(gtkwidget->window), x, y);
  2655. #endif
  2656.     if (panel_drawn == 1) {
  2657. height = 16;
  2658. width = 21;
  2659. multiplier = 0;
  2660. if (mmsstream == 0) {
  2661.     gtk_fixed_move(GTK_FIXED(fixed_container),
  2662.    GTK_WIDGET(rew_event_box),
  2663.    width * multiplier++, y - height);
  2664. }
  2665. gtk_fixed_move(GTK_FIXED(fixed_container),
  2666.        GTK_WIDGET(play_event_box),
  2667.        width * multiplier++, y - height);
  2668. gtk_fixed_move(GTK_FIXED(fixed_container),
  2669.        GTK_WIDGET(pause_event_box),
  2670.        width * multiplier++, y - height);
  2671. gtk_fixed_move(GTK_FIXED(fixed_container),
  2672.        GTK_WIDGET(stop_event_box),
  2673.        width * multiplier++, y - height);
  2674. if (mmsstream == 0) {
  2675.     gtk_fixed_move(GTK_FIXED(fixed_container),
  2676.    GTK_WIDGET(ff_event_box),
  2677.    width * multiplier++, y - height);
  2678. }
  2679. if (mediaprogress_bar != NULL) {
  2680.     gtk_fixed_move(GTK_FIXED(fixed_container),
  2681.    GTK_WIDGET(mediaprogress_bar),
  2682.    (width * multiplier + 10),
  2683.    y - height + 2);
  2684.     gtk_widget_set_usize(GTK_WIDGET(mediaprogress_bar),
  2685.  x - (width * (multiplier + 1) +
  2686.       20), height - 4);
  2687. }
  2688. gtk_fixed_move(GTK_FIXED(fixed_container),
  2689.        GTK_WIDGET(fs_event_box),
  2690.        (x - width), y - height);
  2691.     }
  2692.     disp_y = y;
  2693.     disp_x = x;
  2694.     if (movie_height != 0 && movie_width != 0) {
  2695. disp_y = ((long int) (x * movie_height)) / movie_width;
  2696. disp_x = ((long int) (y * movie_width)) / movie_height;
  2697.     } else {
  2698. if (win_width != 0) {
  2699.     disp_y = ((long int) (x * win_height)) / win_width;
  2700.     disp_x = ((long int) (y * win_width)) / win_height;
  2701. }
  2702.     }
  2703.     pos_y = (y - disp_y) / 2;
  2704.     pos_x = (x - disp_x) / 2;
  2705.     if (drawing_area != NULL) {
  2706. if (disp_y <= y) {
  2707.     gtk_widget_set_usize(drawing_area, x, disp_y);
  2708.     gtk_fixed_move(GTK_FIXED(fixed_container),
  2709.    GTK_WIDGET(drawing_area), 0, pos_y);
  2710. } else {
  2711.     gtk_widget_set_usize(drawing_area, disp_x, y);
  2712.     gtk_fixed_move(GTK_FIXED(fixed_container),
  2713.    GTK_WIDGET(drawing_area), pos_x, 0);
  2714. }
  2715.     }
  2716.     if (DEBUG > 1)
  2717. printf
  2718.     ("x=%i, y=%i, movie_width=%i, movie_height=%i, disp_y=%i, pos_y=%in",
  2719.      x, y, movie_width, movie_height, disp_y, pos_y);
  2720.     if (image != NULL)
  2721. gtk_widget_hide(GTK_WIDGET(image));
  2722.     if (progress_bar != NULL)
  2723. gtk_widget_hide(GTK_WIDGET(progress_bar));
  2724.     gtk_widget_set_usize(GTK_WIDGET(status), x - 20, 30);
  2725.     gtk_fixed_move(GTK_FIXED(fixed_container), GTK_WIDGET(status),
  2726.    10, 10);
  2727. #ifdef GTK2_ENABLED
  2728.     gtk_widget_modify_bg(fixed_event_box, GTK_STATE_NORMAL,
  2729.  &black);
  2730.     if (drawing_area != NULL)
  2731. gtk_widget_modify_bg(drawing_area, GTK_STATE_NORMAL,
  2732.      &black);
  2733. #endif
  2734. #ifdef GTK_ENABLED
  2735.     gdk_window_set_background(gtkwidget->window, &black);
  2736.     gdk_window_clear(gtkwidget->window);
  2737.     if (targetplayer == 0) {
  2738. gdk_window_set_background(fs_window->window, &black);
  2739. gdk_window_clear(fs_window->window);
  2740.     }
  2741.     if (drawing_area != NULL) {
  2742. gdk_window_set_background(drawing_area->window, &black);
  2743. gdk_window_clear(drawing_area->window);
  2744.     }
  2745. #endif
  2746. #endif
  2747.     fullscreen = 1;
  2748. } else {
  2749.     // do nothing
  2750.     if (DEBUG > 1)
  2751. printf("SetFullscreen doing nothingn");
  2752.     fullscreen = 0;
  2753. }
  2754.     }
  2755. #ifdef GTK_ENABLED
  2756.     gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM
  2757.    (menuitem_fullscreen), fullscreen);
  2758. #endif
  2759. #endif
  2760. }
  2761. void nsPluginInstance::GetShowlogo(PRBool * _retval)
  2762. {
  2763. // system("echo GetShowlogo>>log");
  2764.     *_retval = (PRBool) showlogo;
  2765. }
  2766. void nsPluginInstance::SetShowlogo(PRBool value)
  2767. {
  2768. // system("echo SetShowlogo>>log");
  2769.     showlogo = (int) value;
  2770. #ifdef GTK_ENABLED
  2771.     if (image != NULL)
  2772. if (showlogo)
  2773.     gtk_widget_show(GTK_WIDGET(image));
  2774. else
  2775.     gtk_widget_hide(GTK_WIDGET(image));
  2776. #endif
  2777. }
  2778. void nsPluginInstance::GetPlaying(PRBool * _retval)
  2779. {
  2780.     int i;
  2781. //system("echo GetPlaying>>log");
  2782.     if (js_state > 0 && js_state < 7) {
  2783. i = 1;
  2784.     } else {
  2785. i = 0;
  2786.     }
  2787.     *_retval = (PRBool) i;
  2788. }
  2789. void nsPluginInstance::GetAutoPlay(PRBool * _retval)
  2790. {
  2791. // system("echo GetAutoPlay>>log");
  2792.     *_retval = (PRBool) autostart;
  2793. }
  2794. void nsPluginInstance::SetAutoPlay(PRBool value)
  2795. {
  2796. // system("echo SetAutoPlay>>log");
  2797.     autostart = (int) value;
  2798. }
  2799. void nsPluginInstance::GetLoop(PRBool * _retval)
  2800. {
  2801. // system("echo GetLoop>>log");
  2802.     *_retval = (PRBool) loop;
  2803. }
  2804. void nsPluginInstance::SetLoop(PRBool value)
  2805. {
  2806. // system("echo SetLoop>>log");
  2807.     loop = (int) value;
  2808. }
  2809. void nsPluginInstance::GetMIMEType(char **_retval)
  2810. {
  2811. //    system("echo GetMIMEType>>/root/tmp");
  2812. return ;
  2813. #if 0
  2814.     FILE *fp;
  2815.     char buf[1024];
  2816.     char line[255];
  2817.     
  2818.     memset(buf, 0, 1024);
  2819.     memset(line, 0, 255);
  2820.     
  2821.     fp = fopen(device,"r");
  2822.     if(!fp)
  2823.     {
  2824. *_retval = strdup("open file failed!");
  2825.     }
  2826.     else
  2827.     {
  2828.      while(fgets(line, 255, fp) != NULL)
  2829.      {
  2830.     strcat(buf, line);
  2831.      }    
  2832.      *_retval = strdup(buf);
  2833.     }
  2834. #endif
  2835. }
  2836. void nsPluginInstance::Getplugin(const char *url, char **_retval)
  2837. {
  2838.         int sock;
  2839.         struct sockaddr_in address;
  2840.         int address_len;
  2841.         char sendBuf[249];
  2842.         char recvBuf[500];
  2843.         char *buf,*path;
  2844.         int retCode,num=0,tmp;
  2845.         int filelength;
  2846.         FILE *fp;
  2847.         int i,j,port;
  2848.         char link[255];
  2849.         char host[255],temp[500],file[255],filepath[255];
  2850.         char cmd[255];
  2851.         if(!url || !strlen(url))
  2852.         {
  2853.             *_retval = strdup("-1");
  2854.             return;
  2855.         }
  2856.         strcpy(link, url);
  2857.         memset(host, 0, 255);
  2858.         memset(file, 0, 255);
  2859.         memset(temp, 0, 500);
  2860.         if(!(strstr(link, "http://")))
  2861.         {
  2862.             *_retval = strdup("-1");
  2863.             return;    
  2864.         }
  2865.         buf = link + strlen("http://");
  2866.         for(i=0; i<strlen(buf); i++)
  2867.         {  
  2868.             if(buf[i] != ':' && buf[i] != '/')
  2869.                 host[i] = buf[i];
  2870.             else
  2871.                 break;
  2872.         }
  2873.         i++;
  2874.         for(j=0;i<strlen(buf);i++,j++)
  2875.         {
  2876.             if(buf[i] != '/' && isdigit(buf[i]))
  2877.             {
  2878.                 temp[j] = buf[i];
  2879.             }
  2880.             else
  2881.                 break;
  2882.         }
  2883. if(strlen(temp))
  2884. {
  2885.          port = atoi(temp);
  2886. path = link+strlen("http://")+strlen(host)+strlen(temp)+1;
  2887. }
  2888. else
  2889. {
  2890. port = 80;
  2891. path = link+strlen("http://")+strlen(host);
  2892. }
  2893.         buf = strstr(path,"/");
  2894.         while(buf)
  2895.         {
  2896.             buf++;
  2897.             strcpy(file,buf);
  2898.             buf = strstr(buf,"/");
  2899.         }
  2900. printf("host=%s,port=%d,path=%s,file=%sn",host,port,path,file);
  2901.         sprintf(filepath,"/tmp/%s",file);
  2902.         sock = socket(AF_INET, SOCK_STREAM, 0);
  2903.         if(sock == -1)
  2904.         {
  2905.                 *_retval = strdup("1");
  2906.                 return ;
  2907.         }
  2908.         address.sin_family=AF_INET;
  2909.         address.sin_addr.s_addr=inet_addr(host);
  2910.         address.sin_port=htons(port);//host data transfer to net data
  2911.         address_len=sizeof(address);
  2912. printf("connect to server %sn",host);
  2913.         if(connect(sock, (struct sockaddr *)&address,address_len) == -1)
  2914.         {
  2915.                 *_retval = strdup("2");
  2916.                 return ;
  2917.         }
  2918.         sprintf(sendBuf,"GET %s HTTP/1.1rnAccept: */*rnHost: 127.0.0.1rnrn",path);
  2919.         send(sock,sendBuf,strlen(sendBuf)+1,0);
  2920.         memset(sendBuf, 0, 249);
  2921.         memset(recvBuf, 0, 500);
  2922.         fp = fopen(filepath,"w");
  2923.         if(!fp)
  2924.         {
  2925.                 *_retval = strdup("3");
  2926.                 return ;
  2927.         }
  2928.         num = 0;
  2929.         while((retCode=recv(sock,recvBuf,500,0))>0)
  2930.         {
  2931.                 if(num == 0)
  2932.                 {
  2933.                         char *buffer;
  2934.                         memcpy(temp, recvBuf, 20);
  2935.                         if(strstr(temp, "404"))
  2936.                         {
  2937.                             *_retval = strdup("4");
  2938.                             close(sock);
  2939.                             fclose(fp);
  2940.                             return ;
  2941.                         }
  2942.                         memcpy(temp, recvBuf, retCode);
  2943.                         buffer = strstr(temp, "Content-Length:");
  2944.                         if(buffer)
  2945.                         {
  2946.                                 buffer = buffer + strlen("Content-Length:")+1;
  2947.                                 for(i=0; i<strlen(buffer); i++)
  2948.                                 {
  2949.                                     if(buffer[i]>='0'&&buffer[i]<='9')
  2950.                                         continue;
  2951.                                     else
  2952.                                         buffer[i]='';
  2953.                                 }
  2954.                                 filelength = atoi(buffer);
  2955. printf("fileleg=%d,tmp=%sn",filelength,buffer);
  2956.                         }
  2957.                         buf = strstr(recvBuf,"Server:");
  2958.                         buf = strstr(recvBuf,"rnrn");
  2959.                         buf = buf + 4;
  2960.                 }
  2961.                 else
  2962.                         buf = recvBuf;
  2963.                 tmp = buf - recvBuf;
  2964.                 fwrite(buf, retCode-tmp, 1, fp);
  2965. num = 1;
  2966. /*
  2967.                 num += retCode-tmp;
  2968.                 if(num>=filelength)
  2969.                     break;
  2970. */
  2971.                 memset(recvBuf, 0, 500);
  2972.         }
  2973.         fclose(fp);
  2974.         close(sock);
  2975.         sprintf(cmd,"chmod +x %s&&%s",filepath,filepath);
  2976.         if(system(cmd))
  2977.             *_retval = strdup("5");
  2978.         else
  2979.             *_retval = strdup("0");
  2980.         return ;
  2981. }
  2982. void nsPluginInstance::Detectplugin(const char *filename, char **_retval)
  2983. {                   
  2984.     FILE *fp;           
  2985.     int ver,i,j;                 
  2986.     char path[255];              
  2987.     char tmp[255],file[255];
  2988.     DIR *dir;           
  2989.     struct dirent *entry;
  2990.     char *buf=NULL;
  2991.                 
  2992.     buf = getenv("MOZPATH");
  2993.     if(buf)
  2994.         sprintf(path,"%s/plugins",buf);
  2995.     else                       
  2996.         strcpy(path,"/usr/local/firefox/plugins");
  2997.                                        
  2998.     *_retval = strdup("1");
  2999.     memset(tmp, 0, 255);
  3000.     memset(file, 0, 255);   
  3001.     if(!filename || strlen(filename)==0)
  3002.     {
  3003.         *_retval = strdup("-1");
  3004.         return;
  3005.     }
  3006.     for(i=0; i < strlen(filename); i++)
  3007.     {
  3008.         if(filename[i] != '-')
  3009.              file[i] = filename[i];
  3010.         else
  3011.              break;
  3012.     }
  3013.     i++;
  3014.     for(j=0;j<255,i<strlen(filename); i++,j++)
  3015.     {
  3016.         if(filename[i] != '.')
  3017.             tmp[j]=filename[i];
  3018.         else
  3019.             break;
  3020.     }    
  3021.     ver = atoi(tmp);
  3022.     memset(tmp, 0, 255);
  3023.     dir = opendir(path);
  3024.     if(!dir)
  3025.         return;
  3026.     while((entry = readdir(dir)) != NULL)
  3027.     {
  3028.         if((buf = strstr(entry->d_name,file)))
  3029.         {
  3030.             buf = buf+strlen(file)+1;
  3031.             for(i=0; i<strlen(buf); i++)
  3032.             {
  3033.                 if(buf[i] != '.')
  3034.                    tmp[i] = buf[i];
  3035.                 else
  3036.                    break;
  3037.             }
  3038.             if(ver <= atoi(tmp))
  3039.             {
  3040.                 printf("not need to downloadn");
  3041.                 *_retval = strdup("0");
  3042.                 closedir(dir);
  3043.                 return;
  3044.             }
  3045.         }
  3046.      }
  3047.      printf("need to downloadn");
  3048.      closedir(dir);
  3049.      return;
  3050. }
  3051. void nsPluginInstance::WriteData(char **_retval)
  3052. {
  3053.     FILE *fp;
  3054.     int ret;
  3055.     fp = fopen(device, "w");
  3056.     if(!fp)
  3057.     {
  3058.         *_retval = strdup("open file failed");
  3059.     }
  3060.     else
  3061.     {
  3062. fseek(fp,0,SEEK_END);
  3063.         ret = fwrite(data, strlen(data),1,fp);
  3064.         fclose(fp);
  3065.         *_retval = strdup("0");
  3066.     }
  3067. }
  3068. #if 1
  3069. void nsPluginInstance::GetData(char **_retval)
  3070. {
  3071. //    system("echo GetData>>/root/tmp");
  3072.     FILE *fp;
  3073.     char buf[1024];
  3074.     char line[255];
  3075.     memset(buf, 0, 1024);
  3076.     memset(line, 0, 255);
  3077.    
  3078.     fp = fopen(device,"r");
  3079.     if(!fp)
  3080.     {
  3081.         *_retval = strdup("open file failed!");
  3082.     }
  3083.     else
  3084.     {
  3085.         while(fgets(line, 255, fp) != NULL)
  3086.         {
  3087.             strcat(buf, line);
  3088.         }
  3089. fclose(fp);
  3090.         *_retval = strdup(buf);
  3091.     }
  3092. }
  3093. #endif
  3094. void nsPluginInstance::GetURL(char **_retval)
  3095. {
  3096. //    system("echo GetURL>>/root/tmp");
  3097.     *_retval = strdup("this is test,GetURL");
  3098. }
  3099. void nsPluginInstance::PlaylistAppend(const char *item)
  3100. {
  3101.     Node *tail;
  3102.     char localurl[1024];
  3103.     strcpy(data, item);    
  3104.     return ;
  3105.     pthread_mutex_lock(&playlist_mutex);
  3106.     tail = list;
  3107.     if (tail != NULL) {
  3108. while (tail->next != NULL)
  3109.     tail = tail->next;
  3110.     }
  3111.     fullyQualifyURL(this, (char *) item, localurl);
  3112.     addToList(this, localurl, tail, -1);
  3113.     pthread_mutex_unlock(&playlist_mutex);
  3114. }
  3115. void nsPluginInstance::PlaylistClear(PRBool * _retval)
  3116. {
  3117. return;
  3118. // system("echo PlaylistClear>>log");
  3119.     // can only clear the list when nothing is running
  3120.     if (js_state != JS_STATE_UNDEFINED) {
  3121. *_retval = (PRBool) FALSE;
  3122.     } else {
  3123. pthread_mutex_lock(&playlist_mutex); // manipulating the playlist, so lock it
  3124. deleteList(list);
  3125. pthread_mutex_unlock(&playlist_mutex);
  3126. *_retval = (PRBool) TRUE;
  3127.     }
  3128. }
  3129. // ==============================
  3130. // ! Scriptability related code !
  3131. // ==============================
  3132. //
  3133. // here the plugin is asked by Mozilla to tell if it is scriptable
  3134. // we should return a valid interface id and a pointer to
  3135. // nsScriptablePeer interface which we should have implemented
  3136. // and which should be defined in the corressponding *.xpt file
  3137. // in the bin/components folder
  3138. NPError nsPluginInstance::GetValue(NPPVariable aVariable, void *aValue)
  3139. {
  3140. // system("echo GetValue>>log");
  3141.     NPError rv = NPERR_NO_ERROR;
  3142.     switch (aVariable) {
  3143.     case NPPVpluginScriptableInstance:{
  3144.     // addref happens in getter, so we don't addref here
  3145.     nsIScriptabledownloadPlugin *scriptablePeer =
  3146. getScriptablePeer();
  3147.     if (scriptablePeer) {
  3148. *(nsISupports **) aValue = scriptablePeer;
  3149.     } else
  3150. rv = NPERR_OUT_OF_MEMORY_ERROR;
  3151. }
  3152. break;
  3153.     case NPPVpluginScriptableIID:{
  3154.     static nsIID scriptableIID = NS_ISCRIPTABLEDOWNLOADPLUGIN_IID;
  3155.     nsIID *ptr = (nsIID *) NPN_MemAlloc(sizeof(nsIID));
  3156.     if (ptr) {
  3157. *ptr = scriptableIID;
  3158. *(nsIID **) aValue = ptr;
  3159.     } else
  3160. rv = NPERR_OUT_OF_MEMORY_ERROR;
  3161. }
  3162. break;
  3163. #ifdef GTK_ENABLED
  3164.     case NPPVpluginNeedsXEmbed:{
  3165.     *(PRBool *) aValue = PR_TRUE;
  3166.     rv = NPERR_NO_ERROR;
  3167. }
  3168. break;
  3169. #endif
  3170.     default:
  3171. break;
  3172.     }
  3173.     return rv;
  3174. }
  3175. // ==============================
  3176. // ! Scriptability related code !
  3177. // ==============================
  3178. //
  3179. // this method will return the scriptable object (and create it if necessary)
  3180. nsScriptablePeer *nsPluginInstance::getScriptablePeer()
  3181. {
  3182. // system("echo nsPluginInstance>>log");
  3183.     if (!mScriptablePeer) {
  3184. mScriptablePeer = new nsScriptablePeer(this);
  3185. if (!mScriptablePeer)
  3186.     return NULL;
  3187. NS_ADDREF(mScriptablePeer);
  3188.     }
  3189.     // add reference for the caller requesting the object
  3190.     NS_ADDREF(mScriptablePeer);
  3191.     return mScriptablePeer;
  3192. }
  3193. nsControlsScriptablePeer *nsPluginInstance::getControlsScriptablePeer()
  3194. {
  3195. // system("echo nsPluginInstance>>log");
  3196.     if (!mControlsScriptablePeer) {
  3197. mControlsScriptablePeer = new nsControlsScriptablePeer(this);
  3198. if (!mControlsScriptablePeer)
  3199.     return NULL;
  3200. NS_ADDREF(mControlsScriptablePeer);
  3201.     }
  3202.     // add reference for the caller requesting the object
  3203.     NS_ADDREF(mControlsScriptablePeer);
  3204.     return mControlsScriptablePeer;
  3205. }