blob: 3e7d8436a66cdc669b37187f0099da1f8fc3bcad [file] [log] [blame]
piotr6c692872014-02-08 14:16:26 +01001/* -*- c++ -*- */
2/*
3 * Copyright 2014 <+YOU OR YOUR COMPANY+>.
4 *
5 * This is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3, or (at your option)
8 * any later version.
9 *
10 * This software is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this software; see the file COPYING. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street,
18 * Boston, MA 02110-1301, USA.
19 */
20
21#ifdef HAVE_CONFIG_H
22#include "config.h"
23#endif
24
25#include <gnuradio/io_signature.h>
piotrfaacc722014-07-20 23:48:32 +020026#include <gsm/gsmtap.h>
piotr6d152d92014-02-21 00:02:44 +010027#include <iterator>
28#include <algorithm>
piotrfaacc722014-07-20 23:48:32 +020029#include "bursts_printer_impl.h"
piotrc00ce9c2014-08-04 11:21:24 +020030#include <unistd.h>
31
32#include <iostream>
piotr6c692872014-02-08 14:16:26 +010033
34namespace gr {
35 namespace gsm {
piotrc00ce9c2014-08-04 11:21:24 +020036 boost::mutex printer_mutex;
piotr6d152d92014-02-21 00:02:44 +010037 void bursts_printer_impl::bursts_print(pmt::pmt_t msg)
piotr6c692872014-02-08 14:16:26 +010038 {
piotr6d152d92014-02-21 00:02:44 +010039 pmt::pmt_t burst = pmt::cdr(msg);
40 int8_t * burst_elements = (int8_t *)pmt::blob_data(burst);
41 size_t burst_len=pmt::blob_length(burst);
piotr6c692872014-02-08 14:16:26 +010042
piotr6d152d92014-02-21 00:02:44 +010043 pmt::pmt_t header_blob = pmt::car(msg);
44 gsmtap_hdr * header = (gsmtap_hdr *)pmt::blob_data(header_blob);
piotr6d152d92014-02-21 00:02:44 +010045
46 for(int ii=0; ii<burst_len; ii++)
piotr6c692872014-02-08 14:16:26 +010047 {
piotr7f3f3662014-07-08 16:47:53 +020048 std::cout << std::setprecision(1) << static_cast<int>(burst_elements[ii]) << "";
piotr6c692872014-02-08 14:16:26 +010049 }
50 std::cout << std::endl;
51 }
piotrc00ce9c2014-08-04 11:21:24 +020052
piotr6c692872014-02-08 14:16:26 +010053 bursts_printer::sptr
54 bursts_printer::make()
55 {
56 return gnuradio::get_initial_sptr
57 (new bursts_printer_impl());
58 }
59
60 /*
61 * The private constructor
62 */
63 bursts_printer_impl::bursts_printer_impl()
64 : gr::block("bursts_printer",
65 gr::io_signature::make(0, 0, 0),
66 gr::io_signature::make(0, 0, 0))
67 {
68 message_port_register_in(pmt::mp("bursts"));
69 set_msg_handler(pmt::mp("bursts"), boost::bind(&bursts_printer_impl::bursts_print, this, _1));
70 }
71
72 /*
73 * Our virtual destructor.
74 */
75 bursts_printer_impl::~bursts_printer_impl()
76 {
77 }
78
79
80 } /* namespace gsm */
81} /* namespace gr */
82