]> git.sesse.net Git - vlc/blob - plugins/dummy/input_dummy.c
* Fixed a bug in the gtk interface which caused vlc to go amok after
[vlc] / plugins / dummy / input_dummy.c
1 /*****************************************************************************
2  * input_dummy.c: dummy input plugin, to manage "vlc:***" special options
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: input_dummy.c,v 1.5 2001/08/09 08:20:26 sam Exp $
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 #define MODULE_NAME dummy
25 #include "modules_inner.h"
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include "defs.h"
31
32 #include <stdlib.h>
33 #include <string.h>
34 #include <errno.h>
35
36 #ifdef STRNCASECMP_IN_STRINGS_H
37 #   include <strings.h>
38 #endif
39
40 #include "config.h"
41 #include "common.h"
42 #include "threads.h"
43 #include "mtime.h"
44 #include "tests.h"
45
46 #include "interface.h"
47 #include "intf_msg.h"
48 #include "intf_playlist.h"
49
50 #include "main.h"
51
52 #include "stream_control.h"
53 #include "input_ext-intf.h"
54 #include "input_ext-dec.h"
55 #include "input_ext-plugins.h"
56
57 #include "modules.h"
58 #include "modules_export.h"
59
60 /*****************************************************************************
61  * Local prototypes
62  *****************************************************************************/
63 static int  DummyProbe     ( probedata_t * );
64 static void DummyOpen      ( struct input_thread_s * );
65 static void DummyClose     ( struct input_thread_s * );
66
67 /*****************************************************************************
68  * Functions exported as capabilities. They are declared as static so that
69  * we don't pollute the namespace too much.
70  *****************************************************************************/
71 void _M( input_getfunctions )( function_list_t * p_function_list )
72 {
73 #define input p_function_list->functions.input
74     p_function_list->pf_probe = DummyProbe;
75     input.pf_init             = NULL; /* Not needed, open is called first */
76     input.pf_open             = DummyOpen;
77     input.pf_close            = DummyClose;
78     input.pf_end              = NULL;
79     input.pf_set_area         = NULL;
80     input.pf_read             = NULL;
81     input.pf_demux            = NULL;
82     input.pf_new_packet       = NULL;
83     input.pf_new_pes          = NULL;
84     input.pf_delete_packet    = NULL;
85     input.pf_delete_pes       = NULL;
86     input.pf_rewind           = NULL;
87     input.pf_seek             = NULL;
88 #undef input
89 }
90
91 /*
92  * Data reading functions
93  */
94
95 /*****************************************************************************
96  * DummyProbe: verifies that the input is a vlc command
97  *****************************************************************************/
98 static int DummyProbe( probedata_t *p_data )
99 {
100     input_thread_t *p_input = (input_thread_t *)p_data;
101     char *psz_name = p_input->p_source;
102
103     if( TestMethod( INPUT_METHOD_VAR, "dummy" ) )
104     {
105         return( 999 );
106     }
107
108     if( ( strlen(psz_name) > 4 ) && !strncasecmp( psz_name, "vlc:", 4 ) )
109     {
110         /* If the user specified "vlc:" then it's probably a file */
111         return( 100 );
112     }
113
114     return( 1 );
115 }
116
117 /*****************************************************************************
118  * DummyOpen: open the target, ie. do what the command says
119  *****************************************************************************/
120 static void DummyOpen( input_thread_t * p_input )
121 {
122     char *psz_name = p_input->p_source;
123     int   i_len = strlen( psz_name );
124     int   i_arg;
125     
126     /* XXX: Tell the input layer to quit immediately, there must
127      * be a nicer way to do this. */
128     p_input->b_error = 1;
129
130     if( ( i_len <= 4 ) || strncasecmp( psz_name, "vlc:", 4 ) )
131     {
132         /* If the command doesn't start with "vlc:" then it's not for us */
133         return;
134     }
135
136     /* We don't need the "vlc:" stuff any more */
137     psz_name += 4;
138     i_len -= 4;
139
140     /* Check for a "vlc:quit" command */
141     if( i_len == 4 && !strncasecmp( psz_name, "quit", 4 ) )
142     {
143         intf_WarnMsg( 2, "input: command `quit'" );
144         p_main->p_intf->b_die = 1;
145         return;
146     }
147
148     /* Check for a "vlc:loop" command */
149     if( i_len == 4 && !strncasecmp( psz_name, "loop", 4 ) )
150     {
151         intf_WarnMsg( 2, "input: command `loop'" );
152         intf_PlaylistJumpto( p_main->p_playlist, -1 );
153         return;
154     }
155
156     /* Check for a "vlc:pause:***" command */
157     if( i_len > 6 && !strncasecmp( psz_name, "pause:", 6 ) )
158     {
159         i_arg = atoi( psz_name + 6 );
160
161         intf_WarnMsgImm( 2, "input: command `pause %i'", i_arg );
162
163         msleep( i_arg * 1000000 );
164         return;
165     }
166
167     intf_ErrMsg( "input error: unknown command `%s'", psz_name );
168
169 }
170
171 /*****************************************************************************
172  * DummyClose: close the target, ie. do nothing
173  *****************************************************************************/
174 static void DummyClose( input_thread_t * p_input )
175 {
176     return;
177 }
178