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