MMDVMHost-Private/MMDVMHost.h

133 lines
3.6 KiB
C
Raw Permalink Normal View History

2016-01-14 19:45:04 +01:00
/*
2021-02-17 22:36:47 +01:00
* Copyright (C) 2015-2021 by Jonathan Naylor G4KLX
2016-01-14 19:45:04 +01:00
*
* 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(MMDVMHOST_H)
#define MMDVMHOST_H
#include "RemoteControl.h"
2022-07-29 18:49:08 +02:00
//#include "POCSAGNetwork.h"
//#include "POCSAGControl.h"
//#include "DStarNetwork.h"
//#include "AX25Network.h"
//#include "NXDNNetwork.h"
//#include "DStarControl.h"
//#include "AX25Control.h"
#include "DMRControl.h"
2022-07-29 18:49:08 +02:00
//#include "YSFControl.h"
//#include "P25Control.h"
//#include "NXDNControl.h"
//#include "M17Control.h"
//#include "NXDNLookup.h"
//#include "YSFNetwork.h"
//#include "P25Network.h"
#include "DMRNetwork.h"
2022-07-29 18:49:08 +02:00
//#include "M17Network.h"
//#include "FMNetwork.h"
#include "DMRLookup.h"
2022-07-29 18:49:08 +02:00
//#include "FMControl.h"
//#include "Display.h"
2016-02-02 19:17:36 +01:00
#include "Timer.h"
2016-01-14 19:45:04 +01:00
#include "Modem.h"
#include "Conf.h"
#include <string>
2016-01-14 19:45:04 +01:00
class CMMDVMHost
{
public:
CMMDVMHost(const std::string& confFile);
~CMMDVMHost();
int run();
void buildNetworkStatusString(std::string &str);
void buildNetworkHostsString(std::string &str);
2016-01-14 19:45:04 +01:00
private:
2018-06-07 19:46:03 +02:00
CConf m_conf;
2021-02-17 22:36:47 +01:00
CModem* m_modem;
CDMRControl* m_dmr;
2022-07-29 18:49:08 +02:00
IDMRNetwork* m_dmrNetwork;
2022-07-29 18:49:08 +02:00
2018-06-07 19:46:03 +02:00
CDisplay* m_display;
unsigned char m_mode;
unsigned int m_dstarRFModeHang;
unsigned int m_dmrRFModeHang;
unsigned int m_ysfRFModeHang;
unsigned int m_p25RFModeHang;
unsigned int m_nxdnRFModeHang;
2020-12-15 17:21:07 +01:00
unsigned int m_m17RFModeHang;
unsigned int m_fmRFModeHang;
2018-06-07 19:46:03 +02:00
unsigned int m_dstarNetModeHang;
unsigned int m_dmrNetModeHang;
unsigned int m_ysfNetModeHang;
unsigned int m_p25NetModeHang;
unsigned int m_nxdnNetModeHang;
2020-12-15 17:21:07 +01:00
unsigned int m_m17NetModeHang;
2018-06-07 19:46:03 +02:00
unsigned int m_pocsagNetModeHang;
2020-12-15 17:21:07 +01:00
unsigned int m_fmNetModeHang;
2018-06-07 19:46:03 +02:00
CTimer m_modeTimer;
CTimer m_dmrTXTimer;
CTimer m_cwIdTimer;
bool m_duplex;
unsigned int m_timeout;
bool m_dstarEnabled;
bool m_dmrEnabled;
bool m_ysfEnabled;
bool m_p25Enabled;
bool m_nxdnEnabled;
2020-12-15 17:21:07 +01:00
bool m_m17Enabled;
2018-06-07 19:46:03 +02:00
bool m_pocsagEnabled;
2020-04-09 23:02:47 +02:00
bool m_fmEnabled;
2020-12-15 17:21:07 +01:00
bool m_ax25Enabled;
2018-06-07 19:46:03 +02:00
unsigned int m_cwIdTime;
CDMRLookup* m_dmrLookup;
std::string m_callsign;
unsigned int m_id;
std::string m_cwCallsign;
bool m_lockFileEnabled;
std::string m_lockFileName;
CRemoteControl* m_remoteControl;
bool m_fixedMode;
2016-01-14 19:45:04 +01:00
void readParams();
bool createModem();
2016-01-25 22:00:19 +01:00
bool createDStarNetwork();
2016-01-14 19:45:04 +01:00
bool createDMRNetwork();
2016-05-16 22:57:32 +02:00
bool createYSFNetwork();
bool createP25Network();
2018-01-15 22:03:34 +01:00
bool createNXDNNetwork();
2020-12-15 17:21:07 +01:00
bool createM17Network();
2018-06-07 19:46:03 +02:00
bool createPOCSAGNetwork();
2020-12-15 17:21:07 +01:00
bool createFMNetwork();
bool createAX25Network();
2016-02-02 19:17:36 +01:00
void remoteControl();
void processModeCommand(unsigned char mode, unsigned int timeout);
void processEnableCommand(bool& mode, bool enabled);
2016-05-10 19:26:52 +02:00
void setMode(unsigned char mode);
void createLockFile(const char* mode) const;
void removeLockFile() const;
2016-01-14 19:45:04 +01:00
};
#endif