]> git.sesse.net Git - vlc/blob - src/input/input.c
* Big cleanup of the PS input plugin ;
[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.60 2000/12/20 16:04:31 massiot 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     int                 i;
79
80     /* Allocate descriptor */
81     intf_DbgMsg("\n");
82     p_input = (input_thread_t *)malloc( sizeof(input_thread_t) );
83     if( p_input == NULL )
84     {
85         intf_ErrMsg("error: %s\n", strerror(errno));
86         free( p_config );
87         return( NULL );
88     }
89
90     /* Initialize thread properties */
91     p_input->b_die              = 0;
92     p_input->b_error            = 0;
93     /* I have never understood that stuff --Meuuh */
94     p_input->pi_status          = (pi_status != NULL) ? pi_status : &i_status;
95     *p_input->pi_status         = THREAD_CREATE;
96     p_input->p_config = p_config;
97
98     /* Initialize stream description */
99     for( i = 0; i < INPUT_MAX_SELECTED_ES; i++ )
100     {
101         p_input->pp_selected_es[i] = NULL;
102     }
103     for( i= 0; i < INPUT_MAX_ES; i++ )
104     {
105         p_input->p_es[i].i_id = EMPTY_ID;
106     }
107     p_input->stream.i_pgrm_number = 0;
108
109     /* Initialize stream control properties. */
110     p_input->stream.control.i_status = PLAYING_S;
111     p_input->stream.control.i_rate = DEFAULT_RATE;
112     p_input->stream.control.i_ref_sysdate = 0;
113     p_input->stream.control.i_ref_clock = 0;
114     p_input->stream.control.b_mute = 0;
115     p_input->stream.control.b_bw = 0;
116
117     /* Create thread and set locks. */
118     vlc_mutex_init( &p_input->stream.stream_lock );
119     vlc_mutex_init( &p_input->stream.control.control_lock );
120     if( vlc_thread_create( &p_input->thread_id, "input", (void *) RunThread,
121                            (void *) p_input ) )
122     {
123         intf_ErrMsg("error: %s\n", strerror(errno) );
124         free( p_input );
125         free( p_config );
126         return( NULL );
127     }
128
129     /* If status is NULL, wait until the thread is created */
130     if( pi_status == NULL )
131     {
132         do
133         {
134             msleep( THREAD_SLEEP );
135         } while( (i_status != THREAD_READY) && (i_status != THREAD_ERROR)
136                 && (i_status != THREAD_FATAL) );
137         if( i_status != THREAD_READY )
138         {
139             return( NULL );
140         }
141     }
142     return( p_input );
143 }
144
145 /*****************************************************************************
146  * input_DestroyThread: mark an input thread as zombie
147  *****************************************************************************
148  * This function should not return until the thread is effectively cancelled.
149  *****************************************************************************/
150 void input_DestroyThread( input_thread_t *p_input, int *pi_status )
151 {
152     int         i_status;                                   /* thread status */
153
154     /* Set status */
155     p_input->pi_status = (pi_status != NULL) ? pi_status : &i_status;
156     *p_input->pi_status = THREAD_DESTROY;
157
158     /* Request thread destruction */
159     p_input->b_die = 1;
160
161     /* If status is NULL, wait until thread has been destroyed */
162     if( pi_status == NULL )
163     {
164         do
165         {
166             msleep( THREAD_SLEEP );
167         } while ( (i_status != THREAD_OVER) && (i_status != THREAD_ERROR)
168                   && (i_status != THREAD_FATAL) );
169     }
170 }
171
172 /*****************************************************************************
173  * RunThread: main thread loop
174  *****************************************************************************
175  * Thread in charge of processing the network packets and demultiplexing.
176  *****************************************************************************/
177 static void RunThread( input_thread_t *p_input )
178 {
179     data_packet_t *         pp_packets[INPUT_READ_ONCE];
180     int                     i_error, i;
181
182     InitThread( p_input );
183
184     while( !p_input->b_die && !p_input->b_error )
185     {
186 #ifdef STATS
187         p_input->c_loops++;
188 #endif
189
190         vlc_mutex_lock( &p_input->stream.control.control_lock );
191         if( p_input->stream.control.i_status == BACKWARD_S
192              && p_input->p_plugin->pf_rewind != NULL )
193         {
194             p_input->p_plugin->pf_rewind( p_input );
195             /* FIXME: probably don't do it every loop, but when ? */
196         }
197         vlc_mutex_unlock( &p_input->stream.control.control_lock );
198
199         i_error = p_input->p_plugin->pf_read( p_input, pp_packets );
200
201         /* Demultiplex read packets. */
202         for( i = 0; i < INPUT_READ_ONCE && pp_packets[i] != NULL; i++ )
203         {
204             p_input->p_plugin->pf_demux( p_input, pp_packets[i] );
205         }
206
207         if( i_error )
208         {
209             if( i_error == 1 )
210             {
211                 /* End of file */
212                 intf_WarnMsg( 1, "End of file reached" );
213                 /* FIXME: don't treat that as an error */
214             }
215             p_input->b_error = 1;
216         }
217     }
218
219     if( p_input->b_error )
220     {
221         ErrorThread( p_input );
222     }
223
224     EndThread( p_input );
225     intf_DbgMsg("Thread end");
226 }
227
228 /*****************************************************************************
229  * InitThread: init the input thread
230  *****************************************************************************/
231 input_capabilities_t * PSKludge( void );
232 static void InitThread( input_thread_t * p_input )
233 {
234     /* Initialize default settings for spawned decoders */
235     p_input->p_default_aout     = p_input->p_config->p_default_aout;
236     p_input->p_default_vout     = p_input->p_config->p_default_vout;
237
238 #ifdef STATS
239     /* Initialize statistics */
240     p_input->c_loops                    = 0;
241     p_input->c_bytes                    = 0;
242     p_input->c_payload_bytes            = 0;
243     p_input->c_packets_read             = 0;
244     p_input->c_packets_trashed          = 0;
245 #endif
246
247     /* Use the appropriate input method */
248     switch( p_input->p_config->i_method )
249     {
250     case INPUT_METHOD_FILE:                                  /* file methods */
251         FileOpen( p_input );
252         break;
253     case INPUT_METHOD_VLAN_BCAST:                     /* vlan network method */
254 /*        if( !p_main->b_vlans )
255         {
256             intf_ErrMsg("error: vlans are not activated\n");
257             free( p_input );
258             return( NULL );
259         } */ /* la-lala */
260         /* ... pass through */
261     case INPUT_METHOD_UCAST:                              /* network methods */
262     case INPUT_METHOD_MCAST:
263     case INPUT_METHOD_BCAST:
264         NetworkOpen( p_input );
265         break;
266 #ifdef DEBUG
267     default:
268         intf_ErrMsg("Unknow input method");
269         free( p_input->p_config );
270         p_input->b_error = 1;
271         break;
272 #endif
273     }
274
275     free( p_input->p_config );
276
277     /* Probe plugin (FIXME: load plugins before & write this) */
278     p_input->p_plugin = PSKludge();
279     p_input->p_plugin->pf_init( p_input );
280
281     *p_input->pi_status = THREAD_READY;
282 }
283
284 /*****************************************************************************
285  * ErrorThread: RunThread() error loop
286  *****************************************************************************
287  * This function is called when an error occured during thread main's loop.
288  *****************************************************************************/
289 static void ErrorThread( input_thread_t *p_input )
290 {
291     while( !p_input->b_die )
292     {
293         /* Sleep a while */
294         msleep( INPUT_IDLE_SLEEP );
295     }
296 }
297
298 /*****************************************************************************
299  * EndThread: end the input thread
300  *****************************************************************************/
301 static void EndThread( input_thread_t * p_input )
302 {
303     int *       pi_status;                                  /* thread status */
304     int         i_es_loop;                                       /* es index */
305
306     /* Store status */
307     pi_status = p_input->pi_status;
308     *pi_status = THREAD_END;
309
310 #ifdef STATS
311     {
312         struct tms cpu_usage;
313         times( &cpu_usage );
314
315         intf_Msg("input stats: cpu usage (user: %d, system: %d)\n",
316                  cpu_usage.tms_utime, cpu_usage.tms_stime);
317     }
318 #endif
319
320     /* Destroy all decoder threads */
321     for( i_es_loop = 0;
322          (i_es_loop < INPUT_MAX_ES)
323             && (p_input->pp_selected_es[i_es_loop] != NULL) ;
324          i_es_loop++ )
325     {
326         p_input->pp_selected_es[i_es_loop]->p_decoder_fifo->b_die = 1;
327         /* Make sure the thread leaves the GetByte() function */
328         vlc_mutex_lock( &p_input->pp_selected_es[i_es_loop]->p_decoder_fifo->data_lock);
329         vlc_cond_signal( &p_input->pp_selected_es[i_es_loop]->p_decoder_fifo->data_wait );
330         vlc_mutex_unlock( &p_input->pp_selected_es[i_es_loop]->p_decoder_fifo->data_lock );
331
332         /* Waiting for the thread to exit */
333         vlc_thread_join( p_input->pp_selected_es[i_es_loop]->thread_id );
334         free( p_input->pp_selected_es[i_es_loop]->p_decoder_fifo );
335     }
336
337     /* Free demultiplexer's data */
338
339     /* Update status */
340     *pi_status = THREAD_OVER;
341 }
342
343 /*****************************************************************************
344  * NetworkOpen : open a network socket descriptor
345  *****************************************************************************/
346 static void NetworkOpen( input_thread_t * p_input )
347 {
348     /* straight copy & paste of input_network.c of input-I */
349
350     /* We cannot rewind nor lseek() */
351     p_input->stream.b_seekable = 0;
352     /* We cannot control the pace */
353     p_input->stream.b_pace_control = 0;
354 }
355
356 /*****************************************************************************
357  * FileOpen : open a file descriptor
358  *****************************************************************************/
359 static void FileOpen( input_thread_t * p_input )
360 {
361     struct stat         stat_info;
362
363 #define p_config    p_input->p_config
364
365     if( !strncmp( p_config->p_source, "-", 1 ) )
366     {
367         /* stdin */
368         p_input->i_handle = 0;
369         
370         vlc_mutex_lock( &p_input->stream.stream_lock );
371         p_input->stream.b_pace_control = 1;
372         p_input->stream.b_seekable = 0;
373         p_input->stream.i_size = 0;
374         p_input->stream.i_tell = 0;
375         vlc_mutex_unlock( &p_input->stream.stream_lock );
376     }
377     else
378     {
379         if( stat( p_config->p_source, &stat_info ) == (-1) )
380         {
381             intf_ErrMsg("Cannot stat() file %s (%s)", p_config->p_source,
382                         strerror(errno));
383             p_input->b_error = 1;
384             return;
385         }
386
387         vlc_mutex_lock( &p_input->stream.stream_lock );
388
389         /* If we are here we can control the pace... */
390         p_input->stream.b_pace_control = 1;
391
392         if( S_ISREG(stat_info.st_mode) || S_ISCHR(stat_info.st_mode)
393              || S_ISBLK(stat_info.st_mode) )
394         {
395             p_input->stream.b_seekable = 1;
396             p_input->stream.i_size = stat_info.st_size;
397         }
398         else if( S_ISFIFO(stat_info.st_mode) || S_ISSOCK(stat_info.st_mode) )
399         {
400             p_input->stream.b_seekable = 0;
401             p_input->stream.i_size = 0;
402         }
403         else
404         {
405             vlc_mutex_unlock( &p_input->stream.stream_lock );
406             intf_ErrMsg("Unknown file type");
407             p_input->b_error = 1;
408             return;
409         }
410
411         p_input->stream.i_tell = 0;
412         vlc_mutex_unlock( &p_input->stream.stream_lock );
413
414         intf_Msg( "Opening file %s", p_config->p_source );
415         if( (p_input->i_handle = open( p_config->p_source,
416                                        /*O_NONBLOCK | O_LARGEFILE*/0 )) == (-1) )
417         {
418             intf_ErrMsg("Cannot open file (%s)", strerror(errno));
419             p_input->b_error = 1;
420             return;
421         }
422     }
423
424 #undef p_config
425 }