00001 /* -*- c++ -*- */ 00002 /* 00003 * Copyright 2005,2006 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 2, 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., 59 Temple Place - Suite 330, 00020 * Boston, MA 02111-1307, USA. 00021 */ 00022 00023 #ifndef INCLUDED_GR_FRAMER_SINK_1_H 00024 #define INCLUDED_GR_FRAMER_SINK_1_H 00025 00026 #include <gr_sync_block.h> 00027 #include <gr_msg_queue.h> 00028 00029 class gr_framer_sink_1; 00030 typedef boost::shared_ptr<gr_framer_sink_1> gr_framer_sink_1_sptr; 00031 00032 gr_framer_sink_1_sptr 00033 gr_make_framer_sink_1 (gr_msg_queue_sptr target_queue); 00034 00053 class gr_framer_sink_1 : public gr_sync_block 00054 { 00055 friend gr_framer_sink_1_sptr 00056 gr_make_framer_sink_1 (gr_msg_queue_sptr target_queue); 00057 00058 private: 00059 enum state_t {STATE_SYNC_SEARCH, STATE_HAVE_SYNC, STATE_HAVE_HEADER}; 00060 00061 static const int MAX_PKT_LEN = 4096; 00062 static const int HEADERBITLEN = 32; 00063 00064 gr_msg_queue_sptr d_target_queue; // where to send the packet when received 00065 state_t d_state; 00066 unsigned int d_header; // header bits 00067 int d_headerbitlen_cnt; // how many so far 00068 00069 unsigned char d_packet[MAX_PKT_LEN]; // assembled payload 00070 unsigned char d_packet_byte; // byte being assembled 00071 int d_packet_byte_index; // which bit of d_packet_byte we're working on 00072 int d_packetlen; // length of packet 00073 int d_packetlen_cnt; // how many so far 00074 00075 protected: 00076 gr_framer_sink_1(gr_msg_queue_sptr target_queue); 00077 00078 void enter_search(); 00079 void enter_have_sync(); 00080 void enter_have_header(int payload_len); 00081 00082 bool header_ok() 00083 { 00084 // confirm that two copies of header info are identical 00085 return ((d_header >> 16) ^ (d_header & 0xffff)) == 0; 00086 } 00087 00088 int header_payload_len() 00089 { 00090 // header consists of two 16-bit shorts in network byte order 00091 int t = (d_header >> 16) & 0xffff; 00092 return t; 00093 } 00094 00095 public: 00096 ~gr_framer_sink_1(); 00097 00098 int work(int noutput_items, 00099 gr_vector_const_void_star &input_items, 00100 gr_vector_void_star &output_items); 00101 }; 00102 00103 #endif /* INCLUDED_GR_FRAMER_SINK_1_H */