]> git.sesse.net Git - vlc/blob - src/input/input.c
. no need to add "\n" at the end of intf_*Msg() messages anymore.
[vlc] / src / input / input.c
1 /*****************************************************************************
2  * input.c: input thread
3  * Read an MPEG2 stream, demultiplex and parse it before sending it to
4  * decoders.
5  *****************************************************************************
6  * Copyright (C) 1998, 1999, 2000 VideoLAN
7  * $Id: input.c,v 1.64 2000/12/22 13:04:44 sam Exp $
8  *
9  * Authors: 
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include "defs.h"
30
31 #include <stdlib.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <fcntl.h>
35 #include <unistd.h>
36 #include <string.h>
37 #include <errno.h>
38
39 #ifdef STATS
40 #   include <sys/times.h>
41 #endif
42
43 #include "config.h"
44 #include "common.h"
45 #include "threads.h"
46 #include "mtime.h"
47
48 #include "intf_msg.h"
49
50 #include "stream_control.h"
51 #include "input_ext-intf.h"
52 #include "input_ext-dec.h"
53
54 #include "input.h"
55
56 /*****************************************************************************
57  * Local prototypes
58  *****************************************************************************/
59 static void RunThread   ( input_thread_t *p_input );
60 static void InitThread  ( input_thread_t *p_input );
61 static void ErrorThread ( input_thread_t *p_input );
62 static void EndThread   ( input_thread_t *p_input );
63 static void NetworkOpen ( input_thread_t *p_input );
64 static void FileOpen    ( input_thread_t *p_input );
65
66 /*****************************************************************************
67  * input_CreateThread: creates a new input thread
68  *****************************************************************************
69  * This function creates a new input, and returns a pointer
70  * to its description. On error, it returns NULL.
71  * If pi_status is NULL, then the function will block until the thread is ready.
72  * If not, it will be updated using one of the THREAD_* constants.
73  *****************************************************************************/
74 input_thread_t *input_CreateThread ( input_config_t * p_config, int *pi_status )
75 {
76     input_thread_t *    p_input;                        /* thread descriptor */
77     int                 i_status;                           /* thread status */
78
79     /* Allocate descriptor */
80     p_input = (input_thread_t *)malloc( sizeof(input_thread_t) );
81     if( p_input == NULL )
82     {
83         intf_ErrMsg("error: %s", strerror(errno));
84         free( p_config );
85         return( NULL );
86     }
87
88     /* Initialize thread properties */
89     p_input->b_die              = 0;
90     p_input->b_error            = 0;
91     /* I have never understood that stuff --Meuuh */
92     p_input->pi_status          = (pi_status != NULL) ? pi_status : &i_status;
93     *p_input->pi_status         = THREAD_CREATE;
94     p_input->p_config = p_config;
95
96     /* Initialize stream description */
97     p_input->stream.i_es_number = 0;
98     p_input->stream.i_selected_es_number = 0;
99     p_input->stream.i_pgrm_number = 0;
100
101     /* Initialize stream control properties. */
102     p_input->stream.control.i_status = PLAYING_S;
103     p_input->stream.control.i_rate = DEFAULT_RATE;
104     p_input->stream.control.i_ref_sysdate = 0;
105     p_input->stream.control.i_ref_clock = 0;
106     p_input->stream.control.b_mute = 0;
107     p_input->stream.control.b_bw = 0;
108
109     /* Create thread and set locks. */
110     vlc_mutex_init( &p_input->stream.stream_lock );
111     vlc_mutex_init( &p_input->stream.control.control_lock );
112     if( vlc_thread_create( &p_input->thread_id, "input", (void *) RunThread,
113                            (void *) p_input ) )
114     {
115         intf_ErrMsg("error: %s", strerror(errno) );
116         free( p_input );
117         free( p_config );
118         return( NULL );
119     }
120
121     /* If status is NULL, wait until the thread is created */
122     if( pi_status == NULL )
123     {
124         do
125         {
126             msleep( THREAD_SLEEP );
127         } while( (i_status != THREAD_READY) && (i_status != THREAD_ERROR)
128                 && (i_status != THREAD_FATAL) );
129         if( i_status != THREAD_READY )
130         {
131             return( NULL );
132         }
133     }
134     return( p_input );
135 }
136
137 /*****************************************************************************
138  * input_DestroyThread: mark an input thread as zombie
139  *****************************************************************************
140  * This function should not return until the thread is effectively cancelled.
141  *****************************************************************************/
142 void input_DestroyThread( input_thread_t *p_input, int *pi_status )
143 {
144     int         i_status;                                   /* thread status */
145
146     /* Set status */
147     p_input->pi_status = (pi_status != NULL) ? pi_status : &i_status;
148     *p_input->pi_status = THREAD_DESTROY;
149
150     /* Request thread destruction */
151     p_input->b_die = 1;
152
153     /* If status is NULL, wait until thread has been destroyed */
154     if( pi_status == NULL )
155     {
156         do
157         {
158             msleep( THREAD_SLEEP );
159         } while ( (i_status != THREAD_OVER) && (i_status != THREAD_ERROR)
160                   && (i_status != THREAD_FATAL) );
161     }
162 }
163
164 /*****************************************************************************
165  * RunThread: main thread loop
166  *****************************************************************************
167  * Thread in charge of processing the network packets and demultiplexing.
168  *****************************************************************************/
169 static void RunThread( input_thread_t *p_input )
170 {
171     data_packet_t *         pp_packets[INPUT_READ_ONCE];
172     int                     i_error, i;
173
174     InitThread( p_input );
175
176     while( !p_input->b_die && !p_input->b_error )
177     {
178 #ifdef STATS
179         p_input->c_loops++;
180 #endif
181
182         vlc_mutex_lock( &p_input->stream.control.control_lock );
183         if( p_input->stream.control.i_status == BACKWARD_S
184              && p_input->p_plugin->pf_rewind != NULL )
185         {
186             p_input->p_plugin->pf_rewind( p_input );
187             /* FIXME: probably don't do it every loop, but when ? */
188         }
189         vlc_mutex_unlock( &p_input->stream.control.control_lock );
190
191         i_error = p_input->p_plugin->pf_read( p_input, pp_packets );
192
193         /* Demultiplex read packets. */
194         for( i = 0; i < INPUT_READ_ONCE && pp_packets[i] != NULL; i++ )
195         {
196             p_input->p_plugin->pf_demux( p_input, pp_packets[i] );
197         }
198
199         if( i_error )
200         {
201             if( i_error == 1 )
202             {
203                 /* End of file */
204                 intf_WarnMsg( 1, "End of file reached" );
205                 /* FIXME: don't treat that as an error */
206             }
207             p_input->b_error = 1;
208         }
209     }
210
211     if( p_input->b_error )
212     {
213         ErrorThread( p_input );
214     }
215
216     EndThread( p_input );
217     intf_DbgMsg("Thread end");
218 }
219
220 /*****************************************************************************
221  * InitThread: init the input thread
222  *****************************************************************************/
223 input_capabilities_t * PSKludge( void );
224 static void InitThread( input_thread_t * p_input )
225 {
226     /* Initialize default settings for spawned decoders */
227     p_input->p_default_aout     = p_input->p_config->p_default_aout;
228     p_input->p_default_vout     = p_input->p_config->p_default_vout;
229
230 #ifdef STATS
231     /* Initialize statistics */
232     p_input->c_loops                    = 0;
233     p_input->c_bytes                    = 0;
234     p_input->c_payload_bytes            = 0;
235     p_input->c_packets_read             = 0;
236     p_input->c_packets_trashed          = 0;
237 #endif
238
239     /* Use the appropriate input method */
240     switch( p_input->p_config->i_method )
241     {
242     case INPUT_METHOD_FILE:                                  /* file methods */
243         FileOpen( p_input );
244         break;
245     case INPUT_METHOD_VLAN_BCAST:                     /* vlan network method */
246 /*        if( !p_main->b_vlans )
247         {
248             intf_ErrMsg("error: vlans are not activated");
249             free( p_input );
250             return( NULL );
251         } */ /* la-lala */
252         /* ... pass through */
253     case INPUT_METHOD_UCAST:                              /* network methods */
254     case INPUT_METHOD_MCAST:
255     case INPUT_METHOD_BCAST:
256         NetworkOpen( p_input );
257         break;
258 #ifdef DEBUG
259     default:
260         intf_ErrMsg("Unknow input method");
261         free( p_input->p_config );
262         p_input->b_error = 1;
263         break;
264 #endif
265     }
266
267     free( p_input->p_config );
268
269     /* Probe plugin (FIXME: load plugins before & write this) */
270     p_input->p_plugin = PSKludge();
271     p_input->p_plugin->pf_init( p_input );
272
273     *p_input->pi_status = THREAD_READY;
274 }
275
276 /*****************************************************************************
277  * ErrorThread: RunThread() error loop
278  *****************************************************************************
279  * This function is called when an error occured during thread main's loop.
280  *****************************************************************************/
281 static void ErrorThread( input_thread_t *p_input )
282 {
283     while( !p_input->b_die )
284     {
285         /* Sleep a while */
286         msleep( INPUT_IDLE_SLEEP );
287     }
288 }
289
290 /*****************************************************************************
291  * EndThread: end the input thread
292  *****************************************************************************/
293 static void EndThread( input_thread_t * p_input )
294 {
295     int *       pi_status;                                  /* thread status */
296
297     /* Store status */
298     pi_status = p_input->pi_status;
299     *pi_status = THREAD_END;
300
301 #ifdef STATS
302     {
303         struct tms cpu_usage;
304         times( &cpu_usage );
305
306         intf_Msg("input stats: cpu usage (user: %d, system: %d)",
307                  cpu_usage.tms_utime, cpu_usage.tms_stime);
308     }
309 #endif
310
311     /* Free all ES and destroy all decoder threads */
312     input_EndStream( p_input );
313
314     /* Free demultiplexer's data */
315     p_input->p_plugin->pf_end( p_input );
316     free( p_input->p_plugin );
317
318     /* Free input structure */
319     free( p_input );
320
321     /* Update status */
322     *pi_status = THREAD_OVER;
323 }
324
325 /*****************************************************************************
326  * NetworkOpen : open a network socket descriptor
327  *****************************************************************************/
328 static void NetworkOpen( input_thread_t * p_input )
329 {
330     /* straight copy & paste of input_network.c of input-I */
331
332     /* We cannot rewind nor lseek() */
333     p_input->stream.b_seekable = 0;
334     /* We cannot control the pace */
335     p_input->stream.b_pace_control = 0;
336 }
337
338 /*****************************************************************************
339  * FileOpen : open a file descriptor
340  *****************************************************************************/
341 static void FileOpen( input_thread_t * p_input )
342 {
343     struct stat         stat_info;
344
345 #define p_config    p_input->p_config
346
347     if( !strncmp( p_config->p_source, "-", 1 ) )
348     {
349         /* stdin */
350         p_input->i_handle = 0;
351         
352         vlc_mutex_lock( &p_input->stream.stream_lock );
353         p_input->stream.b_pace_control = 1;
354         p_input->stream.b_seekable = 0;
355         p_input->stream.i_size = 0;
356         p_input->stream.i_tell = 0;
357         vlc_mutex_unlock( &p_input->stream.stream_lock );
358     }
359     else
360     {
361         if( stat( p_config->p_source, &stat_info ) == (-1) )
362         {
363             intf_ErrMsg("Cannot stat() file %s (%s)", p_config->p_source,
364                         strerror(errno));
365             p_input->b_error = 1;
366             return;
367         }
368
369         vlc_mutex_lock( &p_input->stream.stream_lock );
370
371         /* If we are here we can control the pace... */
372         p_input->stream.b_pace_control = 1;
373
374         if( S_ISREG(stat_info.st_mode) || S_ISCHR(stat_info.st_mode)
375              || S_ISBLK(stat_info.st_mode) )
376         {
377             p_input->stream.b_seekable = 1;
378             p_input->stream.i_size = stat_info.st_size;
379         }
380         else if( S_ISFIFO(stat_info.st_mode) || S_ISSOCK(stat_info.st_mode) )
381         {
382             p_input->stream.b_seekable = 0;
383             p_input->stream.i_size = 0;
384         }
385         else
386         {
387             vlc_mutex_unlock( &p_input->stream.stream_lock );
388             intf_ErrMsg("Unknown file type");
389             p_input->b_error = 1;
390             return;
391         }
392
393         p_input->stream.i_tell = 0;
394         vlc_mutex_unlock( &p_input->stream.stream_lock );
395
396         intf_Msg( "Opening file %s", p_config->p_source );
397         if( (p_input->i_handle = open( p_config->p_source,
398                                        /*O_NONBLOCK | O_LARGEFILE*/0 )) == (-1) )
399         {
400             intf_ErrMsg("Cannot open file (%s)", strerror(errno));
401             p_input->b_error = 1;
402             return;
403         }
404     }
405
406 #undef p_config
407 }