You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.7 KiB
87 lines
2.7 KiB
/*
|
|
* Copyright (C) 2010,2011,2012,2014 by Jonathan Naylor G4KLX
|
|
* Copyright (c) 2017,2018 by Thomas A. Early
|
|
*
|
|
* 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 2 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, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <libconfig.h++>
|
|
#include "Defs.h"
|
|
|
|
using namespace libconfig;
|
|
|
|
struct Smodule {
|
|
std::string band;
|
|
std::string callsign;
|
|
std::string logoff;
|
|
std::string info;
|
|
std::string permanent;
|
|
std::string reflector;
|
|
bool txmsgswitch;
|
|
unsigned int usertimeout;
|
|
CALLSIGN_SWITCH callsignswitch;
|
|
};
|
|
|
|
struct SircDDB {
|
|
std::string hostname;
|
|
std::string username;
|
|
std::string password;
|
|
bool isQuadNet;
|
|
};
|
|
|
|
class CSGSXLConfig {
|
|
public:
|
|
CSGSXLConfig(const std::string &pathname);
|
|
~CSGSXLConfig();
|
|
|
|
void getGateway(std::string &callsign, std::string &address) const;
|
|
|
|
void getIrcDDB(unsigned int ircddb, std::string &hostname, std::string &username, std::string &password, bool &isQuadNet) const;
|
|
|
|
void getGroup(unsigned int mod, std::string &band, std::string &callsign, std::string &logoff, std::string &info, std::string &permanent, unsigned int &userTimeout, CALLSIGN_SWITCH &callsignSwitch, bool &txMsgSwitch, std::string &reflector) const;
|
|
|
|
void getRemote(bool &enabled, std::string &password, unsigned int &port) const;
|
|
|
|
void getAudio(bool & enabled, std::string &audioDir) const;
|
|
|
|
unsigned int getModCount();
|
|
unsigned int getLinkCount(const char *type);
|
|
unsigned int getIrcDDBCount();
|
|
|
|
bool hasErrors();
|
|
|
|
private:
|
|
bool get_value(const Config &cfg, const std::string &path, int &value, int min, int max, int default_value);
|
|
bool get_value(const Config &cfg, const std::string &path, bool &value, bool default_value);
|
|
bool get_value(const Config &cfg, const std::string &path, std::string &value, int min, int max, const std::string &default_value);
|
|
|
|
std::string m_fileName;
|
|
std::string m_callsign;
|
|
std::string m_address;
|
|
std::vector<struct Smodule *> m_module;
|
|
std::vector<struct SircDDB *> m_ircDDB;
|
|
|
|
bool m_remoteEnabled;
|
|
std::string m_remotePassword;
|
|
unsigned int m_remotePort;
|
|
|
|
bool m_audioEnabled;
|
|
std::string m_audioDirectory;
|
|
|
|
bool m_hasErrors;
|
|
};
|