blob: db3d85aa0fb31ac14cdbeb8b04f027a23de50223 [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
34#define PMT_SIZE 174
35
36namespace gr {
37 namespace gsm {
38
Roman Khassraf1ce44692015-08-03 11:16:10 +020039 burst_source::sptr
40 burst_source::make(const std::vector<int> &framenumbers,
Roman Khassraf462fa452015-07-20 17:46:52 +020041 const std::vector<int> &timeslots,
42 const std::vector<std::string> &burst_data)
43 {
44 return gnuradio::get_initial_sptr
Roman Khassraf1ce44692015-08-03 11:16:10 +020045 (new burst_source_impl(framenumbers, timeslots, burst_data));
Roman Khassraf462fa452015-07-20 17:46:52 +020046 }
47
48 /*
49 * The private constructor
50 */
Roman Khassraf1ce44692015-08-03 11:16:10 +020051 burst_source_impl::burst_source_impl(const std::vector<int> &framenumbers,
Roman Khassraf462fa452015-07-20 17:46:52 +020052 const std::vector<int> &timeslots,
53 const std::vector<std::string> &burst_data)
Roman Khassraf1ce44692015-08-03 11:16:10 +020054 : gr::block("burst_source",
Roman Khassraf462fa452015-07-20 17:46:52 +020055 gr::io_signature::make(0, 0, 0),
56 gr::io_signature::make(0, 0, 0)),
57 d_finished(false)
58 {
59 message_port_register_out(pmt::mp("out"));
60 set_framenumbers(framenumbers);
61 set_timeslots(timeslots);
62 set_burst_data(burst_data);
63 }
64
65 /*
66 * Our virtual destructor.
67 */
Roman Khassraf1ce44692015-08-03 11:16:10 +020068 burst_source_impl::~burst_source_impl()
Roman Khassraf462fa452015-07-20 17:46:52 +020069 {
70 if (d_finished == false){
71 d_finished = true;
72 }
73 }
74
Roman Khassraf1ce44692015-08-03 11:16:10 +020075 void burst_source_impl::set_framenumbers(const std::vector<int> &framenumbers)
Roman Khassraf462fa452015-07-20 17:46:52 +020076 {
77 d_framenumbers = framenumbers;
78 }
79
Roman Khassraf1ce44692015-08-03 11:16:10 +020080 void burst_source_impl::set_timeslots(const std::vector<int> &timeslots)
Roman Khassraf462fa452015-07-20 17:46:52 +020081 {
82 d_timeslots = timeslots;
83 }
84
Roman Khassraf1ce44692015-08-03 11:16:10 +020085 void burst_source_impl::set_burst_data(const std::vector<std::string> &burst_data)
Roman Khassraf462fa452015-07-20 17:46:52 +020086 {
87 d_burst_data = burst_data;
88 }
89
Roman Khassraf1ce44692015-08-03 11:16:10 +020090 bool burst_source_impl::start()
Roman Khassraf462fa452015-07-20 17:46:52 +020091 {
92 d_finished = false;
93 d_thread = boost::shared_ptr<gr::thread::thread>
Roman Khassraf1ce44692015-08-03 11:16:10 +020094 (new gr::thread::thread(boost::bind(&burst_source_impl::run, this)));
Roman Khassraf462fa452015-07-20 17:46:52 +020095 return block::start();
96 }
97
Roman Khassraf1ce44692015-08-03 11:16:10 +020098 bool burst_source_impl::stop()
Roman Khassraf462fa452015-07-20 17:46:52 +020099 {
100 d_finished = true;
101 d_thread->interrupt();
102 d_thread->join();
103 return block::stop();
104 }
105
Roman Khassraf1ce44692015-08-03 11:16:10 +0200106 bool burst_source_impl::finished()
Roman Khassraf462fa452015-07-20 17:46:52 +0200107 {
108 return d_finished;
109 }
110
Roman Khassraf1ce44692015-08-03 11:16:10 +0200111 void burst_source_impl::run()
Roman Khassraf462fa452015-07-20 17:46:52 +0200112 {
113 char *unserialized = (char*)malloc(sizeof(char) * PMT_SIZE);
114
115 for (int i=0; i<d_burst_data.size(); i++)
116 {
117 if (d_burst_data[i].length() == BURST_SIZE &&
118 d_timeslots[i] >= 0 && d_timeslots[i] <= 7 &&
119 d_framenumbers[i] >= 0 && d_framenumbers[i] <= (26 * 51 * 2048 - 1))
120 {
121 boost::scoped_ptr<gsmtap_hdr> tap_header(new gsmtap_hdr());
122
123 tap_header->version = GSMTAP_VERSION;
124 tap_header->hdr_len = sizeof(gsmtap_hdr)/4;
125 tap_header->type = GSMTAP_TYPE_UM_BURST;
126 tap_header->timeslot = d_timeslots[i];
127 tap_header->frame_number = htobe32(d_framenumbers[i]);
128 tap_header->sub_type = GSMTAP_BURST_NORMAL;
129 tap_header->arfcn = 0;
130 tap_header->signal_dbm = 0;
131 tap_header->snr_db = 0;
132
133 uint8_t burst[BURST_SIZE];
134
135 for (int j=0; j<BURST_SIZE; j++)
136 {
137 if (d_burst_data[i][j] == '0')
138 {
139 burst[j] = 0;
140 }
141 else
142 {
143 burst[j] = 1;
144 }
145 }
146
147 int8_t header_plus_burst[sizeof(gsmtap_hdr) + BURST_SIZE];
148 memcpy(header_plus_burst, tap_header.get(), sizeof(gsmtap_hdr));
149 memcpy(header_plus_burst + sizeof(gsmtap_hdr), burst, BURST_SIZE);
150
151 pmt::pmt_t blob_header_plus_burst = pmt::make_blob(header_plus_burst, sizeof(gsmtap_hdr) + BURST_SIZE);
152 pmt::pmt_t msg = pmt::cons(pmt::PMT_NIL, blob_header_plus_burst);
153
154 message_port_pub(pmt::mp("out"), msg);
155 }
156 }
157 post(pmt::mp("system"), pmt::cons(pmt::mp("done"), pmt::from_long(1)));
158 }
159 } /* namespace gsm */
160} /* namespace gr */
161
162