UHD  003.006.000-0-g7788c692
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
zero_copy.hpp
Go to the documentation of this file.
1 //
2 // Copyright 2010-2012 Ettus Research LLC
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program. If not, see <http://www.gnu.org/licenses/>.
16 //
17 
18 #ifndef INCLUDED_UHD_TRANSPORT_ZERO_COPY_HPP
19 #define INCLUDED_UHD_TRANSPORT_ZERO_COPY_HPP
20 
21 #include <uhd/config.hpp>
22 #include <boost/utility.hpp>
23 #include <boost/shared_ptr.hpp>
24 #include <boost/intrusive_ptr.hpp>
25 #include <boost/detail/atomic_count.hpp>
26 
27 namespace uhd{ namespace transport{
28 
31  public:
32  managed_buffer(void):_ref_count(0){}
33 
39  virtual void release(void) = 0;
40 
45  UHD_INLINE void commit(size_t num_bytes){
46  _length = num_bytes;
47  }
48 
53  template <class T> UHD_INLINE T cast(void) const{
54  return static_cast<T>(_buffer);
55  }
56 
61  UHD_INLINE size_t size(void) const{
62  return _length;
63  }
64 
66  template <typename T> UHD_INLINE boost::intrusive_ptr<T> make(
67  T *p, void *buffer, size_t length
68  ){
69  _buffer = buffer;
70  _length = length;
71  return boost::intrusive_ptr<T>(p);
72  }
73 
74  boost::detail::atomic_count _ref_count;
75  typedef boost::intrusive_ptr<managed_buffer> sptr;
76 
77  protected:
78  void *_buffer;
79  size_t _length;
80  };
81 
83  ++(p->_ref_count);
84  }
85 
87  if (--(p->_ref_count) == 0) p->release();
88  }
89 
96  public:
97  typedef boost::intrusive_ptr<managed_recv_buffer> sptr;
98  };
99 
106  public:
107  typedef boost::intrusive_ptr<managed_send_buffer> sptr;
108  };
109 
115  class UHD_API zero_copy_if : boost::noncopyable{
116  public:
117  typedef boost::shared_ptr<zero_copy_if> sptr;
118 
124  virtual managed_recv_buffer::sptr get_recv_buff(double timeout = 0.1) = 0;
125 
131  virtual size_t get_num_recv_frames(void) const = 0;
132 
138  virtual size_t get_recv_frame_size(void) const = 0;
139 
145  virtual managed_send_buffer::sptr get_send_buff(double timeout = 0.1) = 0;
146 
152  virtual size_t get_num_send_frames(void) const = 0;
153 
159  virtual size_t get_send_frame_size(void) const = 0;
160 
161  };
162 
163 }} //namespace
164 
165 #endif /* INCLUDED_UHD_TRANSPORT_ZERO_COPY_HPP */
Simple managed buffer with release interface.
Definition: zero_copy.hpp:30
UHD_INLINE T cast(void) const
Definition: zero_copy.hpp:53
boost::intrusive_ptr< managed_buffer > sptr
Definition: zero_copy.hpp:75
UHD_INLINE void intrusive_ptr_release(managed_buffer *p)
Definition: zero_copy.hpp:86
UHD_INLINE void commit(size_t num_bytes)
Definition: zero_copy.hpp:45
virtual void release(void)=0
boost::shared_ptr< zero_copy_if > sptr
Definition: zero_copy.hpp:117
Definition: zero_copy.hpp:105
#define UHD_API
Definition: config.hpp:76
Definition: convert.hpp:28
Definition: zero_copy.hpp:95
#define UHD_INLINE
Definition: config.hpp:67
UHD_INLINE size_t size(void) const
Definition: zero_copy.hpp:61
boost::detail::atomic_count _ref_count
Definition: zero_copy.hpp:74
UHD_INLINE void intrusive_ptr_add_ref(managed_buffer *p)
Definition: zero_copy.hpp:82
boost::intrusive_ptr< managed_recv_buffer > sptr
Definition: zero_copy.hpp:97
UHD_INLINE boost::intrusive_ptr< T > make(T *p, void *buffer, size_t length)
Create smart pointer to a reusable managed buffer.
Definition: zero_copy.hpp:66
Definition: zero_copy.hpp:115
boost::intrusive_ptr< managed_send_buffer > sptr
Definition: zero_copy.hpp:107
managed_buffer(void)
Definition: zero_copy.hpp:32
size_t _length
Definition: zero_copy.hpp:79
void * _buffer
Definition: zero_copy.hpp:78