7684c44364cea73a77942d230baa5f0b5bbe7560
[senf.git] / senf / Socket / Protocols / DVB / DVBConfigParser.hh
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Anton Gillert <atx23@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief DVBDemuxHandles public header */
25
26 #ifndef HH_SENF_Socket_Protocols_DVB_DVBConfigParser_
27 #define HH_SENF_Socket_Protocols_DVB_DVBConfigParser_ 1
28
29 #include <string>
30 #include <vector>
31 #include <map>
32 #include <iostream>
33 #include <sstream>
34 #include <fstream>
35 #include <boost/tokenizer.hpp>
36 #include <linux/dvb/frontend.h>
37
38 namespace senf {
39
40     class DVBConfigParser
41     {
42         struct DVBParams {
43                 std::map<std::string, fe_spectral_inversion_t> inversion;
44                 std::map<std::string, fe_bandwidth_t> bandwidth;
45                 std::map<std::string, fe_code_rate_t> code_rate;
46                 std::map<std::string, fe_guard_interval_t> guard_interval;
47                 std::map<std::string, fe_hierarchy_t> hierarchy;
48                 std::map<std::string, fe_modulation_t> modulation;
49                 std::map<std::string, fe_transmit_mode_t> transmit_mode;
50                 DVBParams();
51         };
52         static const DVBParams params;
53         typedef boost::tokenizer<boost::char_separator<char> > tokenizer;
54
55     public:
56         DVBConfigParser(fe_type_t type_, const std::string & configFilePath = "");
57         ~DVBConfigParser();
58
59         std::string getConfigLine(std::string channel);
60
61         dvb_frontend_parameters getFrontendParam(std::string configLine);
62
63     private:
64         fe_type_t type;
65         std::string configFilePath;
66         std::ifstream configFile;
67         void initConfigFile(std::string _configFilePath);
68
69         dvb_frontend_parameters getFrontendParamDVB_T( const tokenizer & tokens);
70         dvb_frontend_parameters getFrontendParamDVB_C( const tokenizer & tokens);
71         dvb_frontend_parameters getFrontendParamDVB_S( const tokenizer & tokens);
72
73     };
74 }
75
76 #endif