#include <uhd/transport/muxed_zero_copy_if.hpp>
Public Types | |
typedef std::shared_ptr< muxed_zero_copy_if > | sptr |
typedef std::function< uint32_t(void *buff, size_t size)> | stream_classifier_fn |
Public Member Functions | |
virtual | ~muxed_zero_copy_if () |
virtual dtor More... | |
virtual zero_copy_if::sptr | make_stream (const uint32_t stream_num)=0 |
Make a virtual transport for the specified stream number. More... | |
virtual void | remove_stream (const uint32_t stream_num)=0 |
Unregister the stream number. All packets destined to the stream will be dropped. More... | |
virtual size_t | get_num_dropped_frames () const =0 |
Get number of frames dropped due to unregistered streams. More... | |
Static Public Member Functions | |
static sptr | make (zero_copy_if::sptr base_xport, stream_classifier_fn classify_fn, size_t max_streams) |
Make a new demuxer from a transport and parameters. More... | |
Implements a software muxed-demuxed zero-copy transport This is a wrapper around a base transport that allows creation of virtual zero_copy_if streams that are indistinguishable from physical transport streams. This class handles demuxing receive streams into the appropriate virtual streams with the given classifier function. A worker therad is spawned to handle the demuxing.
typedef std::shared_ptr<muxed_zero_copy_if> uhd::transport::muxed_zero_copy_if::sptr |
typedef std::function<uint32_t(void* buff, size_t size)> uhd::transport::muxed_zero_copy_if::stream_classifier_fn |
Function to classify the stream based on the payload. The classifier must return a stream number, an arbitrary identifier for a virtual stream that is consistent with the stream number used in the make_stream and remove_stream fuctions
buff | a pointer to the payload of the frame |
size | number of bytes in the frame payload |
|
inlinevirtual |
virtual dtor
|
pure virtual |
Get number of frames dropped due to unregistered streams.
|
static |
Make a new demuxer from a transport and parameters.
|
pure virtual |
Make a virtual transport for the specified stream number.
|
pure virtual |
Unregister the stream number. All packets destined to the stream will be dropped.