blob: ea259adb2dabb6e642456167f124279e48732711 [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){
47 pwr_db = info.pwr_db;
48 arfcn = info.arfcn;
49 lac = (info.lac!=0) ? info.lac : lac;
50 cell_id = (info.cell_id!=0) ? info.cell_id : cell_id;
51 mnc = (info.mnc!=0) ? info.mnc : mnc;
52 }
piotrdda22272014-08-04 11:31:54 +020053 };
54
55
56 struct compare_id {
57 inline bool operator()(const chan_info &a, const chan_info &b) const
58 {
59 return a.id < b.id;
60 }
61 };
62 struct compare_pwr {
63 inline bool operator()(const chan_info &a, const chan_info &b) const
64 {
65 return a.pwr_db < b.pwr_db;
66 }
67 };
68
ptrkrysike9539c12015-07-06 08:34:22 +020069 typedef std::map<unsigned int, chan_info> chan_info_map;
piotrdda22272014-08-04 11:31:54 +020070 class extract_system_info_impl : public extract_system_info
71 {
72 private:
73 void process_bursts(pmt::pmt_t burst);
74 void process_sysinfo(pmt::pmt_t msg);
ptrkrysike9539c12015-07-06 08:34:22 +020075 chan_info_map d_c0_channels;
piotrdda22272014-08-04 11:31:54 +020076 bool after_reset;
ptrkrysike9539c12015-07-06 08:34:22 +020077 void decode_neighbour_cells(uint8_t * data, unsigned int offset, unsigned int chan_id);
78// void dissect_channel_list_n_range(guint32 offset, guint len, gint range)
piotrdda22272014-08-04 11:31:54 +020079 public:
piotrdda22272014-08-04 11:31:54 +020080 virtual std::vector<int> get_chans();
81 virtual std::vector<int> get_pwrs();
82 virtual std::vector<int> get_lac();
83 virtual std::vector<int> get_cell_id();
84 virtual std::vector<int> get_mnc();
ptrkrysike9539c12015-07-06 08:34:22 +020085 virtual std::vector<int> get_neighbours(int chan_id);
piotrdda22272014-08-04 11:31:54 +020086 virtual void reset();
87 extract_system_info_impl();
88 ~extract_system_info_impl();
89 };
90 } // namespace gsm
91} // namespace gr
92
93#endif /* INCLUDED_GSM_EXTRACT_SYSTEM_INFO_IMPL_H */
94