9a1f6844206763fb0f88ffec4284ac14cd7b9e74
[senf.git] / Socket / Protocols / DVB / DVBConfigParser.hh
1 // $Id: DVBConfigParser.hh 965 2008-11-18 16:04:20Z g0dil $
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 DVBCONFIGPARSER_HH_
27 #define DVBCONFIGPARSER_HH_
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 namespace senf {
38 class DVBConfigParser 
39 {
40     struct DVBParams {
41                 std::map<std::string, fe_spectral_inversion_t> inversion;
42                 std::map<std::string, fe_bandwidth_t> bandwidth;
43                 std::map<std::string, fe_code_rate_t> code_rate;
44                 std::map<std::string, fe_guard_interval_t> guard_interval;
45                 std::map<std::string, fe_hierarchy_t> hierarchy;
46                 std::map<std::string, fe_modulation_t> modulation;
47                 std::map<std::string, fe_transmit_mode_t> transmit_mode;
48                 DVBParams(); };
49     static const DVBParams params;
50     typedef boost::tokenizer<boost::char_separator<char> > tokenizer;
51  
52
53 public:
54         DVBConfigParser(fe_type_t type_, const std::string & configFilePath = "");
55         ~DVBConfigParser();
56         
57         std::string getConfigLine(std::string channel);
58             
59         dvb_frontend_parameters getFrontendParam(std::string configLine);
60         
61 private:
62         
63         fe_type_t type;
64         std::ifstream configFile;
65         void initConfigFile(std::string _configFilePath);
66         
67         dvb_frontend_parameters getFrontendParamDVB_T( const tokenizer & tokens);
68         dvb_frontend_parameters getFrontendParamDVB_C( const tokenizer & tokens);
69         dvb_frontend_parameters getFrontendParamDVB_S( const tokenizer & tokens);
70         
71 };
72 }
73 #endif /*DVBCONFIGPARSER_H_*/