]> git.sesse.net Git - vlc/blob - modules/misc/dummy/input.c
Removed useless ACCESS_GET_MTU/STREAM_GET_MTU.
[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_PTS_DELAY:
67             pi_64 = (int64_t*)va_arg( args, int64_t * );
68             *pi_64 = DEFAULT_PTS_DELAY * 1000;
69             break;
70
71         /* */
72         case ACCESS_SET_PAUSE_STATE:
73         case ACCESS_GET_TITLE_INFO:
74         case ACCESS_GET_META:
75         case ACCESS_SET_TITLE:
76         case ACCESS_SET_SEEKPOINT:
77             return VLC_EGENERIC;
78
79         default:
80             msg_Err( p_access, "unimplemented query in control" );
81             return VLC_EGENERIC;
82     }
83     return VLC_SUCCESS;
84 }
85
86 int OpenAccess( vlc_object_t *p_this )
87 {
88     access_t *p_access = (access_t*)p_this;
89
90     /* Init p_access */
91     p_access->pf_read = AccessRead;
92     p_access->pf_block = NULL;
93     p_access->pf_seek = NULL;
94     p_access->pf_control = AccessControl;
95     p_access->info.i_update = 0;
96     p_access->info.i_size = 0;
97     p_access->info.i_pos = 0;
98     p_access->info.b_eof = false;
99     p_access->info.i_title = 0;
100     p_access->info.i_seekpoint = 0;
101     p_access->p_sys = NULL;
102
103     /* Force dummy demux plug-in */
104     free( p_access->psz_demux );
105     p_access->psz_demux = strdup( "vlc" );
106
107     return VLC_SUCCESS;
108 }
109
110
111 /*****************************************************************************
112  * Demux
113  *****************************************************************************/
114 struct demux_sys_t
115 {
116     /* The real command */
117     int i_command;
118
119     /* Used for the pause command */
120     mtime_t expiration;
121  
122     /* The command to run */
123     char* psz_command;
124 };
125 enum
126 {
127     COMMAND_NOP  = 0,
128     COMMAND_QUIT = 1,
129     COMMAND_PAUSE= 3,
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 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://pause:***" command */
169     if( i_len > 6 && !strncasecmp( psz_name, "pause:", 6 ) )
170     {
171         i_arg = atoi( psz_name + 6 );
172         msg_Info( p_demux, "command `pause %i'", i_arg );
173         p_sys->i_command = COMMAND_PAUSE;
174         p_sys->expiration = mdate() + (mtime_t)i_arg * (mtime_t)1000000;
175         return VLC_SUCCESS;
176     }
177  
178     msg_Err( p_demux, "unknown command `%s'", psz_name );
179
180     free( p_sys );
181     return VLC_EGENERIC;
182 }
183
184 /*****************************************************************************
185  * CloseDemux: initialize the target, ie. parse the command
186  *****************************************************************************/
187 void CloseDemux ( vlc_object_t *p_this )
188 {
189     demux_t *p_demux = (demux_t*)p_this;
190
191     free( p_demux->p_sys );
192 }
193
194 /*****************************************************************************
195  * Demux: do what the command says
196  *****************************************************************************/
197 static int Demux( demux_t *p_demux )
198 {
199     demux_sys_t *p_sys = p_demux->p_sys;
200     bool b_eof = false;
201
202     switch( p_sys->i_command )
203     {
204         case COMMAND_QUIT:
205             b_eof = true;
206             vlc_object_kill( p_demux->p_libvlc );
207             break;
208
209         case COMMAND_PAUSE:
210             if( mdate() >= p_sys->expiration )
211                 b_eof = true;
212             else
213                 msleep( 10000 );
214             break;
215  
216         case COMMAND_NOP:
217         default:
218             b_eof = true;
219             break;
220     }
221
222     return b_eof ? 0 : 1;
223 }
224
225 static int DemuxControl( demux_t *p_demux, int i_query, va_list args )
226 {
227     return demux_vaControlHelper( p_demux->s,
228                                    0, 0, 0, 1,
229                                    i_query, args );
230 }