blob: d8d77fccc3883228603db136f119b0edc5cad7a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
//
// Copyright 2016 Ettus Research LLC
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#ifndef INCLUDED_LIBUHD_TRANSPORT_MUXED_ZERO_COPY_IF_HPP
#define INCLUDED_LIBUHD_TRANSPORT_MUXED_ZERO_COPY_IF_HPP
#include <uhd/config.hpp>
#include <uhd/transport/zero_copy.hpp>
#include <uhd/utils/noncopyable.hpp>
#include <stdint.h>
#include <functional>
namespace uhd { namespace transport {
/*!
* 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.
*/
class muxed_zero_copy_if : private uhd::noncopyable
{
public:
typedef std::shared_ptr<muxed_zero_copy_if> sptr;
/*!
* 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
* \param buff a pointer to the payload of the frame
* \param size number of bytes in the frame payload
* \return stream number
*/
typedef std::function<uint32_t(void* buff, size_t size)> stream_classifier_fn;
//! virtual dtor
virtual ~muxed_zero_copy_if() {}
//! Make a virtual transport for the specified stream number
virtual zero_copy_if::sptr make_stream(const uint32_t stream_num) = 0;
//! Unregister the stream number. All packets destined to the stream will be dropped.
virtual void remove_stream(const uint32_t stream_num) = 0;
//! Get number of frames dropped due to unregistered streams
virtual size_t get_num_dropped_frames() const = 0;
//! Make a new demuxer from a transport and parameters
static sptr make(zero_copy_if::sptr base_xport,
stream_classifier_fn classify_fn,
size_t max_streams);
};
}} // namespace uhd::transport
#endif /* INCLUDED_LIBUHD_TRANSPORT_MUXED_ZERO_COPY_IF_HPP */
|