GNU Radio 3.6.5 C++ API
|
00001 /* -*- c++ -*- */ 00002 /* 00003 * Copyright 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_STREAM_PDU_BASE_H 00024 #define INCLUDED_STREAM_PDU_BASE_H 00025 00026 #include <gruel/thread.h> 00027 #include <gruel/pmt.h> 00028 00029 class gr_basic_block; 00030 00031 namespace gr { 00032 namespace blocks { 00033 00034 class stream_pdu_base 00035 { 00036 public: 00037 stream_pdu_base(int MTU=10000); 00038 ~stream_pdu_base(); 00039 00040 protected: 00041 int d_fd; 00042 bool d_started; 00043 bool d_finished; 00044 std::vector<uint8_t> d_rxbuf; 00045 gruel::thread d_thread; 00046 00047 pmt::pmt_t d_port; 00048 gr_basic_block *d_blk; 00049 00050 void run(); 00051 void send(pmt::pmt_t msg); 00052 bool wait_ready(); 00053 void start_rxthread(gr_basic_block *blk, pmt::pmt_t rxport); 00054 void stop_rxthread(); 00055 }; 00056 00057 } /* namespace blocks */ 00058 } /* namespace gr */ 00059 00060 #endif /* INCLUDED_STREAM_PDU_BASE_H */