blob: f6141f07ad92d198043a5b8d99566d9e7450fbe5 [file] [log] [blame]
Piotr Krysik517464c2017-11-05 12:23:15 +01001/* -*- c++ -*- */
2/* @file
3 * @author Piotr Krysik <ptrkrysik@gmail.com>
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +07004 * @author Vadim Yanitskiy <axilirator@gmail.com>
Piotr Krysik517464c2017-11-05 12:23:15 +01005 * @section LICENSE
6 *
7 * Gr-gsm is free software; you can redistribute it and/or modify
8 * 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.
11 *
12 * Gr-gsm is distributed in the hope that it will be useful,
13 * 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.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with gr-gsm; see the file COPYING. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street,
20 * Boston, MA 02110-1301, USA.
21 *
22 */
23
24#ifdef HAVE_CONFIG_H
25#include "config.h"
26#endif
27
28#include <gnuradio/io_signature.h>
29#include <grgsm/gsmtap.h>
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +070030
Piotr Krysik517464c2017-11-05 12:23:15 +010031#include "txtime_setter_impl.h"
32
33namespace gr {
34 namespace gsm {
35
36 txtime_setter::sptr
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +070037 txtime_setter::make(
38 uint32_t init_fn, uint64_t init_time_secs,
39 double init_time_fracs, uint64_t time_hint_secs,
40 double time_hint_fracs, double timing_advance,
41 double delay_correction)
Piotr Krysik517464c2017-11-05 12:23:15 +010042 {
43 return gnuradio::get_initial_sptr
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +070044 (new txtime_setter_impl(init_fn, init_time_secs,
45 init_time_fracs, time_hint_secs, time_hint_fracs,
46 timing_advance, delay_correction));
Piotr Krysik517464c2017-11-05 12:23:15 +010047 }
48
49 /*
50 * The private constructor
51 */
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +070052 txtime_setter_impl::txtime_setter_impl(
53 uint32_t init_fn, uint64_t init_time_secs,
54 double init_time_fracs, uint64_t time_hint_secs,
55 double time_hint_fracs, double timing_advance,
56 double delay_correction
57 ) : gr::block("txtime_setter",
58 gr::io_signature::make(0, 0, 0),
59 gr::io_signature::make(0, 0, 0)),
Piotr Krysik517464c2017-11-05 12:23:15 +010060 d_time_hint(time_hint_secs,time_hint_fracs),
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +070061 d_time_ref(init_time_secs,init_time_fracs),
62 d_delay_correction(delay_correction),
Piotr Krysik517464c2017-11-05 12:23:15 +010063 d_timing_advance(timing_advance),
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +070064 d_fn_ref(init_fn),
65 d_ts_ref(0)
Piotr Krysik517464c2017-11-05 12:23:15 +010066 {
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +070067 // Register I/O ports
68 message_port_register_in(pmt::mp("fn_time"));
69 message_port_register_in(pmt::mp("bursts_in"));
70 message_port_register_out(pmt::mp("bursts_out"));
Piotr Krysik517464c2017-11-05 12:23:15 +010071
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +070072 // Bind message handlers
73 set_msg_handler(pmt::mp("fn_time"),
74 boost::bind(&txtime_setter_impl::process_fn_time_reference,
75 this, _1));
76 set_msg_handler(pmt::mp("bursts_in"),
77 boost::bind(&txtime_setter_impl::process_txtime_of_burst,
78 this, _1));
Piotr Krysik517464c2017-11-05 12:23:15 +010079 }
80
81 /*
82 * Our virtual destructor.
83 */
84 txtime_setter_impl::~txtime_setter_impl()
85 {
86 }
87
88 void txtime_setter_impl::process_fn_time_reference(pmt::pmt_t msg)
89 {
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +070090 pmt::pmt_t not_found = pmt::intern("not_found");
91 pmt::pmt_t fn_time, time_hint;
Piotr Krysik517464c2017-11-05 12:23:15 +010092
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +070093 fn_time = pmt::dict_ref(msg,
94 pmt::intern("fn_time"), not_found);
95 time_hint = pmt::dict_ref(msg,
96 pmt::intern("fn_time"), not_found);
Piotr Krysik517464c2017-11-05 12:23:15 +010097
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +070098 if (fn_time != not_found) {
99 uint32_t fn_ref = static_cast<uint32_t>
100 (pmt::to_uint64(pmt::car(pmt::car(fn_time))));
101 uint32_t ts = static_cast<uint32_t>
102 (pmt::to_uint64(pmt::cdr(pmt::car(fn_time))));
103 uint64_t time_secs = pmt::to_uint64(
104 pmt::car(pmt::cdr(fn_time)));
105 double time_fracs = pmt::to_double(
106 pmt::cdr(pmt::cdr(fn_time)));
107
108 set_fn_time_reference(fn_ref, ts, time_secs, time_fracs);
109 } else if (time_hint != not_found) {
110 set_time_hint(pmt::to_uint64(pmt::car(fn_time)),
111 pmt::to_double(pmt::cdr(fn_time)));
112 }
Piotr Krysik517464c2017-11-05 12:23:15 +0100113 }
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +0700114
115 void txtime_setter_impl::process_txtime_of_burst(pmt::pmt_t msg_in)
Piotr Krysik517464c2017-11-05 12:23:15 +0100116 {
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +0700117 // Nothing to do...
118 if (d_fn_ref == 0xffffffff)
119 return;
120
121 pmt::pmt_t blob = pmt::cdr(msg_in);
122
123 // Extract GSMTAP header from message
124 gsmtap_hdr *header = (gsmtap_hdr *) pmt::blob_data(blob);
125 uint32_t frame_nr = be32toh(header->frame_number);
126 uint32_t ts_num = header->timeslot;
127
128 time_format txtime = fn_time_delta_cpp(d_fn_ref, d_time_ref,
129 frame_nr, d_time_hint, ts_num, d_ts_ref);
130
131 time_spec_t txtime_spec = time_spec_t(txtime.first, txtime.second);
132 txtime_spec -= d_delay_correction;
133 txtime_spec -= d_timing_advance;
134
135 // FIXME: better name?
136 time_spec_t foo = time_spec_t(d_time_hint.first, d_time_hint.second);
137
138 // Drop too late / early bursts
139 if (txtime_spec <= foo) {
140 std::cout << "lB" << std::flush;
141 return;
142 } else if (txtime_spec > foo + 10.0) {
143 std::cout << "eB" << std::flush;
144 return;
145 }
146
147 pmt::pmt_t tags_dict = pmt::dict_add(
148 pmt::make_dict(),
149 pmt::intern("tx_time"),
150 pmt::make_tuple(
151 pmt::from_uint64(txtime_spec.get_full_secs()),
152 pmt::from_double(txtime_spec.get_frac_secs()))
153 );
154
155 tags_dict = pmt::dict_add(tags_dict,
156 pmt::intern("fn"), pmt::from_uint64(frame_nr));
157 tags_dict = pmt::dict_add(tags_dict,
158 pmt::intern("ts"), pmt::from_uint64(ts_num));
159
160 // Send a message to the output
161 pmt::pmt_t msg_out = pmt::cons(tags_dict, pmt::cdr(msg_in));
162 message_port_pub(pmt::mp("bursts_out"), msg_out);
Piotr Krysik517464c2017-11-05 12:23:15 +0100163 }
164
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +0700165 void txtime_setter_impl::set_fn_time_reference(
166 uint32_t fn, uint32_t ts, uint64_t time_secs,
167 double time_fracs)
Piotr Krysik517464c2017-11-05 12:23:15 +0100168 {
169 d_fn_ref = fn;
170 d_ts_ref = ts;
171 d_time_ref = std::make_pair(time_secs, time_fracs);
172 set_time_hint(time_secs, time_fracs);
173 }
174
Vadim Yanitskiy2ce29422017-11-29 23:58:42 +0700175 void txtime_setter_impl::set_time_hint(
176 uint64_t time_hint_secs, double time_hint_fracs)
Piotr Krysik517464c2017-11-05 12:23:15 +0100177 {
178 d_time_hint = std::make_pair(time_hint_secs, time_hint_fracs);
179 }
180
181 void txtime_setter_impl::set_delay_correction(double delay_correction)
182 {
183 d_delay_correction = delay_correction;
184 }
185
186 void txtime_setter_impl::set_timing_advance(double timing_advance)
187 {
188 d_timing_advance = timing_advance;
189 }
190
191 } /* namespace gsm */
192} /* namespace gr */