GNU Radio 3.4.2 C++ API
rx_32fc_handler.h
Go to the documentation of this file.
00001 /* -*- c++ -*- */
00002 /*
00003  * Copyright 2008 Free Software Foundation, Inc.
00004  * 
00005  * This file is part of GNU Radio
00006  * 
00007  * GNU Radio is free software; you can redistribute it and/or modify
00008  * it under the terms of the GNU General Public License as published by
00009  * the Free Software Foundation; either version 3, or (at your option)
00010  * any later version.
00011  * 
00012  * GNU Radio is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  * GNU General Public License for more details.
00016  * 
00017  * You should have received a copy of the GNU General Public License
00018  * along with GNU Radio; see the file COPYING.  If not, write to
00019  * the Free Software Foundation, Inc., 51 Franklin Street,
00020  * Boston, MA 02110-1301, USA.
00021  */
00022 
00023 #ifndef INCLUDED_RX_32FC_HANDLER_H
00024 #define INCLUDED_RX_32FC_HANDLER_H
00025 
00026 #include <usrp2/rx_nop_handler.h>
00027 #include <usrp2/copiers.h>
00028 #include <gr_complex.h>
00029 
00030 class rx_32fc_handler : public usrp2::rx_nop_handler
00031 {
00032   gr_complex *d_dest;
00033 
00034   // Private constructor
00035   rx_32fc_handler(uint64_t max_samples, uint64_t max_quantum, gr_complex *dest)
00036     : rx_nop_handler(max_samples, max_quantum), d_dest(dest) {}
00037 
00038 public:
00039   // Shared pointer to one of these
00040   typedef boost::shared_ptr<rx_32fc_handler> sptr;
00041 
00042   // Factory function to return a shared pointer to a new instance
00043   static sptr make(uint64_t max_samples, uint64_t max_quantum, gr_complex *dest) 
00044   {
00045     return sptr(new rx_32fc_handler(max_samples, max_quantum, dest));
00046   }
00047 
00048   // Invoked by USRP2 API when samples are available
00049   bool operator()(const uint32_t *items, size_t nitems, const usrp2::rx_metadata *metadata)
00050   {
00051     // Copy/reformat/endian swap USRP2 data to destination buffer
00052     usrp2::copy_u2_16sc_to_host_32fc(nitems, items, d_dest);
00053     d_dest += nitems;
00054 
00055     // FIXME: do something with metadata
00056 
00057     // Call parent to determine if there is room to be called again
00058     return rx_nop_handler::operator()(items, nitems, metadata);
00059   }
00060 
00061   ~rx_32fc_handler();
00062 };
00063 
00064 #endif /* INCLUDED_RX_32FC_HANDLER_H */