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