GNU Radio 3.6.5 C++ API

tag_debug.h

Go to the documentation of this file.
00001 /* -*- c++ -*- */
00002 /*
00003  * Copyright 2012-2013 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_GR_TAG_DEBUG_H
00024 #define INCLUDED_GR_TAG_DEBUG_H
00025 
00026 #include <blocks/api.h>
00027 #include <gr_sync_block.h>
00028 
00029 namespace gr {
00030   namespace blocks {
00031 
00032     /*!
00033      * \brief Bit bucket that prints out any tag received.
00034      * \ingroup measurement_tools_blk
00035      * \ingroup stream_tag_tools_blk
00036      * \ingroup debug_tools_blk
00037      *
00038      * \details
00039      * This block collects all tags sent to it on all input ports and
00040      * displays them to stdout in a formatted way. The \p name
00041      * parameter is used to identify which debug sink generated the
00042      * tag, so when connecting a block to this debug sink, an
00043      * appropriate name is something that identifies the input block.
00044      *
00045      * This block otherwise acts as a NULL sink in that items from the
00046      * input stream are ignored. It is designed to be able to attach
00047      * to any block and watch all tags streaming out of that block for
00048      * debugging purposes.
00049      *
00050      * The tags from the last call to this work function are stored
00051      * and can be retrieved using the function 'current_tags'.
00052      */
00053     class BLOCKS_API tag_debug : virtual public gr_sync_block
00054     {
00055     public:
00056       // gr::blocks::tag_debug::sptr
00057       typedef boost::shared_ptr<tag_debug> sptr;
00058 
00059       /*!
00060        * Build a tag debug block
00061        *
00062        * \param sizeof_stream_item size of the items in the incoming stream.
00063        * \param name name to identify which debug sink generated the info.
00064        */
00065       static sptr make(size_t sizeof_stream_item,
00066                        const std::string &name);
00067 
00068       /*!
00069        * \brief Returns a vector of gr_tag_t items as of the last call to
00070        * work.
00071        */
00072       virtual std::vector<gr_tag_t> current_tags() = 0;
00073 
00074       /*!
00075        * \brief Set the display of tags to stdout on/off.
00076        */
00077       virtual void set_display(bool d) = 0;
00078     };
00079 
00080   } /* namespace blocks */
00081 } /* namespace gr */
00082 
00083 #endif /* INCLUDED_GR_TAG_DEBUG_H */