blob: 30195870d7fd0557ce649b0e2c2b43f7bdec85af [file] [log] [blame]
ptrkrysik82bd1172015-01-15 09:35:03 +01001/* -*- c++ -*- */
2/* @file
Piotr Krysika6268a52017-08-23 16:02:19 +02003 * @author (C) 2015 by Piotr Krysik <ptrkrysik@gmail.com>
ptrkrysik82bd1172015-01-15 09:35:03 +01004 * @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#ifndef INCLUDED_GSM_TMSI_DUMPER_IMPL_H
24#define INCLUDED_GSM_TMSI_DUMPER_IMPL_H
25
ptrkrysik258bbb82015-01-15 11:31:47 +010026#include <grgsm/misc_utils/tmsi_dumper.h>
ptrkrysik03da5c62015-01-18 09:56:26 +010027#include <fstream>
28#include <ctime>
ptrkrysik82bd1172015-01-15 09:35:03 +010029
30namespace gr {
31 namespace gsm {
32
33 class tmsi_dumper_impl : public tmsi_dumper
34 {
35 private:
ptrkrysik03da5c62015-01-18 09:56:26 +010036 std::ofstream dump_file;
ptrkrysik258bbb82015-01-15 11:31:47 +010037 void dump_tmsi(pmt::pmt_t msg);
ptrkrysik03da5c62015-01-18 09:56:26 +010038 void write_timestamp(tm * now);
39 void write_imsi(uint8_t * imsi);
40 void write_tmsi(uint8_t * tmsi);
ptrkrysik82bd1172015-01-15 09:35:03 +010041 public:
42 tmsi_dumper_impl();
43 ~tmsi_dumper_impl();
ptrkrysik258bbb82015-01-15 11:31:47 +010044 };
ptrkrysik82bd1172015-01-15 09:35:03 +010045 } // namespace gsm
46} // namespace gr
47
48#endif /* INCLUDED_GSM_TMSI_DUMPER_IMPL_H */
49