gr-satnogs/lib/multi_format_msg_sink_impl.cc

80 lines
2.4 KiB
C++
Raw Normal View History

/* -*- c++ -*- */
/*
* gr-satnogs: SatNOGS GNU Radio Out-Of-Tree Module
*
* Copyright (C) 2016, Libre Space Foundation <http://librespacefoundation.org/>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <gnuradio/io_signature.h>
2016-05-13 14:57:33 +02:00
#include "multi_format_msg_sink_impl.h"
namespace gr {
namespace satnogs {
2016-05-13 14:57:33 +02:00
multi_format_msg_sink::sptr
multi_format_msg_sink::make(size_t format)
{
return gnuradio::get_initial_sptr
2016-05-13 14:57:33 +02:00
(new multi_format_msg_sink_impl(format));
}
void
2016-05-13 14:57:33 +02:00
multi_format_msg_sink_impl::msg_handler (pmt::pmt_t msg)
{
std::string s((const char *)pmt::blob_data(msg), pmt::blob_length(msg));
2016-05-13 14:57:33 +02:00
switch(d_format){
case 0:
std::cout << "Received text sequence:" << s << " " << std::endl;
break;
case 1:
//for(size_t i=0; i< pmt::blob_length(msg); i++)
for (size_t i = 0; i < s.length(); ++i)
2016-05-14 18:48:21 +02:00
printf("0x%02x ",s[i]);
2016-05-13 14:57:33 +02:00
std::cout<<std::endl;
break;
case 2:
for(size_t i=0; i< pmt::blob_length(msg); i++)
std::cout<< std::bitset<8>(((uint8_t*)pmt::blob_data(msg))[i]);
std::cout<<std::endl;
break;
default:
printf("Invalid format");
}
}
/*
* The private constructor
*/
2016-05-13 14:57:33 +02:00
multi_format_msg_sink_impl::multi_format_msg_sink_impl(size_t format)
: gr::block("multi_format_msg_sink",
gr::io_signature::make(0, 0, 0),
2016-05-13 14:57:33 +02:00
gr::io_signature::make(0, 0, 0)),
d_format(format)
{
message_port_register_in(pmt::mp("in"));
set_msg_handler (
pmt::mp ("in"),
2016-05-13 14:57:33 +02:00
boost::bind (&multi_format_msg_sink_impl::msg_handler, this, _1));
}
} /* namespace satnogs */
} /* namespace gr */