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