]> git.sesse.net Git - vlc/blob - projects/mozilla/vlcplugin.cpp
Don't use deprecated and removed API in Mozilla plugin.
[vlc] / projects / mozilla / vlcplugin.cpp
1 /*****************************************************************************
2  * vlcplugin.cpp: a VLC plugin for Mozilla
3  *****************************************************************************
4  * Copyright (C) 2002-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *          Damien Fouilleul <damienf.fouilleul@laposte.net>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include "config.h"
29
30 #ifdef HAVE_MOZILLA_CONFIG_H
31 #   include <mozilla-config.h>
32 #endif
33
34 #include "vlcplugin.h"
35 #include "control/npovlc.h"
36 #include "control/npolibvlc.h"
37
38 #include <ctype.h>
39
40 /*****************************************************************************
41  * VlcPlugin constructor and destructor
42  *****************************************************************************/
43 VlcPlugin::VlcPlugin( NPP instance, uint16 mode ) :
44     i_npmode(mode),
45     b_stream(0),
46     b_autoplay(1),
47     b_toolbar(0),
48     psz_target(NULL),
49     libvlc_instance(NULL),
50     libvlc_log(NULL),
51     p_scriptClass(NULL),
52     p_browser(instance),
53     psz_baseURL(NULL)
54 #if XP_WIN
55     ,pf_wndproc(NULL)
56 #endif
57 #if XP_UNIX
58     ,i_width((unsigned)-1)
59     ,i_height((unsigned)-1)
60     ,i_tb_width(0)
61     ,i_tb_height(0)
62     ,i_last_position(0)
63 #endif
64 {
65     memset(&npwindow, 0, sizeof(NPWindow));
66 }
67
68 static bool boolValue(const char *value) {
69     return ( !strcmp(value, "1") ||
70              !strcasecmp(value, "true") ||
71              !strcasecmp(value, "yes") );
72 }
73
74 NPError VlcPlugin::init(int argc, char* const argn[], char* const argv[])
75 {
76     /* prepare VLC command line */
77     char *ppsz_argv[32];
78     int ppsz_argc = 0;
79
80     /* locate VLC module path */
81 #ifdef XP_MACOSX
82     ppsz_argv[ppsz_argc++] = "--plugin-path";
83     ppsz_argv[ppsz_argc++] = "/Library/Internet Plug-Ins/VLC Plugin.plugin/"
84                              "Contents/MacOS/modules";
85 #elif defined(XP_WIN)
86     HKEY h_key;
87     DWORD i_type, i_data = MAX_PATH + 1;
88     char p_data[MAX_PATH + 1];
89     if( RegOpenKeyEx( HKEY_LOCAL_MACHINE, "Software\\VideoLAN\\VLC",
90                       0, KEY_READ, &h_key ) == ERROR_SUCCESS )
91     {
92          if( RegQueryValueEx( h_key, "InstallDir", 0, &i_type,
93                               (LPBYTE)p_data, &i_data ) == ERROR_SUCCESS )
94          {
95              if( i_type == REG_SZ )
96              {
97                  strcat( p_data, "\\plugins" );
98                  ppsz_argv[ppsz_argc++] = "--plugin-path";
99                  ppsz_argv[ppsz_argc++] = p_data;
100              }
101          }
102          RegCloseKey( h_key );
103     }
104     ppsz_argv[ppsz_argc++] = "--no-one-instance";
105
106 #endif /* XP_MACOSX */
107
108     /* common settings */
109     ppsz_argv[ppsz_argc++] = "-vv";
110     ppsz_argv[ppsz_argc++] = "--no-stats";
111     ppsz_argv[ppsz_argc++] = "--no-media-library";
112     ppsz_argv[ppsz_argc++] = "--ignore-config";
113     ppsz_argv[ppsz_argc++] = "--intf";
114     ppsz_argv[ppsz_argc++] = "dummy";
115
116     const char *progid = NULL;
117
118     /* parse plugin arguments */
119     for( int i = 0; i < argc ; i++ )
120     {
121         fprintf(stderr, "argn=%s, argv=%s\n", argn[i], argv[i]);
122
123         if( !strcmp( argn[i], "target" )
124          || !strcmp( argn[i], "mrl")
125          || !strcmp( argn[i], "filename")
126          || !strcmp( argn[i], "src") )
127         {
128             psz_target = argv[i];
129         }
130         else if( !strcmp( argn[i], "autoplay")
131               || !strcmp( argn[i], "autostart") )
132         {
133             b_autoplay = boolValue(argv[i]);
134         }
135         else if( !strcmp( argn[i], "fullscreen" ) )
136         {
137             if( boolValue(argv[i]) )
138             {
139                 ppsz_argv[ppsz_argc++] = "--fullscreen";
140             }
141             else
142             {
143                 ppsz_argv[ppsz_argc++] = "--no-fullscreen";
144             }
145         }
146         else if( !strcmp( argn[i], "mute" ) )
147         {
148             if( boolValue(argv[i]) )
149             {
150                 ppsz_argv[ppsz_argc++] = "--volume";
151                 ppsz_argv[ppsz_argc++] = "0";
152             }
153         }
154         else if( !strcmp( argn[i], "loop")
155               || !strcmp( argn[i], "autoloop") )
156         {
157             if( boolValue(argv[i]) )
158             {
159                 ppsz_argv[ppsz_argc++] = "--loop";
160             }
161             else {
162                 ppsz_argv[ppsz_argc++] = "--no-loop";
163             }
164         }
165         else if( !strcmp( argn[i], "version")
166               || !strcmp( argn[i], "progid") )
167         {
168             progid = argv[i];
169         }
170         else if( !strcmp( argn[i], "toolbar" ) )
171         {
172             b_toolbar = boolValue(argv[i]);
173         }
174     }
175
176
177     libvlc_exception_t ex;
178     libvlc_exception_init(&ex);
179
180     libvlc_instance = libvlc_new(ppsz_argc, ppsz_argv, &ex);
181     if( libvlc_exception_raised(&ex) )
182     {
183         libvlc_exception_clear(&ex);
184         return NPERR_GENERIC_ERROR;
185     }
186
187     /*
188     ** fetch plugin base URL, which is the URL of the page containing the plugin
189     ** this URL is used for making absolute URL from relative URL that may be
190     ** passed as an MRL argument
191     */
192     NPObject *plugin;
193
194     if( NPERR_NO_ERROR == NPN_GetValue(p_browser, NPNVWindowNPObject, &plugin) )
195     {
196         /*
197         ** is there a better way to get that info ?
198         */
199         static const char docLocHref[] = "document.location.href";
200         NPString script;
201         NPVariant result;
202
203         script.utf8characters = docLocHref;
204         script.utf8length = sizeof(docLocHref)-1;
205
206         if( NPN_Evaluate(p_browser, plugin, &script, &result) )
207         {
208             if( NPVARIANT_IS_STRING(result) )
209             {
210                 NPString &location = NPVARIANT_TO_STRING(result);
211
212                 psz_baseURL = new char[location.utf8length+1];
213                 if( psz_baseURL )
214                 {
215                     strncpy(psz_baseURL, location.utf8characters, location.utf8length);
216                     psz_baseURL[location.utf8length] = '\0';
217                 }
218             }
219             NPN_ReleaseVariantValue(&result);
220         }
221         NPN_ReleaseObject(plugin);
222     }
223
224     if( psz_target )
225     {
226         // get absolute URL from src
227         char *psz_absurl = getAbsoluteURL(psz_target);
228         psz_target = psz_absurl ? psz_absurl : strdup(psz_target);
229     }
230
231     /* assign plugin script root class */
232     /* new APIs */
233     p_scriptClass = RuntimeNPClass<LibvlcRootNPObject>::getClass();
234
235     return NPERR_NO_ERROR;
236 }
237
238 #if 0
239 #ifdef XP_WIN
240 /* This is really ugly but there is a deadlock when stopping a stream
241  * (in VLC_CleanUp()) because the video output is a child of the drawable but
242  * is in a different thread. */
243 static void HackStopVout( VlcPlugin* p_plugin )
244 {
245     MSG msg;
246     HWND hwnd;
247     vlc_value_t value;
248
249     int i_vlc = libvlc_get_vlc_id(p_plugin->libvlc_instance);
250     VLC_VariableGet( i_vlc, "drawable", &value );
251
252     hwnd = FindWindowEx( (HWND)value.i_int, 0, 0, 0 );
253     if( !hwnd ) return;
254
255     PostMessage( hwnd, WM_CLOSE, 0, 0 );
256
257     do
258     {
259         while( PeekMessage( &msg, (HWND)value.i_int, 0, 0, PM_REMOVE ) )
260         {
261             TranslateMessage(&msg);
262             DispatchMessage(&msg);
263         }
264         if( FindWindowEx( (HWND)value.i_int, 0, 0, 0 ) ) Sleep( 10 );
265     }
266     while( (hwnd = FindWindowEx( (HWND)value.i_int, 0, 0, 0 )) );
267 }
268 #endif /* XP_WIN */
269 #endif
270
271 VlcPlugin::~VlcPlugin()
272 {
273     delete psz_baseURL;
274     delete psz_target;
275     if( libvlc_log )
276         libvlc_log_close(libvlc_log, NULL);
277     if( libvlc_instance )
278         libvlc_release(libvlc_instance);
279 }
280
281 /*****************************************************************************
282  * VlcPlugin methods
283  *****************************************************************************/
284
285 char *VlcPlugin::getAbsoluteURL(const char *url)
286 {
287     if( NULL != url )
288     {
289         // check whether URL is already absolute
290         const char *end=strchr(url, ':');
291         if( (NULL != end) && (end != url) )
292         {
293             // validate protocol header
294             const char *start = url;
295             char c = *start;
296             if( isalpha(c) )
297             {
298                 ++start;
299                 while( start != end )
300                 {
301                     c  = *start;
302                     if( ! (isalnum(c)
303                        || ('-' == c)
304                        || ('+' == c)
305                        || ('.' == c)
306                        || ('/' == c)) ) /* VLC uses / to allow user to specify a demuxer */
307                         // not valid protocol header, assume relative URL
308                         goto relativeurl;
309                     ++start;
310                 }
311                 /* we have a protocol header, therefore URL is absolute */
312                 return strdup(url);
313             }
314             // not a valid protocol header, assume relative URL
315         }
316
317 relativeurl:
318
319         if( psz_baseURL )
320         {
321             size_t baseLen = strlen(psz_baseURL);
322             char *href = new char[baseLen+strlen(url)+1];
323             if( href )
324             {
325                 /* prepend base URL */
326                 strcpy(href, psz_baseURL);
327
328                 /*
329                 ** relative url could be empty,
330                 ** in which case return base URL
331                 */
332                 if( '\0' == *url )
333                     return href;
334
335                 /*
336                 ** locate pathname part of base URL
337                 */
338
339                 /* skip over protocol part  */
340                 char *pathstart = strchr(href, ':');
341                 char *pathend;
342                 if( pathstart )
343                 {
344                     if( '/' == *(++pathstart) )
345                     {
346                         if( '/' == *(++pathstart) )
347                         {
348                             ++pathstart;
349                         }
350                     }
351                     /* skip over host part */
352                     pathstart = strchr(pathstart, '/');
353                     pathend = href+baseLen;
354                     if( ! pathstart )
355                     {
356                         // no path, add a / past end of url (over '\0')
357                         pathstart = pathend;
358                         *pathstart = '/';
359                     }
360                 }
361                 else
362                 {
363                     /* baseURL is just a UNIX path */
364                     if( '/' != *href )
365                     {
366                         /* baseURL is not an absolute path */
367                         return NULL;
368                     }
369                     pathstart = href;
370                     pathend = href+baseLen;
371                 }
372
373                 /* relative URL made of an absolute path ? */
374                 if( '/' == *url )
375                 {
376                     /* replace path completely */
377                     strcpy(pathstart, url);
378                     return href;
379                 }
380
381                 /* find last path component and replace it */
382                 while( '/' != *pathend)
383                     --pathend;
384
385                 /*
386                 ** if relative url path starts with one or more '../',
387                 ** factor them out of href so that we return a
388                 ** normalized URL
389                 */
390                 while( pathend != pathstart )
391                 {
392                     const char *p = url;
393                     if( '.' != *p )
394                         break;
395                     ++p;
396                     if( '\0' == *p  )
397                     {
398                         /* relative url is just '.' */
399                         url = p;
400                         break;
401                     }
402                     if( '/' == *p  )
403                     {
404                         /* relative url starts with './' */
405                         url = ++p;
406                         continue;
407                     }
408                     if( '.' != *p )
409                         break;
410                     ++p;
411                     if( '\0' == *p )
412                     {
413                         /* relative url is '..' */
414                     }
415                     else
416                     {
417                         if( '/' != *p )
418                             break;
419                         /* relative url starts with '../' */
420                         ++p;
421                     }
422                     url = p;
423                     do
424                     {
425                         --pathend;
426                     }
427                     while( '/' != *pathend );
428                 }
429                 /* skip over '/' separator */
430                 ++pathend;
431                 /* concatenate remaining base URL and relative URL */
432                 strcpy(pathend, url);
433             }
434             return href;
435         }
436     }
437     return NULL;
438 }
439
440 #if XP_UNIX
441 int  VlcPlugin::setSize(unsigned width, unsigned height)
442 {
443     int diff = (width != i_width) || (height != i_height);
444
445     i_width = width;
446     i_height = height;
447
448     /* return size */
449     return diff;
450 }
451
452 void VlcPlugin::showToolbar()
453 {
454     const NPWindow& window = getWindow();
455     Window control = getControlWindow();
456     Display *p_display = ((NPSetWindowCallbackStruct *)window.ws_info)->display;
457     unsigned int i_height = 0, i_width = 0;
458
459     /* load icons */
460     XpmReadFileToImage( p_display, DATA_PATH "/mozilla/play.xpm",
461                         &p_btnPlay, NULL, NULL);
462     if( p_btnPlay )
463     {
464         i_height = __MAX( i_height, p_btnPlay->height );
465         i_width  = __MAX( i_width,  p_btnPlay->width );
466     }
467     XpmReadFileToImage( p_display, DATA_PATH "/mozilla/pause.xpm",
468                         &p_btnPause, NULL, NULL);
469     if( p_btnPause )
470     {
471         i_height = __MAX( i_height, p_btnPause->height );
472         i_width  = __MAX( i_width,  p_btnPause->width );
473     }
474     XpmReadFileToImage( p_display, DATA_PATH "/mozilla/stop.xpm",
475                         &p_btnStop, NULL, NULL );
476     if( p_btnStop )
477     {
478         i_height = __MAX( i_height, p_btnStop->height );
479         i_width  = __MAX( i_width,  p_btnStop->width );
480     }
481     XpmReadFileToImage( p_display, DATA_PATH "/mozilla/time_line.xpm",
482                         &p_timeline, NULL, NULL);
483     if( p_timeline )
484     {
485         i_height = __MAX( i_height, p_timeline->height );
486         i_width  = __MAX( i_width,  p_timeline->width );
487     }
488     XpmReadFileToImage( p_display, DATA_PATH "/mozilla/time_icon.xpm",
489                         &p_btnTime, NULL, NULL);
490     if( p_btnTime )
491     {
492         i_height = __MAX( i_height, p_btnTime->height );
493         i_width  = __MAX( i_width,  p_btnTime->width );
494     }
495     XpmReadFileToImage( p_display, DATA_PATH "/mozilla/fullscreen.xpm",
496                         &p_btnFullscreen, NULL, NULL);
497     if( p_btnFullscreen )
498     {
499         i_height = __MAX( i_height, p_btnFullscreen->height );
500         i_width  = __MAX( i_width,  p_btnFullscreen->width );
501     }
502     XpmReadFileToImage( p_display, DATA_PATH "/mozilla/volume_max.xpm",
503                         &p_btnMute, NULL, NULL);
504     if( p_btnMute )
505     {
506         i_height = __MAX( i_height, p_btnMute->height );
507         i_width  = __MAX( i_width,  p_btnMute->width );
508     }
509     XpmReadFileToImage( p_display, DATA_PATH "/mozilla/volume_mute.xpm",
510                         &p_btnUnmute, NULL, NULL);
511     if( p_btnUnmute )
512     {
513         i_height = __MAX( i_height, p_btnUnmute->height );
514         i_width  = __MAX( i_width,  p_btnUnmute->width );
515     }
516     setToolbarSize( i_width, i_height );
517
518     if( !p_btnPlay || !p_btnPause || !p_btnStop || !p_timeline ||
519         !p_btnTime || !p_btnFullscreen || !p_btnMute || !p_btnUnmute )
520         fprintf(stderr, "Error: some button images not found in %s\n", DATA_PATH );
521 }
522
523 void VlcPlugin::hideToolbar()
524 {
525     i_tb_width = i_tb_height = 0;
526
527     if( p_btnPlay )  XDestroyImage( p_btnPlay );
528     if( p_btnPause ) XDestroyImage( p_btnPause );
529     if( p_btnStop )  XDestroyImage( p_btnStop );
530     if( p_timeline ) XDestroyImage( p_timeline );
531     if( p_btnTime )  XDestroyImage( p_btnTime );
532     if( p_btnFullscreen ) XDestroyImage( p_btnFullscreen );
533     if( p_btnMute )  XDestroyImage( p_btnMute );
534     if( p_btnUnmute ) XDestroyImage( p_btnUnmute );
535
536     p_btnPlay = NULL;
537     p_btnPause = NULL;
538     p_btnStop = NULL;
539     p_timeline = NULL;
540     p_btnTime = NULL;
541     p_btnFullscreen = NULL;
542     p_btnMute = NULL;
543     p_btnUnmute = NULL;
544 }
545
546 void VlcPlugin::redrawToolbar()
547 {
548     libvlc_media_player_t *p_md = NULL;
549     libvlc_exception_t ex;
550     float f_position = 0.0;
551     int i_playing = 0;
552     bool b_mute = false;
553     unsigned int dst_x, dst_y;
554     GC gc;
555     XGCValues gcv;
556 #define BTN_SPACE ((unsigned int)4)
557
558     const NPWindow& window = getWindow();
559     Window control = getControlWindow();
560     Display *p_display = ((NPSetWindowCallbackStruct *)window.ws_info)->display;
561
562     /* get media instance */
563     libvlc_exception_init( &ex );
564     p_md = libvlc_playlist_get_media_player( getVLC(), &ex );
565     libvlc_exception_clear( &ex );
566
567     /* get isplaying */
568     libvlc_exception_init( &ex );
569     i_playing = libvlc_playlist_isplaying( getVLC(), &ex );
570     libvlc_exception_clear( &ex );
571
572     /* get mute info */
573     libvlc_exception_init(&ex);
574     b_mute = libvlc_audio_get_mute( getVLC(), &ex );
575     libvlc_exception_clear( &ex );
576
577     /* get movie position in % */
578     if( i_playing == 1 )
579     {
580         libvlc_exception_init( &ex );
581         f_position = libvlc_media_player_get_position( p_md, &ex ) * 100;
582         libvlc_exception_clear( &ex );
583     }
584     libvlc_media_player_release( p_md );
585
586     gcv.foreground = BlackPixel( p_display, 0 );
587     gc = XCreateGC( p_display, control, GCForeground, &gcv );
588
589     XFillRectangle( p_display, control, gc,
590                     0, 0, window.width, i_tb_height );
591     gcv.foreground = WhitePixel( p_display, 0 );
592     XChangeGC( p_display, gc, GCForeground, &gcv );
593
594     /* position icons */
595     dst_x = 4; dst_y = 4;
596
597     fprintf( stderr, ">>>>>> is playing = %d\n", i_playing );
598     if( p_btnPause && (i_playing == 1) )
599     {
600         XPutImage( p_display, control, gc, p_btnPause, 0, 0, dst_x, dst_y,
601                    p_btnPause->width, p_btnPause->height );
602     }
603     else if( p_btnPlay )
604     {
605         XPutImage( p_display, control, gc, p_btnPlay, 0, 0, dst_x, dst_y,
606                    p_btnPlay->width, p_btnPlay->height );
607     }
608
609     dst_x += BTN_SPACE + ( p_btnPlay ? p_btnPlay->width : 0 );
610     dst_y = 4;
611
612     if( p_btnStop )
613         XPutImage( p_display, control, gc, p_btnStop, 0, 0, dst_x, dst_y,
614                    p_btnStop->width, p_btnStop->height );
615
616     dst_x += BTN_SPACE + ( p_btnStop ? p_btnStop->width : 0 );
617     dst_y = 4;
618
619     if( p_btnFullscreen )
620         XPutImage( p_display, control, gc, p_btnFullscreen, 0, 0, dst_x, dst_y,
621                    p_btnFullscreen->width, p_btnFullscreen->height );
622
623     dst_x += BTN_SPACE + ( p_btnFullscreen ? p_btnFullscreen->width : 0 );
624     dst_y = 4;
625
626     if( p_btnUnmute && b_mute )
627     {
628         XPutImage( p_display, control, gc, p_btnUnmute, 0, 0, dst_x, dst_y,
629                    p_btnUnmute->width, p_btnUnmute->height );
630
631         dst_x += BTN_SPACE + ( p_btnUnmute ? p_btnUnmute->width : 0 );
632         dst_y = 4;
633     }
634     else if( p_btnMute )
635     {
636         XPutImage( p_display, control, gc, p_btnMute, 0, 0, dst_x, dst_y,
637                    p_btnMute->width, p_btnMute->height );
638
639         dst_x += BTN_SPACE + ( p_btnMute ? p_btnMute->width : 0 );
640         dst_y = 4;
641     }
642
643     if( p_timeline )
644         XPutImage( p_display, control, gc, p_timeline, 0, 0, dst_x, dst_y,
645                    (window.width-(dst_x+BTN_SPACE)), p_timeline->height );
646
647     if( f_position > 0 )
648         i_last_position = (((float)window.width-8.0)/100.0)*f_position;
649
650     if( p_btnTime )
651         XPutImage( p_display, control, gc, p_btnTime,
652                    0, 0, (dst_x+i_last_position), dst_y,
653                    p_btnTime->width, p_btnTime->height );
654
655     XFreeGC( p_display, gc );
656 }
657 #endif