GNU Radio 3.6.5 C++ API
|
00001 /* -*- c++ -*- */ 00002 /* 00003 * Copyright 2012 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 <gr_core_api.h> 00027 #include <gr_sync_block.h> 00028 #include <gruel/thread.h> 00029 #include <stddef.h> 00030 00031 class gr_tag_debug; 00032 typedef boost::shared_ptr<gr_tag_debug> gr_tag_debug_sptr; 00033 00034 GR_CORE_API gr_tag_debug_sptr 00035 gr_make_tag_debug(size_t sizeof_stream_item, const std::string &name); 00036 00037 /*! 00038 * \brief Bit bucket that prints out any tag received. 00039 * 00040 * This block collects all tags sent to it on all input ports and 00041 * displays them to stdout in a formatted way. The \p name parameter 00042 * is used to identify which debug sink generated the tag, so when 00043 * connecting a block to this debug sink, an appropriate name is 00044 * something that identifies the input block. 00045 * 00046 * This block otherwise acts as a NULL sink in that items from the 00047 * input stream are ignored. It is designed to be able to attach to 00048 * any block and watch all tags streaming out of that block for 00049 * debugging purposes. 00050 * 00051 * The tags from the last call to this work function are stored and 00052 * can be retrieved using the function 'current_tags'. 00053 */ 00054 class GR_CORE_API gr_tag_debug : public gr_sync_block 00055 { 00056 private: 00057 friend GR_CORE_API gr_tag_debug_sptr 00058 gr_make_tag_debug(size_t sizeof_stream_item, const std::string &name); 00059 gr_tag_debug(size_t sizeof_stream_item, const std::string &name); 00060 00061 std::string d_name; 00062 std::vector<gr_tag_t> d_tags; 00063 std::vector<gr_tag_t>::iterator d_tags_itr; 00064 bool d_display; 00065 gruel::mutex d_mutex; 00066 00067 public: 00068 /*! 00069 * \brief Returns a vector of gr_tag_t items as of the last call to 00070 * work. 00071 */ 00072 std::vector<gr_tag_t> current_tags(); 00073 00074 /*! 00075 * \brief Set the display of tags to stdout on/off. 00076 */ 00077 void set_display(bool d); 00078 00079 int work(int noutput_items, 00080 gr_vector_const_void_star &input_items, 00081 gr_vector_void_star &output_items); 00082 }; 00083 00084 #endif /* INCLUDED_GR_TAG_DEBUG_H */