summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-10-03 13:54:35 -0700
committerJosh Blum <josh@joshknows.com>2011-11-03 20:37:10 -0700
commitc480414fea7948dedd9428f545dfff90f4c8f2c8 (patch)
tree758d63c0cc33e6ecfbb1ae8a40270338af4f9d43
parent8c182d75e7adc20ff12cbc1065debd8dd4f2ef9d (diff)
downloaduhd-c480414fea7948dedd9428f545dfff90f4c8f2c8.tar.gz
uhd-c480414fea7948dedd9428f545dfff90f4c8f2c8.tar.bz2
uhd-c480414fea7948dedd9428f545dfff90f4c8f2c8.zip
uhd: work on streamer interface, lots of docstrings
-rw-r--r--host/include/uhd/streamer.hpp170
1 files changed, 170 insertions, 0 deletions
diff --git a/host/include/uhd/streamer.hpp b/host/include/uhd/streamer.hpp
new file mode 100644
index 000000000..eed18e773
--- /dev/null
+++ b/host/include/uhd/streamer.hpp
@@ -0,0 +1,170 @@
+//
+// Copyright 2011 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_UHD_STREAMER_HPP
+#define INCLUDED_UHD_STREAMER_HPP
+
+#include <uhd/config.hpp>
+#include <boost/utility.hpp>
+#include <boost/shared_ptr.hpp>
+#include <string>
+
+namespace uhd{
+
+/*!
+ * A streamer is the host interface to RX or TX samples.
+ * It represents the layer between the samples on the host
+ * and samples inside the device's DSP processing.
+ */
+class UHD_API streamer : boost::noncopyable{
+public:
+ //! Get the number of channels associated with this streamer
+ virtual size_t get_num_channels(void) const = 0;
+
+ /*!
+ * \brief Set the format for all channels in this streamer.
+ *
+ * The CPU format is a string that describes the format of host memory.
+ * Common CPU formats are:
+ * - fc32 - complex<float>
+ * - fc64 - complex<double>
+ * - sc16 - complex<int16_t>
+ * - sc8 - complex<int8_t>
+ * - f32 - float
+ * - f64 - double
+ * - s16 - int16_t
+ * - s8 - int8_t
+ *
+ * The OTW format is a string that describes the format over-the-wire.
+ * Common OTW format are:
+ * - sc16 - Q16 I16
+ * - sc8 - Q8_1 I8_1 Q8_0 I8_0
+ * - s16 - R16_1 R16_0
+ * - s8 - R8_3 R8_2 R8_1 R8_0
+ *
+ * The args parameter is currently unused. Leave it blank.
+ * The intention is that a user with a custom DSP design
+ * may want to pass args and do something special with it.
+ *
+ * Note:
+ * Not all combinations of CPU and OTW format have conversion support.
+ * You may however write and register your own conversion routines.
+ *
+ * \param cpu_format the data format for samples used on the host
+ * \param otw_format the data format of the samples over the wire
+ * \param args optional arguments to augment the format
+ */
+ virtual void set_format(
+ const std::string &cpu_format,
+ const std::string &otw_format,
+ const std::string &args = ""
+ ) = 0;
+
+ //! Get the number of bytes per CPU item/sample
+ virtual size_t get_bytes_per_cpu_item(void) const = 0;
+
+ //! Get the number of bytes per OTW item/sample
+ virtual size_t get_bytes_per_otw_item(void) const = 0;
+
+ //! Get the max number of items/samples per packet
+ virtual size_t get_items_per_packet(void) const = 0;
+
+ //TODO enumerate cpu and otw format options
+
+};
+
+//! A RX streamer to receive host samples
+class UHD_API rx_streamer : public streamer{
+public:
+ typedef boost::shared_ptr<rx_streamer> sptr;
+
+ //! Typedef for a pointer to a single, or a collection of recv buffers
+ typedef ref_vector<void *> recv_buffs_type;
+
+ /*!
+ * Receive buffers containing samples described by the metadata.
+ *
+ * Receive handles fragmentation as follows:
+ * If the buffer has insufficient space to hold all samples
+ * that were received in a single packet over-the-wire,
+ * then the buffer will be completely filled and the implementation
+ * will hold a pointer into the remaining portion of the packet.
+ * Subsequent calls will load from the remainder of the packet,
+ * and will flag the metadata to show that this is a fragment.
+ * The next call to receive, after the remainder becomes exahausted,
+ * will perform an over-the-wire receive as usual.
+ * See the rx metadata fragment flags and offset fields for details.
+ *
+ * This is a blocking call and will not return until the number
+ * of samples returned have been written into each buffer.
+ * Under a timeout condition, the number of samples returned
+ * may be less than the number of samples specified.
+ *
+ * \param buffs a vector of writable memory to fill with samples
+ * \param nsamps_per_buff the size of each buffer in number of samples
+ * \param metadata data to fill describing the buffer
+ * \param timeout the timeout in seconds to wait for a packet
+ * \return the number of samples received or 0 on error
+ */
+ virtual size_t recv(
+ const recv_buffs_type &buffs,
+ size_t nsamps_per_buff,
+ rx_metadata_t &metadata,
+ double timeout = 0.1
+ ) = 0;
+};
+
+//! A TX streamer to transmit host samples
+class UHD_API rx_streamer : public streamer{
+public:
+ typedef boost::shared_ptr<tx_streamer> sptr;
+
+ //! Typedef for a pointer to a single, or a collection of send buffers
+ typedef ref_vector<const void *> send_buffs_type;
+
+ /*!
+ * Send buffers containing samples described by the metadata.
+ *
+ * Send handles fragmentation as follows:
+ * If the buffer has more items than the maximum per packet,
+ * the send method will fragment the samples across several packets.
+ * Send will respect the burst flags when fragmenting to ensure
+ * that start of burst can only be set on the first fragment and
+ * that end of burst can only be set on the final fragment.
+ *
+ * This is a blocking call and will not return until the number
+ * of samples returned have been read out of each buffer.
+ * Under a timeout condition, the number of samples returned
+ * may be less than the number of samples specified.
+ *
+ * \param buffs a vector of read-only memory containing samples
+ * \param nsamps_per_buff the number of samples to send, per buffer
+ * \param metadata data describing the buffer's contents
+ * \param timeout the timeout in seconds to wait on a packet
+ * \return the number of samples sent
+ */
+ virtual size_t send(
+ const send_buffs_type &buffs,
+ size_t nsamps_per_buff,
+ const tx_metadata_t &metadata,
+ double timeout = 0.1
+ ) = 0;
+};
+
+} //namespace uhd
+
+#endif /* INCLUDED_UHD_STREAMER_HPP */