VLC  4.0.0-dev
vlc_stream.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * vlc_stream.h: Stream (between access and demux) descriptor and methods
3  *****************************************************************************
4  * Copyright (C) 1999-2004 VLC authors and VideoLAN
5  *
6  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation; either version 2.1 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22 
23 #ifndef VLC_STREAM_H
24 #define VLC_STREAM_H 1
25 
26 #include <vlc_block.h>
27 
28 # ifdef __cplusplus
29 extern "C" {
30 # endif
31 
32 /**
33  * \defgroup stream Stream
34  * \ingroup input
35  * Buffered input byte streams
36  * @{
37  * \file
38  * Byte streams and byte stream filter modules interface
39  */
40 
41 /**
42  * stream_t definition
43  */
44 
45 struct stream_t
46 {
47  struct vlc_object_t obj;
48 
49  char *psz_name;
50  char *psz_url; /**< Full URL or MRL (can be NULL) */
51  const char *psz_location; /**< Location (URL with the scheme stripped) */
52  char *psz_filepath; /**< Local file path (if applicable) */
53  bool b_preparsing; /**< True if this access is used to preparse */
54  input_item_t *p_input_item;/**< Input item (can be NULL) */
55 
56  union {
57  /**
58  * Input stream
59  *
60  * Depending on the module capability:
61  * - "stream filter" or "demux": input byte stream (not NULL)
62  * - "access": a NULL pointer
63  * - "demux_filter": undefined
64  */
65  stream_t *s;
66  /**
67  * Input demuxer
68  *
69  * If the module capability is "demux_filter", this is the upstream
70  * demuxer or demux filter. Otherwise, this is undefined.
71  */
72  demux_t *p_next;
73  };
74 
75  /* es output */
76  es_out_t *out; /* our p_es_out */
77 
78  /**
79  * Read data.
80  *
81  * Callback to read data from the stream into a caller-supplied buffer.
82  *
83  * This may be NULL if the stream is actually a directory rather than a
84  * byte stream, or if \ref stream_t.pf_block is non-NULL.
85  *
86  * \param buf buffer to read data into
87  * \param len buffer length (in bytes)
88  *
89  * \retval -1 no data available yet
90  * \retval 0 end of stream (incl. fatal error)
91  * \retval positive number of bytes read (no more than len)
92  */
93  ssize_t (*pf_read)(stream_t *, void *buf, size_t len);
94 
95  /**
96  * Read data block.
97  *
98  * Callback to read a block of data. The data is read into a block of
99  * memory allocated by the stream. For some streams, data can be read more
100  * efficiently in block of a certain size, and/or using a custom allocator
101  * for buffers. In such case, this callback should be provided instead of
102  * \ref stream_t.pf_read; otherwise, this should be NULL.
103  *
104  * \param eof storage space for end-of-stream flag [OUT]
105  * (*eof is always false when invoking pf_block(); pf_block() should set
106  * *eof to true if it detects the end of the stream)
107  *
108  * \return a data block,
109  * NULL if no data available yet, on error and at end-of-stream
110  */
111  block_t *(*pf_block)(stream_t *, bool *eof);
113  /**
114  * Read directory.
115  *
116  * Callback to fill an item node from a directory
117  * (see doc/browsing.txt for details).
118  *
119  * NULL if the stream is not a directory.
120  */
121  int (*pf_readdir)(stream_t *, input_item_node_t *);
123  int (*pf_demux)(stream_t *);
125  /**
126  * Seek.
127  *
128  * Callback to set the stream pointer (in bytes from start).
129  *
130  * May be NULL if seeking is not supported.
131  */
132  int (*pf_seek)(stream_t *, uint64_t);
134  /**
135  * Stream control.
136  *
137  * Cannot be NULL.
138  *
139  * \see stream_query_e
140  */
141  int (*pf_control)(stream_t *, int i_query, va_list);
143  /**
144  * Private data pointer
145  */
146  void *p_sys;
147 };
148 
149 /**
150  * Possible commands to send to vlc_stream_Control() and vlc_stream_vaControl()
151  */
152 enum stream_query_e
153 {
154  /* capabilities */
155  STREAM_CAN_SEEK, /**< arg1= bool * res=cannot fail*/
156  STREAM_CAN_FASTSEEK, /**< arg1= bool * res=cannot fail*/
157  STREAM_CAN_PAUSE, /**< arg1= bool * res=cannot fail*/
158  STREAM_CAN_CONTROL_PACE, /**< arg1= bool * res=cannot fail*/
159  /* */
160  STREAM_GET_SIZE=6, /**< arg1= uint64_t * res=can fail */
162  /* */
163  STREAM_GET_PTS_DELAY = 0x101,/**< arg1= vlc_tick_t* res=cannot fail */
164  STREAM_GET_TITLE_INFO, /**< arg1=input_title_t*** arg2=int* res=can fail */
165  STREAM_GET_TITLE, /**< arg1=unsigned * res=can fail */
166  STREAM_GET_SEEKPOINT, /**< arg1=unsigned * res=can fail */
167  STREAM_GET_META, /**< arg1= vlc_meta_t * res=can fail */
168  STREAM_GET_CONTENT_TYPE, /**< arg1= char ** res=can fail */
169  STREAM_GET_SIGNAL, /**< arg1=double *pf_quality, arg2=double *pf_strength res=can fail */
170  STREAM_GET_TAGS, /**< arg1=const block_t ** res=can fail */
172  STREAM_SET_PAUSE_STATE = 0x200, /**< arg1= bool res=can fail */
173  STREAM_SET_TITLE, /**< arg1= int res=can fail */
174  STREAM_SET_SEEKPOINT, /**< arg1= int res=can fail */
176  /* XXX only data read through vlc_stream_Read/Block will be recorded */
177  STREAM_SET_RECORD_STATE, /**< arg1=bool, arg2=const char *psz_ext (if arg1 is true) res=can fail */
179  STREAM_SET_PRIVATE_ID_STATE = 0x1000, /* arg1= int i_private_data, bool b_selected res=can fail */
180  STREAM_SET_PRIVATE_ID_CA, /* arg1= void * */
181  STREAM_GET_PRIVATE_ID_STATE, /* arg1=int i_private_data arg2=bool * res=can fail */
182 };
183 
184 /**
185  * Reads data from a byte stream.
186  *
187  * This function always waits for the requested number of bytes, unless a fatal
188  * error is encountered or the end-of-stream is reached first.
189  *
190  * If the buffer is NULL, data is skipped instead of read. This is effectively
191  * a relative forward seek, but it works even on non-seekable streams.
192  *
193  * \param buf start of buffer to read data into [OUT]
194  * \param len number of bytes to read
195  * \return the number of bytes read or a negative value on error.
196  */
197 VLC_API ssize_t vlc_stream_Read(stream_t *, void *buf, size_t len) VLC_USED;
198 
199 /**
200  * Reads partial data from a byte stream.
201  *
202  * This function waits until some data is available for reading from the
203  * stream, a fatal error is encountered or the end-of-stream is reached.
204  *
205  * Unlike vlc_stream_Read(), this function does not wait for the full requested
206  * bytes count. It can return a short count even before the end of the stream
207  * and in the absence of any error.
208  *
209  * \param buf start of buffer to read data into [OUT]
210  * \param len buffer size (maximum number of bytes to read)
211  * \return the number of bytes read or a negative value on error.
212  */
213 VLC_API ssize_t vlc_stream_ReadPartial(stream_t *, void *buf, size_t len)
214 VLC_USED;
215 
216 /**
217  * Peeks at data from a byte stream.
218  *
219  * This function buffers for the requested number of bytes, waiting if
220  * necessary. Then it stores a pointer to the buffer. Unlike vlc_stream_Read()
221  * or vlc_stream_Block(), this function does not modify the stream read offset.
222  *
223  * \note
224  * The buffer remains valid until the next read/peek or seek operation on the
225  * same stream. In case of error, the buffer address is undefined.
226  *
227  * \param bufp storage space for the buffer address [OUT]
228  * \param len number of bytes to peek
229  * \return the number of bytes actually available (shorter than requested if
230  * the end-of-stream is reached), or a negative value on error.
231  */
232 VLC_API ssize_t vlc_stream_Peek(stream_t *, const uint8_t **, size_t) VLC_USED;
233 
234 /**
235  * Reads a data block from a byte stream.
236  *
237  * This function dequeues the next block of data from the byte stream. The
238  * byte stream back-end decides on the size of the block; the caller cannot
239  * make any assumption about it.
240  *
241  * The function might also return NULL spuriously - this does not necessarily
242  * imply that the stream is ended nor that it has encountered a nonrecoverable
243  * error.
244  *
245  * This function should be used instead of vlc_stream_Read() or
246  * vlc_stream_Peek() when the caller can handle reads of any size.
247  *
248  * \return either a data block or NULL
249  */
251 
252 /**
253  * Tells the current stream position.
254  *
255  * This function tells the current read offset (in bytes) from the start of
256  * the start of the stream.
257  * @note The read offset may be larger than the stream size, either because of
258  * a seek past the end, or because the stream shrank asynchronously.
259  *
260  * @return the byte offset from the beginning of the stream (cannot fail)
261  */
262 VLC_API uint64_t vlc_stream_Tell(const stream_t *) VLC_USED;
263 
264 /**
265  * Checks for end of stream.
266  *
267  * Checks if the last attempt to reads data from the stream encountered the
268  * end of stream before the attempt could be fully satisfied.
269  * The value is initially false, and is reset to false by vlc_stream_Seek().
270  *
271  * \note The function can return false even though the current stream position
272  * is equal to the stream size. It will return true after the following attempt
273  * to read more than zero bytes.
274  *
275  * \note It might be possible to read after the end of the stream.
276  * It implies the size of the stream increased asynchronously in the mean time.
277  * Streams of most types cannot trigger such a case,
278  * but regular local files notably can.
279  *
280  * \note In principles, the stream size should match the stream offset when
281  * the end-of-stream is reached. But that rule is not enforced; it is entirely
282  * dependent on the underlying implementation of the stream.
283  */
285 
286 /**
287  * Sets the current stream position.
288  *
289  * This function changes the read offset within a stream, if the stream
290  * supports seeking. In case of error, the read offset is not changed.
291  *
292  * @note It is possible (but not useful) to seek past the end of a stream.
293  *
294  * @param offset byte offset from the beginning of the stream
295  * @return zero on success, a negative value on error
296  */
297 VLC_API int vlc_stream_Seek(stream_t *, uint64_t offset) VLC_USED;
298 
299 VLC_API int vlc_stream_vaControl(stream_t *s, int query, va_list args);
300 
301 static inline int vlc_stream_Control(stream_t *s, int query, ...)
302 {
303  va_list ap;
304  int ret;
305 
306  va_start(ap, query);
307  ret = vlc_stream_vaControl(s, query, ap);
308  va_end(ap);
309  return ret;
310 }
311 
314 
315 /**
316  * Reads a directory.
317  *
318  * This function fills an input item node with any and all the items within
319  * a directory. The behaviour is undefined if the stream is not a directory.
320  *
321  * \param s directory object to read from
322  * \param node node to store the items into
323  * \return VLC_SUCCESS on success
324  */
326 
327 /**
328  * Closes a byte stream.
329  * \param s byte stream to close
330  */
332 
334 
335 /**
336  * Get the size of the stream.
337  */
338 VLC_USED static inline int vlc_stream_GetSize( stream_t *s, uint64_t *size )
339 {
340  return vlc_stream_Control( s, STREAM_GET_SIZE, size );
341 }
342 
343 static inline int64_t stream_Size( stream_t *s )
344 {
345  uint64_t i_pos;
346 
347  if( vlc_stream_GetSize( s, &i_pos ) )
348  return 0;
349  if( i_pos >> 62 )
350  return (int64_t)1 << 62;
351  return i_pos;
352 }
353 
354 VLC_USED
355 static inline bool stream_HasExtension( stream_t *s, const char *extension )
356 {
357  const char *name = (s->psz_filepath != NULL) ? s->psz_filepath
358  : s->psz_url;
359  const char *ext = strrchr( name, '.' );
360  return ext != NULL && !strcasecmp( ext, extension );
361 }
362 
363 /**
364  * Get the Content-Type of a stream, or NULL if unknown.
365  * Result must be free()'d.
366  */
367 static inline char *stream_ContentType( stream_t *s )
368 {
369  char *res;
371  return NULL;
372  return res;
373 }
374 
375 /**
376  * Get the mime-type of a stream
377  *
378  * \warning the returned resource is to be freed by the caller
379  * \return the mime-type, or `NULL` if unknown
380  **/
381 VLC_USED
382 static inline char *stream_MimeType( stream_t *s )
383 {
384  char* mime_type = stream_ContentType( s );
385 
386  if( mime_type ) /* strip parameters */
387  mime_type[strcspn( mime_type, " ;" )] = '\0';
388 
389  return mime_type;
390 }
391 
392 /**
393  * Checks for a MIME type.
394  *
395  * Checks if the stream has a specific MIME type.
396  */
397 VLC_USED
398 static inline bool stream_IsMimeType(stream_t *s, const char *type)
399 {
400  char *mime = stream_MimeType(s);
401  if (mime == NULL)
402  return false;
403 
404  bool ok = !strcasecmp(mime, type);
405  free(mime);
406  return ok;
407 }
408 
409 /**
410  * Create a stream from a memory buffer.
411  *
412  * \param obj parent VLC object
413  * \param base start address of the memory buffer to read from
414  * \param size size in bytes of the memory buffer
415  * \param preserve if false, free(base) will be called when the stream is
416  * destroyed; if true, the memory buffer is preserved
417  */
419  size_t size, bool preserve) VLC_USED;
420 #define vlc_stream_MemoryNew(a, b, c, d) \
421  vlc_stream_MemoryNew(VLC_OBJECT(a), b, c, d)
422 
423 /**
424  * Create a stream_t reading from a URL.
425  * You must delete it using vlc_stream_Delete.
426  */
427 VLC_API stream_t * vlc_stream_NewURL(vlc_object_t *obj, const char *url)
428 VLC_USED;
429 #define vlc_stream_NewURL(a, b) vlc_stream_NewURL(VLC_OBJECT(a), b)
431 /**
432  * \defgroup stream_fifo FIFO stream
433  * In-memory anonymous pipe
434  @{
435  */
436 
437 typedef struct vlc_stream_fifo vlc_stream_fifo_t;
439 /**
440  * Creates a FIFO stream.
441  *
442  * Creates a non-seekable byte stream object whose byte stream is generated
443  * by another thread in the process. This is the LibVLC equivalent of an
444  * anonymous pipe/FIFO.
445  *
446  * On the reader side, the normal stream functions are used,
447  * e.g. vlc_stream_Read() and vlc_stream_Delete().
448  *
449  * The created stream object is automatically destroyed when both the reader
450  * and the writer sides have been closed, with vlc_stream_Delete() and
451  * vlc_stream_fifo_Close() respectively.
452  *
453  * \param parent parent VLC object for the stream
454  * \param reader location to store read side stream pointer [OUT]
455  * \return a FIFO stream object or NULL on memory error.
456  */
458  stream_t **reader);
459 
460 /**
461  * Writes a block to a FIFO stream.
462  *
463  * \param s FIFO stream created by vlc_stream_fifo_New()
464  * \param block data block to write to the stream
465  * \return 0 on success. -1 if the reader end has already been closed
466  * (errno is then set to EPIPE, and the block is deleted).
467  *
468  * \bug No congestion control is performed. If the reader end is not keeping
469  * up with the writer end, buffers will accumulate in memory.
470  */
472 
473 /**
474  * Writes data to a FIFO stream.
475  *
476  * This is a convenience helper for vlc_stream_fifo_Queue().
477  * \param s FIFO stream created by vlc_stream_fifo_New()
478  * \param buf start address of data to write
479  * \param len length of data to write in bytes
480  * \return len on success, or -1 on error (errno is set accordingly)
481  */
482 VLC_API ssize_t vlc_stream_fifo_Write(vlc_stream_fifo_t *s, const void *buf,
483  size_t len);
484 
485 /**
486  * Terminates a FIFO stream.
487  *
488  * Marks the end of the FIFO stream and releases any underlying resources.
489  * \param s FIFO stream created by vlc_stream_fifo_New()
490  */
492 
493 /**
494  * @}
495  */
496 
497 /**
498  * Try to add a stream filter to an open stream.
499  * @return New stream to use, or NULL if the filter could not be added.
500  **/
501 VLC_API stream_t* vlc_stream_FilterNew( stream_t *p_source, const char *psz_stream_filter );
502 
503 /**
504  * @}
505  */
506 
507 # ifdef __cplusplus
508 }
509 # endif
510 
511 #endif
arg1= bool * res=cannot fail
Definition: vlc_stream.h:156
char * psz_url
Full URL or MRL (can be NULL)
Definition: vlc_stream.h:51
int vlc_stream_Seek(stream_t *, uint64_t offset)
Sets the current stream position.
Definition: stream.c:611
ssize_t vlc_stream_Read(stream_t *, void *buf, size_t len)
Reads data from a byte stream.
Definition: stream.c:471
int(* pf_demux)(stream_t *)
Definition: vlc_stream.h:124
arg1= vlc_meta_t * res=can fail
Definition: vlc_stream.h:168
arg1= char ** res=can fail
Definition: vlc_stream.h:169
static int64_t stream_Size(stream_t *s)
Definition: vlc_stream.h:344
arg1= int res=can fail
Definition: vlc_stream.h:175
void * p_sys
Private data pointer.
Definition: vlc_stream.h:147
Definition: stream_fifo.c:36
Describes an input and is used to spawn input_thread_t objects.
Definition: vlc_input_item.h:77
int(* pf_readdir)(stream_t *, input_item_node_t *)
Read directory.
Definition: vlc_stream.h:122
char * psz_filepath
Local file path (if applicable)
Definition: vlc_stream.h:53
ssize_t vlc_stream_fifo_Write(vlc_stream_fifo_t *s, const void *buf, size_t len)
Writes data to a FIFO stream.
Definition: stream_fifo.c:171
arg1= bool * res=cannot fail
Definition: vlc_stream.h:158
arg1=unsigned * res=can fail
Definition: vlc_stream.h:167
Definition: vlc_input_item.h:191
arg1=double *pf_quality, arg2=double *pf_strength res=can fail
Definition: vlc_stream.h:170
uint64_t vlc_stream_Tell(const stream_t *)
Tells the current stream position.
Definition: stream.c:597
vlc_stream_fifo_t * vlc_stream_fifo_New(vlc_object_t *parent, stream_t **reader)
Creates a FIFO stream.
Definition: stream_fifo.c:119
stream_t * vlc_stream_FilterNew(stream_t *p_source, const char *psz_stream_filter)
Try to add a stream filter to an open stream.
Definition: stream_filter.c:50
arg1=input_title_t*** arg2=int* res=can fail
Definition: vlc_stream.h:165
static int vlc_stream_Control(stream_t *s, int query,...)
Definition: vlc_stream.h:302
stream_t * vlc_stream_CommonNew(vlc_object_t *, void(*)(stream_t *))
Definition: stream.c:108
struct vlc_object_t obj
Definition: vlc_stream.h:48
arg1= vlc_tick_t* res=cannot fail
Definition: vlc_stream.h:164
arg1=unsigned * res=can fail
Definition: vlc_stream.h:166
Data block definition and functions.
int(* pf_control)(stream_t *, int i_query, va_list)
Stream control.
Definition: vlc_stream.h:142
#define vlc_stream_NewURL(a, b)
Definition: vlc_stream.h:430
arg1= uint64_t * res=can fail
Definition: vlc_stream.h:161
input_item_t * p_input_item
Input item (can be NULL)
Definition: vlc_stream.h:55
static char * stream_ContentType(stream_t *s)
Get the Content-Type of a stream, or NULL if unknown.
Definition: vlc_stream.h:368
Definition: vlc_es_out.h:143
arg1= bool * res=cannot fail
Definition: vlc_stream.h:159
Definition: vlc_stream.h:182
ssize_t(* pf_read)(stream_t *, void *buf, size_t len)
Read data.
Definition: vlc_stream.h:94
static bool stream_IsMimeType(stream_t *s, const char *type)
Checks for a MIME type.
Definition: vlc_stream.h:399
ssize_t vlc_stream_Peek(stream_t *, const uint8_t **, size_t)
Peeks at data from a byte stream.
arg1=const block_t ** res=can fail
Definition: vlc_stream.h:171
int vlc_stream_ReadDir(stream_t *s, input_item_node_t *node)
Reads a directory.
Definition: stream.c:735
const char name[16]
Definition: httpd.c:1269
ssize_t vlc_stream_ReadPartial(stream_t *, void *buf, size_t len)
Reads partial data from a byte stream.
Definition: stream.c:449
stream_query_e
Possible commands to send to vlc_stream_Control() and vlc_stream_vaControl()
Definition: vlc_stream.h:153
es_out_t * out
Definition: vlc_stream.h:77
int vlc_stream_vaControl(stream_t *s, int query, va_list args)
Use to control the "stream_t *".
Definition: stream.c:673
static int vlc_stream_GetSize(stream_t *s, uint64_t *size)
Get the size of the stream.
Definition: vlc_stream.h:339
char * vlc_stream_ReadLine(stream_t *)
Definition: stream.c:187
arg1= bool * res=cannot fail
Definition: vlc_stream.h:157
Definition: vlc_stream.h:181
#define VLC_API
Definition: fourcc_gen.c:31
stream_t definition
Definition: vlc_stream.h:46
int(* pf_seek)(stream_t *, uint64_t)
Seek.
Definition: vlc_stream.h:133
stream_t * s
Input stream.
Definition: vlc_stream.h:66
const char * psz_location
Location (URL with the scheme stripped)
Definition: vlc_stream.h:52
int vlc_stream_fifo_Queue(vlc_stream_fifo_t *s, block_t *block)
Writes a block to a FIFO stream.
Definition: stream_fifo.c:150
arg1= int res=can fail
Definition: vlc_stream.h:174
block_t * vlc_stream_Block(stream_t *s, size_t)
Read data into a block.
Definition: stream.c:715
arg1=bool, arg2=const char *psz_ext (if arg1 is true) res=can fail
Definition: vlc_stream.h:178
Definition: vlc_block.h:117
int strcasecmp(const char *, const char *)
#define vlc_stream_MemoryNew(a, b, c, d)
Definition: vlc_stream.h:421
bool vlc_stream_Eof(const stream_t *)
Checks for end of stream.
Definition: stream.c:604
static bool stream_HasExtension(stream_t *s, const char *extension)
Definition: vlc_stream.h:356
void vlc_stream_Delete(stream_t *s)
Closes a byte stream.
Definition: stream.c:133
Definition: vlc_stream.h:180
VLC object common members.
Definition: vlc_objects.h:43
bool b_preparsing
True if this access is used to preparse.
Definition: vlc_stream.h:54
block_t * vlc_stream_ReadBlock(stream_t *)
Reads a data block from a byte stream.
Definition: stream.c:547
void vlc_stream_fifo_Close(vlc_stream_fifo_t *s)
Terminates a FIFO stream.
Definition: stream_fifo.c:182
char * psz_name
Definition: vlc_stream.h:50
#define VLC_USED
Definition: fourcc_gen.c:32
static char * stream_MimeType(stream_t *s)
Get the mime-type of a stream.
Definition: vlc_stream.h:383
arg1= bool res=can fail
Definition: vlc_stream.h:173
demux_t * p_next
Input demuxer.
Definition: vlc_stream.h:73