]> git.sesse.net Git - vlc/blob - mozilla/vlcpeer.cpp
Remove debug (Refs:#438)
[vlc] / mozilla / vlcpeer.cpp
1 /*****************************************************************************
2  * vlcpeer.cpp: scriptable peer descriptor
3  *****************************************************************************
4  * Copyright (C) 2002-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include "config.h"
28
29 #include <vlc/vlc.h>
30
31 #ifdef DEBUG
32 /* We do not want to use nsDebug.h */
33 #   undef DEBUG
34 #endif
35
36 #ifdef HAVE_MOZILLA_CONFIG_H
37 #   include <mozilla-config.h>
38 #endif
39 #include <nsISupports.h>
40 #include <nsMemory.h>
41 #include <npapi.h>
42
43 #if !defined(XP_MACOSX) && !defined(XP_UNIX) && !defined(XP_WIN)
44 #define XP_UNIX 1
45 #elif defined(XP_MACOSX)
46 #undef XP_UNIX
47 #endif
48
49 #include "vlcpeer.h"
50 #include "vlcplugin.h"
51
52 NS_IMPL_ISUPPORTS2( VlcPeer, VlcIntf, nsIClassInfo )
53
54 /*****************************************************************************
55  * Scriptable peer constructor and destructor
56  *****************************************************************************/
57 VlcPeer::VlcPeer()
58 {
59     NS_INIT_ISUPPORTS();
60 }
61
62 VlcPeer::VlcPeer( VlcPlugin * plugin )
63 {
64     NS_INIT_ISUPPORTS();
65     p_plugin = plugin;
66 }
67
68 VlcPeer::~VlcPeer()
69 {
70     ;
71 }
72
73 /*****************************************************************************
74  * Scriptable peer methods
75  *****************************************************************************/
76 void VlcPeer::Disable()
77 {
78     p_plugin = NULL;
79 }
80
81 /*****************************************************************************
82  * Scriptable peer plugin methods
83  *****************************************************************************/
84 NS_IMETHODIMP VlcPeer::Play()
85 {
86     if( p_plugin )
87     {
88         if( !p_plugin->b_stream && p_plugin->psz_target )
89         {
90             VLC_AddTarget( p_plugin->i_vlc, p_plugin->psz_target, 0, 0,
91                            PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END );
92             p_plugin->b_stream = 1;
93         }
94
95         VLC_Play( p_plugin->i_vlc );
96     }
97     return NS_OK;
98 }
99
100 NS_IMETHODIMP VlcPeer::Pause()
101 {
102     if( p_plugin )
103     {
104         VLC_Pause( p_plugin->i_vlc );
105     }
106     return NS_OK;
107 }
108
109 NS_IMETHODIMP VlcPeer::Stop()
110 {
111     if( p_plugin )
112     {
113         VLC_Stop( p_plugin->i_vlc );
114         p_plugin->b_stream = 0;
115     }
116     return NS_OK;
117 }
118
119 NS_IMETHODIMP VlcPeer::Fullscreen()
120 {
121     if( p_plugin )
122     {
123 #ifdef XP_MACOSX
124 #else
125         VLC_FullScreen( p_plugin->i_vlc );
126 #endif
127     }
128     return NS_OK;
129 }
130
131 /* Set/Get vlc variables */
132 NS_IMETHODIMP VlcPeer::Set_int_variable(const char *psz_var, PRInt64 value )
133 {
134     vlc_value_t val;
135     val.i_int = value;
136     if( p_plugin )
137     {
138         VLC_VariableSet( p_plugin->i_vlc, psz_var, val );
139     }
140     return NS_OK;
141 }
142
143 NS_IMETHODIMP VlcPeer::Set_str_variable(const char *psz_var, const char *value )
144 {
145     vlc_value_t val;
146     val.psz_string = strdup( value );
147     if( p_plugin )
148     {
149         VLC_VariableSet( p_plugin->i_vlc, psz_var, val );
150     }
151     return NS_OK;
152 }
153
154 NS_IMETHODIMP VlcPeer::Set_bool_variable(const char *psz_var, PRBool value )
155 {
156     vlc_value_t val;
157     val.b_bool = value >= 1 ? VLC_TRUE : VLC_FALSE;
158     if( p_plugin )
159     {
160         VLC_VariableSet( p_plugin->i_vlc, psz_var, val );
161     }
162     return NS_OK;
163 }
164
165 NS_IMETHODIMP VlcPeer::Get_int_variable( const char *psz_var, PRInt64 *result )
166 {
167     vlc_value_t val;
168     if( p_plugin )
169     {
170         VLC_VariableGet( p_plugin->i_vlc, psz_var, &val );
171         *result = (PRInt64)val.i_int;
172     }
173     return NS_OK;
174 }
175
176 NS_IMETHODIMP VlcPeer::Get_bool_variable(  const char *psz_var,PRBool *result )
177 {
178     vlc_value_t val;
179     if( p_plugin )
180     {
181         VLC_VariableGet( p_plugin->i_vlc, psz_var, &val );
182         *result = (PRBool)val.b_bool;
183     }
184     return NS_OK;
185 }
186
187 NS_IMETHODIMP VlcPeer::Get_str_variable( const char *psz_var, char **result )
188 {
189     vlc_value_t val;
190     if( p_plugin )
191     {
192         VLC_VariableGet( p_plugin->i_vlc, psz_var, &val );
193         if( val.psz_string )
194         {
195             *result = strdup( val.psz_string );
196         }
197         else
198         {
199             *result = strdup( "" );
200         }
201     }
202     return NS_OK;
203 }
204
205 /* Playlist control */
206 NS_IMETHODIMP VlcPeer::Clear_playlist()
207 {
208     if( p_plugin )
209     {
210         VLC_PlaylistClear( p_plugin->i_vlc );
211     }
212     return NS_OK;
213 }
214
215 NS_IMETHODIMP VlcPeer::Add_item( const char *psz_item )
216 {
217      if( p_plugin )
218      {
219           VLC_AddTarget( p_plugin->i_vlc, psz_item, NULL, 0,
220                          PLAYLIST_APPEND, PLAYLIST_END);
221      }
222      return NS_OK;
223 }
224
225
226 NS_IMETHODIMP VlcPeer::Isplaying( PRBool *b_playing )
227 {
228     if( p_plugin->i_vlc )
229     {
230         *b_playing = VLC_IsPlaying( p_plugin->i_vlc );
231     }
232     return NS_OK;
233 }
234
235 NS_IMETHODIMP VlcPeer::Get_position( PRInt64 *i_position )
236 {
237     if( p_plugin->i_vlc )
238     {
239         *i_position = (PRInt64)VLC_PositionGet( p_plugin->i_vlc );
240     }
241     return NS_OK;
242 }
243
244 NS_IMETHODIMP VlcPeer::Get_time( PRInt64 *i_time )
245 {
246     if( p_plugin->i_vlc )
247     {
248         *i_time = VLC_TimeGet( p_plugin->i_vlc );
249     }
250     return NS_OK;
251 }
252
253 NS_IMETHODIMP VlcPeer::Get_length( PRInt64 *i_length )
254 {
255     if( p_plugin->i_vlc )
256     {
257         *i_length = VLC_LengthGet( p_plugin->i_vlc );
258     }
259     return NS_OK;
260 }
261
262 NS_IMETHODIMP VlcPeer::Seek( PRInt64 i_secs, PRInt64 b_relative )
263 {
264     if( p_plugin->i_vlc )
265     {
266         VLC_TimeSet( p_plugin->i_vlc, i_secs, b_relative );
267     }
268     return NS_OK;
269 }
270
271 NS_IMETHODIMP VlcPeer::Next()
272 {
273     if( p_plugin->i_vlc )
274     {
275         VLC_PlaylistNext( p_plugin->i_vlc);
276     }
277     return NS_OK;
278 }
279
280 NS_IMETHODIMP VlcPeer::Previous()
281 {
282     if( p_plugin->i_vlc )
283     {
284         VLC_PlaylistPrev( p_plugin->i_vlc );
285     }
286     return NS_OK;
287 }
288
289 NS_IMETHODIMP VlcPeer::Set_volume( PRInt64 i_volume )
290 {
291     if( p_plugin->i_vlc )
292     {
293         VLC_VolumeSet( p_plugin->i_vlc, i_volume );
294     }
295     return NS_OK;
296 }
297
298 NS_IMETHODIMP VlcPeer::Get_volume( PRInt64 *i_volume )
299 {
300     if( p_plugin->i_vlc )
301     {
302         *i_volume = VLC_VolumeGet( p_plugin->i_vlc );
303     }
304     return NS_OK;
305 }
306
307 NS_IMETHODIMP VlcPeer::Mute()
308 {
309     if( p_plugin->i_vlc )
310     {
311         VLC_VolumeMute( p_plugin->i_vlc );
312     }
313     return NS_OK;
314 }