stream/demux: move remaining callbacks to their respective ops struct

This commit moves the remaining callbacks of stream/demux: pf_read/
pf_block/pf_seek/pf_readdir and pf_demux into their operations table,
aiming at unifying all the callbacks under a unique place.
This is a follow-up to the introduction of typed controls callbacks
for stream and demux.

Like for the typed controls callbacks if no operation is provided
(ie, stream_t/demux_t.ops is NULL) by a module, the legacy pf_* will be
used instead as a fallback.

The commit doesn't migrate any of modules yet.
This commit is contained in:
Loïc Branstett 2023-03-17 11:48:19 +01:00 committed by Steve Lhomme
parent 69abb5200c
commit f93de3ef23
6 changed files with 67 additions and 24 deletions

View File

@ -61,6 +61,11 @@ struct vlc_stream_operations {
struct { struct {
bool (*can_fastseek)(stream_t *); bool (*can_fastseek)(stream_t *);
ssize_t (*read)(stream_t *, void *buf, size_t len);
block_t *(*block)(stream_t *, bool *restrict eof);
int (*readdir)(stream_t *, input_item_node_t *);
int (*seek)(stream_t *, uint64_t);
int (*get_title)(stream_t *, unsigned *); int (*get_title)(stream_t *, unsigned *);
int (*get_seekpoint)(stream_t *, unsigned *); int (*get_seekpoint)(stream_t *, unsigned *);
int (*get_size)(stream_t *, uint64_t *); int (*get_size)(stream_t *, uint64_t *);
@ -77,6 +82,9 @@ struct vlc_stream_operations {
bool (*can_record)(demux_t *); bool (*can_record)(demux_t *);
bool (*can_control_rate)(demux_t *); bool (*can_control_rate)(demux_t *);
int (*demux)(demux_t *);
int (*readdir)(demux_t *, input_item_node_t *);
bool (*has_unsupported_meta)(demux_t *); bool (*has_unsupported_meta)(demux_t *);
int (*get_title)(demux_t *, int *); int (*get_title)(demux_t *, int *);
@ -149,6 +157,9 @@ struct stream_t
* *
* Callback to read data from the stream into a caller-supplied buffer. * Callback to read data from the stream into a caller-supplied buffer.
* *
* This is the legacy implementor, using \ref vlc_stream_operations
* should be prefered.
*
* This may be NULL if the stream is actually a directory rather than a * This may be NULL if the stream is actually a directory rather than a
* byte stream, or if \ref stream_t.pf_block is non-NULL. * byte stream, or if \ref stream_t.pf_block is non-NULL.
* *
@ -170,6 +181,9 @@ struct stream_t
* for buffers. In such case, this callback should be provided instead of * for buffers. In such case, this callback should be provided instead of
* \ref stream_t.pf_read; otherwise, this should be NULL. * \ref stream_t.pf_read; otherwise, this should be NULL.
* *
* This is the legacy implementor, using \ref vlc_stream_operations
* should be prefered.
*
* \param eof storage space for end-of-stream flag [OUT] * \param eof storage space for end-of-stream flag [OUT]
* (*eof is always false when invoking pf_block(); pf_block() should set * (*eof is always false when invoking pf_block(); pf_block() should set
* *eof to true if it detects the end of the stream) * *eof to true if it detects the end of the stream)
@ -185,6 +199,9 @@ struct stream_t
* Callback to fill an item node from a directory * Callback to fill an item node from a directory
* (see doc/browsing.txt for details). * (see doc/browsing.txt for details).
* *
* This is the legacy implementor, using \ref vlc_stream_operations
* should be prefered.
*
* NULL if the stream is not a directory. * NULL if the stream is not a directory.
*/ */
int (*pf_readdir)(stream_t *, input_item_node_t *); int (*pf_readdir)(stream_t *, input_item_node_t *);
@ -196,6 +213,9 @@ struct stream_t
* *
* Callback to set the stream pointer (in bytes from start). * Callback to set the stream pointer (in bytes from start).
* *
* This is the legacy implementor, using \ref vlc_stream_operations
* should be prefered.
*
* May be NULL if seeking is not supported. * May be NULL if seeking is not supported.
*/ */
int (*pf_seek)(stream_t *, uint64_t); int (*pf_seek)(stream_t *, uint64_t);

View File

@ -290,7 +290,10 @@ stream_t *stream_AccessNew(vlc_object_t *parent, input_thread_t *input,
stream_t *s; stream_t *s;
if (access->pf_block != NULL || access->pf_read != NULL) // TODO: handle access->ops != NULL
// if ((access->ops != NULL && (access->ops->stream.block != NULL || access->ops->stream.read != NULL))
// || (access->ops == NULL && (access->pf_block != NULL || access->pf_read != NULL)))
if (access->ops == NULL && (access->pf_block != NULL || access->pf_read != NULL))
{ {
struct vlc_access_stream_private *priv; struct vlc_access_stream_private *priv;
s = vlc_stream_CustomNew(VLC_OBJECT(access), AStreamDestroy, s = vlc_stream_CustomNew(VLC_OBJECT(access), AStreamDestroy,

View File

@ -207,18 +207,24 @@ error:
return NULL; return NULL;
} }
static int demux_ReadDir( stream_t *s, input_item_node_t *p_node )
{
assert(s->pf_readdir != NULL || (s->ops != NULL && s->ops->demux.readdir != NULL));
return (s->ops != NULL ? s->ops->demux.readdir : s->pf_readdir)( s, p_node );
}
int demux_Demux(demux_t *demux) int demux_Demux(demux_t *demux)
{ {
if (demux->pf_demux != NULL) if (demux->pf_demux != NULL || (demux->ops != NULL && demux->ops->demux.demux != NULL))
return demux->pf_demux(demux); return (demux->ops != NULL ? demux->ops->demux.demux : demux->pf_demux)(demux);
if (demux->pf_readdir != NULL && demux->p_input_item != NULL) { if ((demux->pf_readdir != NULL || (demux->ops != NULL && demux->ops->demux.readdir != NULL)) && demux->p_input_item != NULL) {
input_item_node_t *node = input_item_node_Create(demux->p_input_item); input_item_node_t *node = input_item_node_Create(demux->p_input_item);
if (unlikely(node == NULL)) if (unlikely(node == NULL))
return VLC_DEMUXER_EGENERIC; return VLC_DEMUXER_EGENERIC;
if (vlc_stream_ReadDir(demux, node)) { if (demux_ReadDir(demux, node)) {
input_item_node_Delete(node); input_item_node_Delete(node);
return VLC_DEMUXER_EGENERIC; return VLC_DEMUXER_EGENERIC;
} }

View File

@ -624,8 +624,9 @@ static void MainLoop( input_thread_t *p_input, bool b_interactive )
bool b_paused_at_eof = false; bool b_paused_at_eof = false;
demux_t *p_demux = input_priv(p_input)->master->p_demux; demux_t *p_demux = input_priv(p_input)->master->p_demux;
const bool b_can_demux = p_demux->pf_demux != NULL const bool b_can_demux = p_demux->ops != NULL ?
|| p_demux->pf_readdir != NULL; (p_demux->ops->demux.demux != NULL || p_demux->ops->demux.readdir != NULL) :
(p_demux->pf_demux != NULL || p_demux->pf_readdir != NULL);
while( !input_Stopped( p_input ) && input_priv(p_input)->i_state != ERROR_S ) while( !input_Stopped( p_input ) && input_priv(p_input)->i_state != ERROR_S )
{ {
@ -2534,8 +2535,10 @@ static demux_t *InputDemuxNew( input_thread_t *p_input, es_out_t *p_es_out,
p_stream = stream_FilterAutoNew( p_stream ); p_stream = stream_FilterAutoNew( p_stream );
if( p_stream->pf_read == NULL && p_stream->pf_block == NULL if(( p_stream->ops != NULL && (p_stream->ops->stream.read == NULL &&
&& p_stream->pf_readdir == NULL ) p_stream->ops->stream.block == NULL && p_stream->ops->stream.readdir == NULL))
|| ( p_stream->ops == NULL && (p_stream->pf_read == NULL && p_stream->pf_block == NULL &&
p_stream->pf_readdir == NULL)) )
{ /* Combined access/demux, no stream filtering */ { /* Combined access/demux, no stream filtering */
MRLSections( psz_anchor, MRLSections( psz_anchor,
&p_source->i_title_start, &p_source->i_title_end, &p_source->i_title_start, &p_source->i_title_end,
@ -2750,8 +2753,11 @@ static int InputSourceInit( input_source_t *in, input_thread_t *p_input,
&in->b_can_pace_control ) ) &in->b_can_pace_control ) )
in->b_can_pace_control = false; in->b_can_pace_control = false;
const bool b_can_demux = in->p_demux->ops != NULL ?
in->p_demux->ops->demux.demux != NULL : in->p_demux->pf_demux != NULL;
/* Threaded and directory demuxers do not have pace control */ /* Threaded and directory demuxers do not have pace control */
assert( in->p_demux->pf_demux != NULL || !in->b_can_pace_control ); assert( b_can_demux || !in->b_can_pace_control );
if( !in->b_can_pace_control ) if( !in->b_can_pace_control )
{ {

View File

@ -202,7 +202,8 @@ char *vlc_stream_ReadLine( stream_t *s )
stream_priv_t *priv = stream_priv(s); stream_priv_t *priv = stream_priv(s);
/* Let's fail quickly if this is a readdir access */ /* Let's fail quickly if this is a readdir access */
if( s->pf_read == NULL && s->pf_block == NULL ) if( (s->ops != NULL && s->ops->stream.read == NULL && s->ops->stream.block == NULL) ||
(s->ops == NULL && s->pf_read == NULL && s->pf_block == NULL) )
return NULL; return NULL;
/* BOM detection */ /* BOM detection */
@ -439,7 +440,7 @@ static ssize_t vlc_stream_ReadRaw(stream_t *s, void *buf, size_t len)
if (vlc_killed()) if (vlc_killed())
return 0; return 0;
if (s->pf_read != NULL) if ((s->ops != NULL && s->ops->stream.read != NULL) || (s->ops == NULL && s->pf_read != NULL))
{ {
assert(priv->block == NULL); assert(priv->block == NULL);
if (buf == NULL) if (buf == NULL)
@ -448,10 +449,10 @@ static ssize_t vlc_stream_ReadRaw(stream_t *s, void *buf, size_t len)
return 0; return 0;
char dummy[256]; char dummy[256];
ret = s->pf_read(s, dummy, len <= 256 ? len : 256); ret = (s->ops != NULL ? s->ops->stream.read : s->pf_read)(s, dummy, len <= 256 ? len : 256);
} }
else else
ret = s->pf_read(s, buf, len); ret = (s->ops != NULL ? s->ops->stream.read : s->pf_read)(s, buf, len);
return ret; return ret;
} }
@ -459,11 +460,11 @@ static ssize_t vlc_stream_ReadRaw(stream_t *s, void *buf, size_t len)
if (ret >= 0) if (ret >= 0)
return ret; return ret;
if (s->pf_block != NULL) if ((s->ops != NULL && s->ops->stream.block != NULL) || (s->ops == NULL && s->pf_block != NULL))
{ {
bool eof = false; bool eof = false;
priv->block = s->pf_block(s, &eof); priv->block = (s->ops != NULL ? s->ops->stream.block : s->pf_block)(s, &eof);
ret = vlc_stream_CopyBlock(&priv->block, buf, len); ret = vlc_stream_CopyBlock(&priv->block, buf, len);
if (ret >= 0) if (ret >= 0)
return ret; return ret;
@ -592,10 +593,10 @@ block_t *vlc_stream_ReadBlock(stream_t *s)
block = priv->block; block = priv->block;
priv->block = NULL; priv->block = NULL;
} }
else if (s->pf_block != NULL) else if ((s->ops != NULL && s->ops->stream.block != NULL) || (s->ops == NULL && s->pf_block != NULL))
{ {
priv->eof = false; priv->eof = false;
block = s->pf_block(s, &priv->eof); block = (s->ops != NULL ? s->ops->stream.block : s->pf_block)(s, &priv->eof);
} }
else else
{ {
@ -603,7 +604,7 @@ block_t *vlc_stream_ReadBlock(stream_t *s)
if (unlikely(block == NULL)) if (unlikely(block == NULL))
return NULL; return NULL;
ssize_t ret = s->pf_read(s, block->p_buffer, block->i_buffer); ssize_t ret = (s->ops != NULL ? s->ops->stream.read : s->pf_read)(s, block->p_buffer, block->i_buffer);
if (ret > 0) if (ret > 0)
block->i_buffer = ret; block->i_buffer = ret;
else else
@ -668,10 +669,15 @@ int vlc_stream_Seek(stream_t *s, uint64_t offset)
return VLC_SUCCESS; /* Nothing to do! */ return VLC_SUCCESS; /* Nothing to do! */
} }
if (s->pf_seek == NULL) int ret;
if (s->ops == NULL && s->pf_seek != NULL) {
ret = s->pf_seek(s, offset);
} else if (s->ops != NULL && s->ops->stream.seek != NULL) {
ret = s->ops->stream.seek(s, offset);
} else {
return VLC_EGENERIC; return VLC_EGENERIC;
}
int ret = s->pf_seek(s, offset);
if (ret != VLC_SUCCESS) if (ret != VLC_SUCCESS)
return ret; return ret;
@ -919,6 +925,6 @@ block_t *vlc_stream_Block( stream_t *s, size_t size )
int vlc_stream_ReadDir( stream_t *s, input_item_node_t *p_node ) int vlc_stream_ReadDir( stream_t *s, input_item_node_t *p_node )
{ {
assert(s->pf_readdir != NULL); assert(s->pf_readdir != NULL || (s->ops != NULL && s->ops->stream.readdir != NULL));
return s->pf_readdir( s, p_node ); return (s->ops != NULL ? s->ops->stream.readdir : s->pf_readdir)( s, p_node );
} }

View File

@ -53,7 +53,9 @@ stream_t *vlc_stream_FilterNew( stream_t *p_source,
assert(p_source != NULL); assert(p_source != NULL);
/* Stream filters can only filter byte streams. */ /* Stream filters can only filter byte streams. */
if (p_source->pf_read == NULL && p_source->pf_block == NULL) if ((p_source->ops != NULL &&
p_source->ops->stream.read == NULL && p_source->ops->stream.block == NULL) ||
(p_source->ops == NULL && p_source->pf_read == NULL && p_source->pf_block == NULL))
return NULL; return NULL;
struct vlc_stream_filter_private *priv; struct vlc_stream_filter_private *priv;