]> git.sesse.net Git - vlc/blob - modules/misc/dummy/input.c
Add ACCESS_GET_META in the dummy access to avoid an error
[vlc] / modules / misc / dummy / input.c
1 /*****************************************************************************
2  * input_dummy.c: dummy input plugin, to manage "vlc:***" special options
3  *****************************************************************************
4  * Copyright (C) 2001, 2002 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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>
28 #include <string.h>
29
30 #include <vlc/vlc.h>
31 #include <vlc/intf.h>
32 #include <vlc/input.h>
33
34 /*****************************************************************************
35  * Access functions.
36  *****************************************************************************/
37 static int AccessRead( access_t *p_access, uint8_t *p, int i_size )
38 {
39     memset( p, 0, i_size );
40     return i_size;
41 }
42 static int AccessControl( access_t *p_access, int i_query, va_list args )
43 {
44     vlc_bool_t   *pb_bool;
45     int          *pi_int;
46     int64_t      *pi_64;
47
48     switch( i_query )
49     {
50         /* */
51         case ACCESS_CAN_SEEK:
52         case ACCESS_CAN_FASTSEEK:
53         case ACCESS_CAN_PAUSE:
54         case ACCESS_CAN_CONTROL_PACE:
55             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
56             *pb_bool = VLC_FALSE;
57             break;
58
59         /* */
60         case ACCESS_GET_MTU:
61             pi_int = (int*)va_arg( args, int * );
62             *pi_int = 0;
63             break;
64
65         case ACCESS_GET_PTS_DELAY:
66             pi_64 = (int64_t*)va_arg( args, int64_t * );
67             *pi_64 = DEFAULT_PTS_DELAY * 1000;
68             break;
69
70         /* */
71         case ACCESS_SET_PAUSE_STATE:
72         case ACCESS_GET_TITLE_INFO:
73         case ACCESS_GET_META:
74         case ACCESS_SET_TITLE:
75         case ACCESS_SET_SEEKPOINT:
76             return VLC_EGENERIC;
77
78         default:
79             msg_Err( p_access, "unimplemented query in control" );
80             return VLC_EGENERIC;
81     }
82     return VLC_SUCCESS;
83 }
84
85 int E_(OpenAccess)( vlc_object_t *p_this )
86 {
87     access_t *p_access = (access_t*)p_this;
88
89     /* Init p_access */
90     p_access->pf_read = AccessRead;
91     p_access->pf_block = NULL;
92     p_access->pf_seek = NULL;
93     p_access->pf_control = AccessControl;
94     p_access->info.i_update = 0;
95     p_access->info.i_size = 0;
96     p_access->info.i_pos = 0;
97     p_access->info.b_eof = VLC_FALSE;
98     p_access->info.i_title = 0;
99     p_access->info.i_seekpoint = 0;
100     p_access->p_sys = NULL;
101
102     /* Force dummy demux plug-in */
103     p_access->psz_demux = strdup( "vlc" );
104
105     return VLC_SUCCESS;
106 }
107
108
109 /*****************************************************************************
110  * Demux
111  *****************************************************************************/
112 struct demux_sys_t
113 {
114     /* The real command */
115     int i_command;
116
117     /* Used for the pause command */
118     mtime_t expiration;
119     
120     /* The command to run */
121     char* psz_command;
122 };
123 enum
124 {
125     COMMAND_NOP  = 0,
126     COMMAND_QUIT = 1,
127     COMMAND_LOOP = 2,
128     COMMAND_PAUSE= 3,
129     COMMAND_RUN  = 4,
130 };
131
132 static int Demux( demux_t * );
133 static int DemuxControl( demux_t *, int, va_list );
134
135
136 /*****************************************************************************
137  * OpenDemux: initialize the target, ie. parse the command
138  *****************************************************************************/
139 int E_(OpenDemux) ( vlc_object_t *p_this )
140 {
141     demux_t *p_demux = (demux_t*)p_this;
142     char * psz_name = p_demux->psz_path;
143
144     int i_len = strlen( psz_name );
145     demux_sys_t *p_sys;
146     int   i_arg;
147
148     p_demux->pf_demux   = Demux;
149     p_demux->pf_control = DemuxControl;
150     p_demux->p_sys      = p_sys = malloc( sizeof( demux_sys_t ) );
151
152     /* Check for a "vlc:nop" command */
153     if( i_len == 3 && !strncasecmp( psz_name, "nop", 3 ) )
154     {
155         msg_Info( p_demux, "command `nop'" );
156         p_sys->i_command = COMMAND_NOP;
157         return VLC_SUCCESS;
158     }
159
160     /* Check for a "vlc:quit" command */
161     if( i_len == 4 && !strncasecmp( psz_name, "quit", 4 ) )
162     {
163         msg_Info( p_demux, "command `quit'" );
164         p_sys->i_command = COMMAND_QUIT;
165         return VLC_SUCCESS;
166     }
167
168     /* Check for a "vlc:loop" command */
169     if( i_len == 4 && !strncasecmp( psz_name, "loop", 4 ) )
170     {
171         msg_Info( p_demux, "command `loop'" );
172         p_sys->i_command = COMMAND_LOOP;
173         return VLC_SUCCESS;
174     }
175
176     /* Check for a "vlc:pause:***" command */
177     if( i_len > 6 && !strncasecmp( psz_name, "pause:", 6 ) )
178     {
179         i_arg = atoi( psz_name + 6 );
180         msg_Info( p_demux, "command `pause %i'", i_arg );
181         p_sys->i_command = COMMAND_PAUSE;
182         p_sys->expiration = mdate() + (mtime_t)i_arg * (mtime_t)1000000;
183         return VLC_SUCCESS;
184     }
185     
186     /* Check for a "vlc:run:***" command */
187     if ( i_len > 4 && !strncasecmp( psz_name, "run:", 4 ) )
188     {
189        p_sys->psz_command = malloc( i_len - 4 );
190        strcpy( p_sys->psz_command, psz_name + 4 );
191        msg_Info( p_demux, "command `run program %s'", p_sys->psz_command );
192        p_sys->i_command = COMMAND_RUN;
193        return VLC_SUCCESS;
194     } 
195
196     msg_Err( p_demux, "unknown command `%s'", psz_name );
197
198     free( p_sys );
199     return VLC_EGENERIC;
200 }
201
202 /*****************************************************************************
203  * CloseDemux: initialize the target, ie. parse the command
204  *****************************************************************************/
205 void E_(CloseDemux) ( vlc_object_t *p_this )
206 {
207     demux_t *p_demux = (demux_t*)p_this;
208
209     free( p_demux->p_sys );
210 }
211
212 /*****************************************************************************
213  * Demux: do what the command says
214  *****************************************************************************/
215 static int Demux( demux_t *p_demux )
216 {
217     demux_sys_t *p_sys = p_demux->p_sys;
218     playlist_t *p_playlist;
219     vlc_bool_t b_eof = VLC_FALSE;
220
221     p_playlist = vlc_object_find( p_demux, VLC_OBJECT_PLAYLIST, FIND_PARENT );
222
223     if( p_playlist == NULL )
224     {
225         msg_Err( p_demux, "we are not attached to a playlist" );
226         return -1;
227     }
228
229     switch( p_sys->i_command )
230     {
231         case COMMAND_QUIT:
232             b_eof = p_demux->p_vlc->b_die = VLC_TRUE;
233             break;
234
235         case COMMAND_LOOP:
236             playlist_Goto( p_playlist, 0 );
237             break;
238
239         case COMMAND_PAUSE:
240             if( mdate() >= p_sys->expiration )
241                 b_eof = VLC_TRUE;
242             else
243                 msleep( 10000 );
244             break;
245         
246         case COMMAND_RUN:
247             var_SetString( p_playlist, "run-program-command", p_sys->psz_command );
248             free( p_sys->psz_command );
249             b_eof = VLC_TRUE;
250             break;
251
252         case COMMAND_NOP:
253         default:
254             b_eof = VLC_TRUE;
255             break;       
256     }
257
258     vlc_object_release( p_playlist );
259     return b_eof ? 0 : 1;
260 }
261
262 static int DemuxControl( demux_t *p_demux, int i_query, va_list args )
263 {
264     return demux2_vaControlHelper( p_demux->s,
265                                    0, 0, 0, 1,
266                                    i_query, args );
267 }