blob: f415eafbee1fa1471d373fbc67a0a9872c532a8a [file] [log] [blame]
Roman Khassraf462fa452015-07-20 17:46:52 +02001/* -*- c++ -*- */
2/* @file
Piotr Krysika6268a52017-08-23 16:02:19 +02003 * @author (C) 2015 by Roman Khassraf <rkhassraf@gmail.com>
Roman Khassraf462fa452015-07-20 17:46:52 +02004 * @section LICENSE
5 *
6 * Gr-gsm is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3, or (at your option)
9 * any later version.
10 *
11 * Gr-gsm is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with gr-gsm; see the file COPYING. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street,
19 * Boston, MA 02110-1301, USA.
20 *
21 */
22
23#ifdef HAVE_CONFIG_H
24#include "config.h"
25#endif
26
27#include <gnuradio/io_signature.h>
Roman Khassraf1ce44692015-08-03 11:16:10 +020028#include "burst_source_impl.h"
Roman Khassraf462fa452015-07-20 17:46:52 +020029#include "stdio.h"
Martin Haukea7cafdd2015-08-01 13:01:13 +020030#include <boost/scoped_ptr.hpp>
Roman Khassraf462fa452015-07-20 17:46:52 +020031#include <grgsm/gsmtap.h>
32#include <grgsm/endian.h>
33
Roman Khassraf462fa452015-07-20 17:46:52 +020034namespace gr {
35 namespace gsm {
36
Roman Khassraf1ce44692015-08-03 11:16:10 +020037 burst_source::sptr
38 burst_source::make(const std::vector<int> &framenumbers,
Roman Khassraf462fa452015-07-20 17:46:52 +020039 const std::vector<int> &timeslots,
40 const std::vector<std::string> &burst_data)
41 {
42 return gnuradio::get_initial_sptr
Roman Khassraf1ce44692015-08-03 11:16:10 +020043 (new burst_source_impl(framenumbers, timeslots, burst_data));
Roman Khassraf462fa452015-07-20 17:46:52 +020044 }
45
46 /*
47 * The private constructor
48 */
Roman Khassraf1ce44692015-08-03 11:16:10 +020049 burst_source_impl::burst_source_impl(const std::vector<int> &framenumbers,
Roman Khassraf462fa452015-07-20 17:46:52 +020050 const std::vector<int> &timeslots,
51 const std::vector<std::string> &burst_data)
Roman Khassraf1ce44692015-08-03 11:16:10 +020052 : gr::block("burst_source",
Roman Khassraf462fa452015-07-20 17:46:52 +020053 gr::io_signature::make(0, 0, 0),
54 gr::io_signature::make(0, 0, 0)),
55 d_finished(false)
56 {
57 message_port_register_out(pmt::mp("out"));
58 set_framenumbers(framenumbers);
59 set_timeslots(timeslots);
60 set_burst_data(burst_data);
61 }
62
63 /*
64 * Our virtual destructor.
65 */
Roman Khassraf1ce44692015-08-03 11:16:10 +020066 burst_source_impl::~burst_source_impl()
Roman Khassraf462fa452015-07-20 17:46:52 +020067 {
68 if (d_finished == false){
69 d_finished = true;
70 }
71 }
72
Roman Khassraf1ce44692015-08-03 11:16:10 +020073 void burst_source_impl::set_framenumbers(const std::vector<int> &framenumbers)
Roman Khassraf462fa452015-07-20 17:46:52 +020074 {
75 d_framenumbers = framenumbers;
76 }
77
Roman Khassraf1ce44692015-08-03 11:16:10 +020078 void burst_source_impl::set_timeslots(const std::vector<int> &timeslots)
Roman Khassraf462fa452015-07-20 17:46:52 +020079 {
80 d_timeslots = timeslots;
81 }
82
Roman Khassraf1ce44692015-08-03 11:16:10 +020083 void burst_source_impl::set_burst_data(const std::vector<std::string> &burst_data)
Roman Khassraf462fa452015-07-20 17:46:52 +020084 {
85 d_burst_data = burst_data;
86 }
87
Roman Khassraf1ce44692015-08-03 11:16:10 +020088 bool burst_source_impl::start()
Roman Khassraf462fa452015-07-20 17:46:52 +020089 {
90 d_finished = false;
91 d_thread = boost::shared_ptr<gr::thread::thread>
Roman Khassraf1ce44692015-08-03 11:16:10 +020092 (new gr::thread::thread(boost::bind(&burst_source_impl::run, this)));
Roman Khassraf462fa452015-07-20 17:46:52 +020093 return block::start();
94 }
95
Roman Khassraf1ce44692015-08-03 11:16:10 +020096 bool burst_source_impl::stop()
Roman Khassraf462fa452015-07-20 17:46:52 +020097 {
98 d_finished = true;
99 d_thread->interrupt();
100 d_thread->join();
101 return block::stop();
102 }
103
Roman Khassraf1ce44692015-08-03 11:16:10 +0200104 bool burst_source_impl::finished()
Roman Khassraf462fa452015-07-20 17:46:52 +0200105 {
106 return d_finished;
107 }
108
Roman Khassraf1ce44692015-08-03 11:16:10 +0200109 void burst_source_impl::run()
Roman Khassraf462fa452015-07-20 17:46:52 +0200110 {
Roman Khassraf462fa452015-07-20 17:46:52 +0200111 for (int i=0; i<d_burst_data.size(); i++)
112 {
113 if (d_burst_data[i].length() == BURST_SIZE &&
114 d_timeslots[i] >= 0 && d_timeslots[i] <= 7 &&
115 d_framenumbers[i] >= 0 && d_framenumbers[i] <= (26 * 51 * 2048 - 1))
116 {
117 boost::scoped_ptr<gsmtap_hdr> tap_header(new gsmtap_hdr());
118
119 tap_header->version = GSMTAP_VERSION;
120 tap_header->hdr_len = sizeof(gsmtap_hdr)/4;
121 tap_header->type = GSMTAP_TYPE_UM_BURST;
122 tap_header->timeslot = d_timeslots[i];
123 tap_header->frame_number = htobe32(d_framenumbers[i]);
124 tap_header->sub_type = GSMTAP_BURST_NORMAL;
125 tap_header->arfcn = 0;
126 tap_header->signal_dbm = 0;
127 tap_header->snr_db = 0;
128
129 uint8_t burst[BURST_SIZE];
130
131 for (int j=0; j<BURST_SIZE; j++)
132 {
133 if (d_burst_data[i][j] == '0')
134 {
135 burst[j] = 0;
136 }
137 else
138 {
139 burst[j] = 1;
140 }
141 }
142
143 int8_t header_plus_burst[sizeof(gsmtap_hdr) + BURST_SIZE];
144 memcpy(header_plus_burst, tap_header.get(), sizeof(gsmtap_hdr));
145 memcpy(header_plus_burst + sizeof(gsmtap_hdr), burst, BURST_SIZE);
146
147 pmt::pmt_t blob_header_plus_burst = pmt::make_blob(header_plus_burst, sizeof(gsmtap_hdr) + BURST_SIZE);
148 pmt::pmt_t msg = pmt::cons(pmt::PMT_NIL, blob_header_plus_burst);
149
150 message_port_pub(pmt::mp("out"), msg);
151 }
152 }
153 post(pmt::mp("system"), pmt::cons(pmt::mp("done"), pmt::from_long(1)));
154 }
155 } /* namespace gsm */
156} /* namespace gr */
157
158