/* * Copyright (C) 2015,2016,2017 by Jonathan Naylor G4KLX * * 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. */ #if !defined(CONF_H) #define CONF_H #include #include class CConf { public: CConf(const std::string& file); ~CConf(); bool read(); // The General section std::string getCallsign() const; unsigned int getTimeout() const; bool getDuplex() const; unsigned int getRFModeHang() const; unsigned int getNetModeHang() const; std::string getDisplay() const; bool getDaemon() const; // The Info section unsigned int getRxFrequency() const; unsigned int getTxFrequency() const; unsigned int getPower() const; float getLatitude() const; float getLongitude() const; int getHeight() const; std::string getLocation() const; std::string getDescription() const; std::string getURL() const; // The Log section unsigned int getLogDisplayLevel() const; unsigned int getLogFileLevel() const; std::string getLogFilePath() const; std::string getLogFileRoot() const; // The CW ID section bool getCWIdEnabled() const; unsigned int getCWIdTime() const; // The DMR Id section std::string getDMRIdLookupFile() const; unsigned int getDMRIdLookupTime() const; // The Modem section std::string getModemPort() const; bool getModemRXInvert() const; bool getModemTXInvert() const; bool getModemPTTInvert() const; unsigned int getModemTXDelay() const; unsigned int getModemDMRDelay() const; unsigned int getModemRXLevel() const; unsigned int getModemCWIdTXLevel() const; unsigned int getModemDStarTXLevel() const; unsigned int getModemDMRTXLevel() const; unsigned int getModemYSFTXLevel() const; unsigned int getModemP25TXLevel() const; int getModemOscOffset() const; std::string getModemRSSIMappingFile() const; bool getModemDebug() const; // The UMP section bool getUMPEnabled() const; std::string getUMPPort() const; // The D-Star section bool getDStarEnabled() const; std::string getDStarModule() const; bool getDStarSelfOnly() const; std::vector getDStarBlackList() const; // The DMR section bool getDMREnabled() const; bool getDMRBeacons() const; unsigned int getDMRId() const; unsigned int getDMRColorCode() const; bool getDMRSelfOnly() const; std::vector getDMRPrefixes() const; std::vector getDMRBlackList() const; std::vector getDMRWhiteList() const; std::vector getDMRSlot1TGWhiteList() const; std::vector getDMRSlot2TGWhiteList() const; unsigned int getDMRCallHang() const; unsigned int getDMRTXHang() const; // The System Fusion section bool getFusionEnabled() const; bool getFusionRemoteGateway() const; // The P25 section bool getP25Enabled() const; unsigned int getP25NAC() const; // The D-Star Network section bool getDStarNetworkEnabled() const; std::string getDStarGatewayAddress() const; unsigned int getDStarGatewayPort() const; unsigned int getDStarLocalPort() const; bool getDStarNetworkDebug() const; // The DMR Network section bool getDMRNetworkEnabled() const; std::string getDMRNetworkAddress() const; unsigned int getDMRNetworkPort() const; unsigned int getDMRNetworkLocal() const; std::string getDMRNetworkPassword() const; std::string getDMRNetworkOptions() const; bool getDMRNetworkDebug() const; unsigned int getDMRNetworkJitter() const; bool getDMRNetworkSlot1() const; bool getDMRNetworkSlot2() const; // The System Fusion Network section bool getFusionNetworkEnabled() const; std::string getFusionNetworkMyAddress() const; unsigned int getFusionNetworkMyPort() const; std::string getFusionNetworkGwyAddress() const; unsigned int getFusionNetworkGwyPort() const; bool getFusionNetworkDebug() const; // The P25 Network section bool getP25NetworkEnabled() const; std::string getP25GatewayAddress() const; unsigned int getP25GatewayPort() const; unsigned int getP25LocalPort() const; bool getP25NetworkDebug() const; // The TFTSERIAL section std::string getTFTSerialPort() const; unsigned int getTFTSerialBrightness() const; // The HD44780 section unsigned int getHD44780Rows() const; unsigned int getHD44780Columns() const; std::vector getHD44780Pins() const; unsigned int getHD44780i2cAddress() const; bool getHD44780PWM() const; unsigned int getHD44780PWMPin() const; unsigned int getHD44780PWMBright() const; unsigned int getHD44780PWMDim() const; bool getHD44780DisplayClock() const; bool getHD44780UTC() const; // The Nextion section std::string getNextionPort() const; unsigned int getNextionBrightness() const; bool getNextionDisplayClock() const; bool getNextionUTC() const; unsigned int getNextionIdleBrightness() const; // The OLED section unsigned char getOLEDType() const; unsigned char getOLEDBrightness() const; bool getOLEDInvert() const; // The LCDproc section std::string getLCDprocAddress() const; unsigned int getLCDprocPort() const; unsigned int getLCDprocLocalPort() const; bool getLCDprocDisplayClock() const; bool getLCDprocUTC() const; bool getLCDprocDimOnIdle() const; private: std::string m_file; std::string m_callsign; unsigned int m_timeout; bool m_duplex; unsigned int m_rfModeHang; unsigned int m_netModeHang; std::string m_display; bool m_daemon; unsigned int m_rxFrequency; unsigned int m_txFrequency; unsigned int m_power; float m_latitude; float m_longitude; int m_height; std::string m_location; std::string m_description; std::string m_url; unsigned int m_logDisplayLevel; unsigned int m_logFileLevel; std::string m_logFilePath; std::string m_logFileRoot; bool m_cwIdEnabled; unsigned int m_cwIdTime; std::string m_dmrIdLookupFile; unsigned int m_dmrIdLookupTime; std::string m_modemPort; bool m_modemRXInvert; bool m_modemTXInvert; bool m_modemPTTInvert; unsigned int m_modemTXDelay; unsigned int m_modemDMRDelay; unsigned int m_modemRXLevel; unsigned int m_modemCWIdTXLevel; unsigned int m_modemDStarTXLevel; unsigned int m_modemDMRTXLevel; unsigned int m_modemYSFTXLevel; unsigned int m_modemP25TXLevel; int m_modemOscOffset; std::string m_modemRSSIMappingFile; bool m_modemDebug; bool m_umpEnabled; std::string m_umpPort; bool m_dstarEnabled; std::string m_dstarModule; bool m_dstarSelfOnly; std::vector m_dstarBlackList; bool m_dmrEnabled; bool m_dmrBeacons; unsigned int m_dmrId; unsigned int m_dmrColorCode; bool m_dmrSelfOnly; std::vector m_dmrPrefixes; std::vector m_dmrBlackList; std::vector m_dmrWhiteList; std::vector m_dmrSlot1TGWhiteList; std::vector m_dmrSlot2TGWhiteList; unsigned int m_dmrCallHang; unsigned int m_dmrTXHang; bool m_fusionEnabled; bool m_fusionRemoteGateway; bool m_p25Enabled; unsigned int m_p25NAC; bool m_dstarNetworkEnabled; std::string m_dstarGatewayAddress; unsigned int m_dstarGatewayPort; unsigned int m_dstarLocalPort; bool m_dstarNetworkDebug; bool m_dmrNetworkEnabled; std::string m_dmrNetworkAddress; unsigned int m_dmrNetworkPort; unsigned int m_dmrNetworkLocal; std::string m_dmrNetworkPassword; std::string m_dmrNetworkOptions; bool m_dmrNetworkDebug; unsigned int m_dmrNetworkJitter; bool m_dmrNetworkSlot1; bool m_dmrNetworkSlot2; bool m_fusionNetworkEnabled; std::string m_fusionNetworkMyAddress; unsigned int m_fusionNetworkMyPort; std::string m_fusionNetworkGwyAddress; unsigned int m_fusionNetworkGwyPort; bool m_fusionNetworkDebug; bool m_p25NetworkEnabled; std::string m_p25GatewayAddress; unsigned int m_p25GatewayPort; unsigned int m_p25LocalPort; bool m_p25NetworkDebug; std::string m_tftSerialPort; unsigned int m_tftSerialBrightness; unsigned int m_hd44780Rows; unsigned int m_hd44780Columns; std::vector m_hd44780Pins; unsigned int m_hd44780i2cAddress; bool m_hd44780PWM; unsigned int m_hd44780PWMPin; unsigned int m_hd44780PWMBright; unsigned int m_hd44780PWMDim; bool m_hd44780DisplayClock; bool m_hd44780UTC; std::string m_nextionPort; unsigned int m_nextionBrightness; bool m_nextionDisplayClock; bool m_nextionUTC; unsigned int m_nextionIdleBrightness; unsigned char m_oledType; unsigned char m_oledBrightness; bool m_oledInvert; std::string m_lcdprocAddress; unsigned int m_lcdprocPort; unsigned int m_lcdprocLocalPort; bool m_lcdprocDisplayClock; bool m_lcdprocUTC; bool m_lcdprocDimOnIdle; }; #endif