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