forked from oe-alliance/satip-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
option.h
71 lines (58 loc) · 1.59 KB
/
option.h
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
/*
* satip: option
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef __OPTION_H__
#define __OPTION_H__
#include <string>
#include <map>
#include <vector>
#include "_config.h"
bool modelCheck();
class vtunerOpt
{
public:
std::string m_vtuner_type;
std::string m_ipaddr;
bool m_tcpdata;
int m_tcpdata_timeout;
int m_rtp_net_buffer_size_mb;
int m_fe_type;
int m_fe_number;
bool m_force_plts;
std::string m_port;
vtunerOpt():m_tcpdata(false),m_tcpdata_timeout(6000),m_rtp_net_buffer_size_mb(6),m_fe_type(-1),m_fe_number(0),m_force_plts(false)
{
}
bool isAvailable()
{
if (m_vtuner_type != "satip_client" || m_fe_type == -1 || m_ipaddr.empty())
return false;
return true;
}
};
class optParser
{
std::map<int, vtunerOpt> m_settings;
void dump();
std::vector<std::string> split(const std::string &line, char delim);
void load();
public:
optParser();
virtual ~optParser();
bool isEmpty();
std::map<int, vtunerOpt>* getData() { return &m_settings; }
};
#endif //__OPTION_H__