blob: b88a586de1477b5ed1b00b130b35f2bf398e6648 [file] [log] [blame]
piotrdda22272014-08-04 11:31:54 +02001/* -*- 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
piotrdda22272014-08-04 11:31:54 +02008 * 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,
piotrdda22272014-08-04 11:31:54 +020013 * 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 *
piotrdda22272014-08-04 11:31:54 +020017 * 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
piotrdda22272014-08-04 11:31:54 +020019 * the Free Software Foundation, Inc., 51 Franklin Street,
20 * Boston, MA 02110-1301, USA.
21 */
22
23#ifndef INCLUDED_GSM_EXTRACT_SYSTEM_INFO_IMPL_H
24#define INCLUDED_GSM_EXTRACT_SYSTEM_INFO_IMPL_H
25
ptrkrysik3be74a72014-12-13 10:11:00 +010026#include <grgsm/misc_utils/extract_system_info.h>
ptrkrysik3fe75842015-07-07 16:51:06 +020027#include <set>
28#include <map>
ptrkrysik42411c62015-07-08 10:50:41 +020029#include <vector>
piotrdda22272014-08-04 11:31:54 +020030
31namespace gr {
32 namespace gsm {
piotrdda22272014-08-04 11:31:54 +020033 class chan_info {
34 public:
35 unsigned int id;
36 int8_t pwr_db;
37 unsigned int arfcn;
piotrdda22272014-08-04 11:31:54 +020038 unsigned int lac;
39 unsigned int cell_id;
40 unsigned int mnc;
ptrkrysike9539c12015-07-06 08:34:22 +020041 std::set<int> neighbour_cells;
piotrdda22272014-08-04 11:31:54 +020042
ptrkrysike9539c12015-07-06 08:34:22 +020043 chan_info() : id(-1), pwr_db(0), arfcn(0), lac(0), cell_id(0), mnc(0){}
44 chan_info(const chan_info & info) : id(info.id), pwr_db(info.pwr_db), arfcn(info.arfcn), lac(info.lac), cell_id(info.cell_id), mnc(info.mnc){}
piotrdda22272014-08-04 11:31:54 +020045 ~chan_info(){}
ptrkrysike9539c12015-07-06 08:34:22 +020046 void copy_nonzero_elements(const chan_info & info){
ptrkrysik5e376742015-08-06 10:02:04 +020047 id = info.id;
ptrkrysike9539c12015-07-06 08:34:22 +020048 pwr_db = info.pwr_db;
49 arfcn = info.arfcn;
50 lac = (info.lac!=0) ? info.lac : lac;
51 cell_id = (info.cell_id!=0) ? info.cell_id : cell_id;
52 mnc = (info.mnc!=0) ? info.mnc : mnc;
53 }
piotrdda22272014-08-04 11:31:54 +020054 };
55
56
57 struct compare_id {
58 inline bool operator()(const chan_info &a, const chan_info &b) const
59 {
60 return a.id < b.id;
61 }
62 };
63 struct compare_pwr {
64 inline bool operator()(const chan_info &a, const chan_info &b) const
65 {
66 return a.pwr_db < b.pwr_db;
67 }
68 };
69
ptrkrysike9539c12015-07-06 08:34:22 +020070 typedef std::map<unsigned int, chan_info> chan_info_map;
piotrdda22272014-08-04 11:31:54 +020071 class extract_system_info_impl : public extract_system_info
72 {
73 private:
74 void process_bursts(pmt::pmt_t burst);
75 void process_sysinfo(pmt::pmt_t msg);
ptrkrysike9539c12015-07-06 08:34:22 +020076 chan_info_map d_c0_channels;
piotrdda22272014-08-04 11:31:54 +020077 bool after_reset;
ptrkrysike9539c12015-07-06 08:34:22 +020078 void decode_neighbour_cells(uint8_t * data, unsigned int offset, unsigned int chan_id);
79// void dissect_channel_list_n_range(guint32 offset, guint len, gint range)
piotrdda22272014-08-04 11:31:54 +020080 public:
piotrdda22272014-08-04 11:31:54 +020081 virtual std::vector<int> get_chans();
82 virtual std::vector<int> get_pwrs();
83 virtual std::vector<int> get_lac();
84 virtual std::vector<int> get_cell_id();
85 virtual std::vector<int> get_mnc();
ptrkrysike9539c12015-07-06 08:34:22 +020086 virtual std::vector<int> get_neighbours(int chan_id);
piotrdda22272014-08-04 11:31:54 +020087 virtual void reset();
88 extract_system_info_impl();
89 ~extract_system_info_impl();
90 };
91 } // namespace gsm
92} // namespace gr
93
94#endif /* INCLUDED_GSM_EXTRACT_SYSTEM_INFO_IMPL_H */
95