1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
/*
* Copyright (C) 2014 Bastian Bloessl <bloessl@ccs-labs.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/>.
*/
#ifndef INCLUDED_RDS_PARSER_IMPL_H
#define INCLUDED_RDS_PARSER_IMPL_H
#include <rds/parser.h>
#include <gnuradio/thread/thread.h>
namespace gr {
namespace rds {
class parser_impl : public parser
{
public:
parser_impl(bool log, bool debug, unsigned char pty_locale);
private:
~parser_impl();
void reset();
void send_message(long, std::string);
void parse(pmt::pmt_t pdu);
double decode_af(unsigned int);
void decode_optional_content(int, unsigned long int *);
void decode_type0( unsigned int* group, bool B);
void decode_type1( unsigned int* group, bool B);
void decode_type2( unsigned int* group, bool B);
void decode_type3( unsigned int* group, bool B);
void decode_type4( unsigned int* group, bool B);
void decode_type5( unsigned int* group, bool B);
void decode_type6( unsigned int* group, bool B);
void decode_type7( unsigned int* group, bool B);
void decode_type8( unsigned int* group, bool B);
void decode_type9( unsigned int* group, bool B);
void decode_type10(unsigned int* group, bool B);
void decode_type11(unsigned int* group, bool B);
void decode_type12(unsigned int* group, bool B);
void decode_type13(unsigned int* group, bool B);
void decode_type14(unsigned int* group, bool B);
void decode_type15(unsigned int* group, bool B);
unsigned int program_identification;
unsigned char program_type;
unsigned char pi_country_identification;
unsigned char pi_area_coverage;
unsigned char pi_program_reference_number;
char radiotext[65];
char program_service_name[9];
bool radiotext_AB_flag;
bool traffic_program;
bool traffic_announcement;
bool music_speech;
bool mono_stereo;
bool artificial_head;
bool compressed;
bool static_pty;
bool log;
bool debug;
unsigned char pty_locale;
gr::thread::mutex d_mutex;
};
} /* namespace rds */
} /* namespace gr */
#endif /* INCLUDED_RDS_PARSER_IMPL_H */
|