/* * 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 #include #include #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; }; 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) 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, TEXT_LANG & lang) 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); bool get_value(const Config &cfg, const std::string &path, TEXT_LANG &lang, TEXT_LANG defaultValue); std::string m_fileName; std::string m_callsign; std::string m_address; std::vector m_module; std::vector m_ircDDB; bool m_remoteEnabled; std::string m_remotePassword; unsigned int m_remotePort; bool m_audioEnabled; TEXT_LANG m_audioLanguage; bool m_hasErrors; };