// // 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 . // #ifndef INCLUDED_LIBUHD_TRANSPORT_SUPER_SEND_PACKET_HANDLER_HPP #define INCLUDED_LIBUHD_TRANSPORT_SUPER_SEND_PACKET_HANDLER_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace uhd{ namespace transport{ namespace sph{ /*********************************************************************** * Super send packet handler * * A send packet handler represents a group of channels. * The channel group shares a common sample rate. * All channels are sent in unison in send(). **********************************************************************/ class send_packet_handler{ public: typedef boost::function get_buff_type; typedef void(*vrt_packer_type)(boost::uint32_t *, vrt::if_packet_info_t &); //typedef boost::function vrt_packer_type; /*! * Make a new packet handler for send * \param size the number of transport channels */ send_packet_handler(const size_t size = 1): _next_packet_seq(0) { this->resize(size); } //! Resize the number of transport channels void resize(const size_t size){ if (this->size() == size) return; _props.resize(size); static const boost::uint64_t zero = 0; _zero_buffs.resize(size, &zero); } //! Get the channel width of this handler size_t size(void) const{ return _props.size(); } //! Setup the vrt packer function and offset void set_vrt_packer(const vrt_packer_type &vrt_packer, const size_t header_offset_words32 = 0){ _vrt_packer = vrt_packer; _header_offset_words32 = header_offset_words32; } //! Set the rate of ticks per second void set_tick_rate(const double rate){ _tick_rate = rate; } //! Set the rate of samples per second void set_samp_rate(const double rate){ _samp_rate = rate; } /*! * Set the function to get a managed buffer. * \param xport_chan which transport channel * \param get_buff the getter function */ void set_xport_chan_get_buff(const size_t xport_chan, const get_buff_type &get_buff){ _props.at(xport_chan).get_buff = get_buff; } /*! * Setup the conversion functions (homogeneous across transports). * Here, we load a table of converters for all possible io types. * This makes the converter look-up an O(1) operation. * \param otw_type the channel data type * \param width the streams per channel (usually 1) */ void set_converter(const uhd::otw_type_t &otw_type, const size_t width = 1){ _io_buffs.resize(width); _converters.resize(128); for (size_t io_type = 0; io_type < _converters.size(); io_type++){ try{ _converters[io_type] = uhd::convert::get_converter_cpu_to_otw( io_type_t::tid_t(io_type), otw_type, 1, width ); }catch(const uhd::value_error &){} //we expect this, not all io_types valid... } _bytes_per_item = otw_type.get_sample_size(); } /*! * Set the maximum number of samples per host packet. * Ex: A USRP1 in dual channel mode would be half. * \param num_samps the maximum samples in a packet */ void set_max_samples_per_packet(const size_t num_samps){ _max_samples_per_packet = num_samps; } //! Get a scoped lock object for this instance boost::mutex::scoped_lock get_scoped_lock(void){ return boost::mutex::scoped_lock(_mutex); } /******************************************************************* * Send: * The entry point for the fast-path send calls. * Dispatch into combinations of single packet send calls. ******************************************************************/ UHD_INLINE size_t send( const uhd::device::send_buffs_type &buffs, const size_t nsamps_per_buff, const uhd::tx_metadata_t &metadata, const uhd::io_type_t &io_type, uhd::device::send_mode_t send_mode, double timeout ){ boost::mutex::scoped_lock lock(_mutex); //translate the metadata to vrt if packet info vrt::if_packet_info_t if_packet_info; if_packet_info.has_sid = false; if_packet_info.has_cid = false; if_packet_info.has_tlr = false; if_packet_info.has_tsi = metadata.has_time_spec; if_packet_info.has_tsf = metadata.has_time_spec; if_packet_info.tsi = boost::uint32_t(metadata.time_spec.get_full_secs()); if_packet_info.tsf = boost::uint64_t(metadata.time_spec.get_tick_count(_tick_rate)); if_packet_info.sob = metadata.start_of_burst; if_packet_info.eob = metadata.end_of_burst; if (nsamps_per_buff <= _max_samples_per_packet) send_mode = uhd::device::SEND_MODE_ONE_PACKET; switch(send_mode){ //////////////////////////////////////////////////////////////// case uhd::device::SEND_MODE_ONE_PACKET:{ //////////////////////////////////////////////////////////////// //TODO remove this code when sample counts of zero are supported by hardware if (nsamps_per_buff == 0) return send_one_packet( _zero_buffs, 1, if_packet_info, io_type, timeout ); return send_one_packet( buffs, std::min(nsamps_per_buff, _max_samples_per_packet), if_packet_info, io_type, timeout ); } //////////////////////////////////////////////////////////////// case uhd::device::SEND_MODE_FULL_BUFF:{ //////////////////////////////////////////////////////////////// size_t total_num_samps_sent = 0; //false until final fragment if_packet_info.eob = false; const size_t num_fragments = (nsamps_per_buff-1)/_max_samples_per_packet; const size_t final_length = ((nsamps_per_buff-1)%_max_samples_per_packet)+1; //loop through the following fragment indexes for (size_t i = 0; i < num_fragments; i++){ //send a fragment with the helper function const size_t num_samps_sent = send_one_packet( buffs, _max_samples_per_packet, if_packet_info, io_type, timeout, total_num_samps_sent*io_type.size ); total_num_samps_sent += num_samps_sent; if (num_samps_sent == 0) return total_num_samps_sent; //setup metadata for the next fragment const time_spec_t time_spec = metadata.time_spec + time_spec_t(0, total_num_samps_sent, _samp_rate); if_packet_info.tsi = boost::uint32_t(time_spec.get_full_secs()); if_packet_info.tsf = boost::uint64_t(time_spec.get_tick_count(_tick_rate)); if_packet_info.sob = false; } //send the final fragment with the helper function if_packet_info.eob = metadata.end_of_burst; return total_num_samps_sent + send_one_packet( buffs, final_length, if_packet_info, io_type, timeout, total_num_samps_sent*io_type.size ); } default: throw uhd::value_error("unknown send mode"); }//switch(send_mode) } private: boost::mutex _mutex; vrt_packer_type _vrt_packer; size_t _header_offset_words32; double _tick_rate, _samp_rate; struct xport_chan_props_type{ get_buff_type get_buff; }; std::vector _props; std::vector _io_buffs; //used in conversion size_t _bytes_per_item; //used in conversion std::vector _converters; //used in conversion size_t _max_samples_per_packet; std::vector _zero_buffs; size_t _next_packet_seq; /******************************************************************* * Send a single packet: ******************************************************************/ UHD_INLINE size_t send_one_packet( const uhd::device::send_buffs_type &buffs, const size_t nsamps_per_buff, vrt::if_packet_info_t &if_packet_info, const uhd::io_type_t &io_type, double timeout, const size_t buffer_offset_bytes = 0 ){ //load the rest of the if_packet_info in here if_packet_info.num_payload_words32 = (nsamps_per_buff*_io_buffs.size()*_bytes_per_item)/sizeof(boost::uint32_t); if_packet_info.packet_count = _next_packet_seq; size_t buff_index = 0; BOOST_FOREACH(xport_chan_props_type &props, _props){ managed_send_buffer::sptr buff = props.get_buff(timeout); if (buff.get() == NULL) return 0; //timeout //fill a vector with pointers to the io buffers BOOST_FOREACH(const void *&io_buff, _io_buffs){ io_buff = reinterpret_cast(buffs[buff_index++]) + buffer_offset_bytes; } boost::uint32_t *otw_mem = buff->cast() + _header_offset_words32; //pack metadata into a vrt header _vrt_packer(otw_mem, if_packet_info); otw_mem += if_packet_info.num_header_words32; //copy-convert the samples into the send buffer _converters[io_type.tid](_io_buffs, otw_mem, nsamps_per_buff, 32767.); //commit the samples to the zero-copy interface size_t num_bytes_total = (_header_offset_words32+if_packet_info.num_packet_words32)*sizeof(boost::uint32_t); buff->commit(num_bytes_total); } _next_packet_seq++; //increment sequence after commits return nsamps_per_buff; } }; }}} //namespace #endif /* INCLUDED_LIBUHD_TRANSPORT_SUPER_SEND_PACKET_HANDLER_HPP */