blob: 17213885e0b632f4369e5ebb3c76ae6b8c25ca6f (
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
66
67
68
69
70
71
72
|
//
// Copyright 2016 Ettus Research LLC
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
#ifndef INCLUDED_LIBUHD_TRANSPORT_MUXED_ZERO_COPY_IF_HPP
#define INCLUDED_LIBUHD_TRANSPORT_MUXED_ZERO_COPY_IF_HPP
#include <uhd/transport/zero_copy.hpp>
#include <uhd/config.hpp>
#include <boost/function.hpp>
#include <boost/noncopyable.hpp>
#include <stdint.h>
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 boost::noncopyable {
public:
typedef boost::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 boost::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 */
|