blob: fd93d79e8b4d628c9b5470c8003036f4b8b95811 [file] [log] [blame]
piotr6c692872014-02-08 14:16:26 +01001/* -*- c++ -*- */
ptrkrysik529895b2014-12-02 18:07:38 +01002/*
3 * @file
4 * @author Piotr Krysik <ptrkrysik@gmail.com>
5 * @section LICENSE
6 *
7 * Gr-gsm is free software; you can redistribute it and/or modify
piotr6c692872014-02-08 14:16:26 +01008 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3, or (at your option)
10 * any later version.
ptrkrysik529895b2014-12-02 18:07:38 +010011 *
12 * Gr-gsm is distributed in the hope that it will be useful,
piotr6c692872014-02-08 14:16:26 +010013 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
ptrkrysik529895b2014-12-02 18:07:38 +010016 *
piotr6c692872014-02-08 14:16:26 +010017 * You should have received a copy of the GNU General Public License
ptrkrysik529895b2014-12-02 18:07:38 +010018 * along with gr-gsm; see the file COPYING. If not, write to
piotr6c692872014-02-08 14:16:26 +010019 * the Free Software Foundation, Inc., 51 Franklin Street,
20 * Boston, MA 02110-1301, USA.
21 */
22
23#ifdef HAVE_CONFIG_H
24#include "config.h"
25#endif
26
27#include <gnuradio/io_signature.h>
ptrkrysik3be74a72014-12-13 10:11:00 +010028#include <grgsm/gsmtap.h>
Martin Jesper Low Madsenaf769642015-04-28 22:33:43 +020029#include <grgsm/endian.h>
piotr6d152d92014-02-21 00:02:44 +010030#include <iterator>
31#include <algorithm>
piotrfaacc722014-07-20 23:48:32 +020032#include "bursts_printer_impl.h"
piotrc00ce9c2014-08-04 11:21:24 +020033#include <unistd.h>
34
35#include <iostream>
piotr6c692872014-02-08 14:16:26 +010036
37namespace gr {
38 namespace gsm {
piotrc00ce9c2014-08-04 11:21:24 +020039 boost::mutex printer_mutex;
Roman Khassraf7faabf32015-07-24 14:14:16 +020040 // dummy burst defined in gsm 05.02, section 5.2.6
41 const int8_t bursts_printer_impl::d_dummy_burst[] = {0,0,0,
42 1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,0,
43 0,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,
44 0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,
45 0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,
46 0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,
47 0,1,0,1,0,1,1,1,0,1,0,0,1,0,1,0,
48 0,0,1,1,0,0,1,1,0,0,1,1,1,0,0,1,
49 1,1,1,0,1,0,0,1,1,1,1,1,0,0,0,1,
50 0,0,1,0,1,1,1,1,1,0,1,0,1,0,
51 0,0,0 };
52
piotr6d152d92014-02-21 00:02:44 +010053 void bursts_printer_impl::bursts_print(pmt::pmt_t msg)
piotr6c692872014-02-08 14:16:26 +010054 {
ptrkrysik617ba032014-11-21 10:11:05 +010055 pmt::pmt_t header_plus_burst = pmt::cdr(msg);
piotr6c692872014-02-08 14:16:26 +010056
ptrkrysik617ba032014-11-21 10:11:05 +010057 gsmtap_hdr * header = (gsmtap_hdr *)pmt::blob_data(header_plus_burst);
58 int8_t * burst = (int8_t *)(pmt::blob_data(header_plus_burst))+sizeof(gsmtap_hdr);
59 size_t burst_len=pmt::blob_length(header_plus_burst)-sizeof(gsmtap_hdr);
Roman Khassraf63444962015-07-13 13:42:57 +020060 uint32_t frame_nr = be32toh(header->frame_number);
Martin Jesper Low Madsenaf769642015-04-28 22:33:43 +020061
Roman Khassraf7faabf32015-07-24 14:14:16 +020062 if (d_ignore_dummy_bursts && is_dummy_burst(burst, burst_len))
63 {
64 return;
65 }
66
Jacob Gilbert607a09e2014-12-13 10:41:20 -080067 std::cout << d_prepend_string;
Martin Jesper Low Madsenaf769642015-04-28 22:33:43 +020068 if (d_prepend_fnr)
Roman Khassraf717b57b2015-04-12 18:09:45 +020069 {
Roman Khassraf63444962015-07-13 13:42:57 +020070 std::cout << frame_nr;
Martin Jesper Low Madsenaf769642015-04-28 22:33:43 +020071 }
Roman Khassraf717b57b2015-04-12 18:09:45 +020072
Roman Khassraf63444962015-07-13 13:42:57 +020073 if (d_prepend_fnr && d_prepend_frame_count)
piotr6c692872014-02-08 14:16:26 +010074 {
Roman Khassraf63444962015-07-13 13:42:57 +020075 std::cout << " ";
piotr6c692872014-02-08 14:16:26 +010076 }
Roman Khassraf63444962015-07-13 13:42:57 +020077
78 if (d_prepend_frame_count)
79 {
80 // calculate frame count for A5
81 uint16_t t1 = frame_nr/1326;
82 uint8_t t2 = frame_nr % 26;
83 uint8_t t3 = frame_nr % 51;
84 uint32_t frame_count = (t1<<11)|(t3<<5)|t2;
85 std::cout << frame_count;
86 }
87
88 if (d_prepend_fnr || d_prepend_frame_count)
89 {
Roman Khassraff1111eb2015-07-13 13:58:25 +020090 std::cout << ": ";
Roman Khassraf63444962015-07-13 13:42:57 +020091 }
92
93 if (d_print_payload_only)
94 {
95 for (int ii=0; ii<57; ii++)
96 {
97 std::cout << std::setprecision(1) << static_cast<int>(burst[ii + 3]);
98 }
99 for (int ii=0; ii<57; ii++)
100 {
101 std::cout << std::setprecision(1) << static_cast<int>(burst[ii + 88]);
102 }
103 }
104 else
105 {
106 for(int ii=0; ii<burst_len; ii++)
107 {
108 std::cout << std::setprecision(1) << static_cast<int>(burst[ii]);
109 }
110 }
111
piotr6c692872014-02-08 14:16:26 +0100112 std::cout << std::endl;
113 }
Martin Jesper Low Madsenaf769642015-04-28 22:33:43 +0200114
Roman Khassraf7faabf32015-07-24 14:14:16 +0200115 bool bursts_printer_impl::is_dummy_burst(int8_t *burst, size_t burst_len)
116 {
117 if (burst_len != DUMMY_BURST_LEN)
118 {
119 return false;
120 }
121 for (int i=0; i<DUMMY_BURST_LEN; i++)
122 {
123 if (burst[i] != d_dummy_burst[i])
124 {
125 return false;
126 }
127 }
128 return true;
129 }
130
piotr6c692872014-02-08 14:16:26 +0100131 bursts_printer::sptr
Roman Khassraf63444962015-07-13 13:42:57 +0200132 bursts_printer::make(pmt::pmt_t prepend_string, bool prepend_fnr,
Roman Khassraf7faabf32015-07-24 14:14:16 +0200133 bool prepend_frame_count, bool print_payload_only,
134 bool ignore_dummy_bursts)
piotr6c692872014-02-08 14:16:26 +0100135 {
136 return gnuradio::get_initial_sptr
Roman Khassraf7faabf32015-07-24 14:14:16 +0200137 (new bursts_printer_impl(prepend_string, prepend_fnr, prepend_frame_count,
138 print_payload_only, ignore_dummy_bursts));
piotr6c692872014-02-08 14:16:26 +0100139 }
140
141 /*
142 * The private constructor
143 */
Roman Khassraf63444962015-07-13 13:42:57 +0200144 bursts_printer_impl::bursts_printer_impl(pmt::pmt_t prepend_string, bool prepend_fnr,
Roman Khassraf7faabf32015-07-24 14:14:16 +0200145 bool prepend_frame_count, bool print_payload_only,
146 bool ignore_dummy_bursts)
piotr6c692872014-02-08 14:16:26 +0100147 : gr::block("bursts_printer",
148 gr::io_signature::make(0, 0, 0),
149 gr::io_signature::make(0, 0, 0))
150 {
Jacob Gilbert607a09e2014-12-13 10:41:20 -0800151 d_prepend_string = prepend_string;
Roman Khassraf717b57b2015-04-12 18:09:45 +0200152 d_prepend_fnr = prepend_fnr;
Roman Khassraf63444962015-07-13 13:42:57 +0200153 d_prepend_frame_count = prepend_frame_count;
154 d_print_payload_only = print_payload_only;
Roman Khassraf7faabf32015-07-24 14:14:16 +0200155 d_ignore_dummy_bursts = ignore_dummy_bursts;
156
piotr6c692872014-02-08 14:16:26 +0100157 message_port_register_in(pmt::mp("bursts"));
158 set_msg_handler(pmt::mp("bursts"), boost::bind(&bursts_printer_impl::bursts_print, this, _1));
159 }
Martin Jesper Low Madsenaf769642015-04-28 22:33:43 +0200160
piotr6c692872014-02-08 14:16:26 +0100161 /*
162 * Our virtual destructor.
163 */
164 bursts_printer_impl::~bursts_printer_impl()
165 {
166 }
167
168
169 } /* namespace gsm */
170} /* namespace gr */