2017-04-20 21:51:30 +02:00
|
|
|
/*
|
2025-03-15 18:03:06 +01:00
|
|
|
* Copyright (C) 2015,2016,2017,2019,2020,2025 by Jonathan Naylor G4KLX
|
2017-04-20 21:51:30 +02: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(DMRGateway_H)
|
|
|
|
|
#define DMRGateway_H
|
|
|
|
|
|
2021-03-20 13:03:19 +01:00
|
|
|
#include "RemoteControl.h"
|
2020-04-13 15:15:21 +02:00
|
|
|
#include "RewriteDynTGNet.h"
|
|
|
|
|
#include "RewriteDynTGRF.h"
|
2017-04-20 21:51:30 +02:00
|
|
|
#include "MMDVMNetwork.h"
|
|
|
|
|
#include "DMRNetwork.h"
|
2020-08-28 16:15:25 +02:00
|
|
|
#include "APRSWriter.h"
|
2017-08-20 22:48:49 +02:00
|
|
|
#include "Reflectors.h"
|
2021-03-20 13:03:19 +01:00
|
|
|
#include "XLXVoice.h"
|
2020-04-13 15:15:21 +02:00
|
|
|
#include "UDPSocket.h"
|
2017-05-13 18:55:20 +02:00
|
|
|
#include "RewriteTG.h"
|
2020-04-03 17:54:35 +02:00
|
|
|
#include "DynVoice.h"
|
2017-05-14 19:14:09 +02:00
|
|
|
#include "Rewrite.h"
|
2017-06-23 21:57:50 +02:00
|
|
|
#include "Timer.h"
|
2017-04-20 21:51:30 +02:00
|
|
|
#include "Conf.h"
|
2020-08-26 15:20:04 +02:00
|
|
|
#include "GPSD.h"
|
2017-04-20 21:51:30 +02:00
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
2025-03-15 18:03:06 +01:00
|
|
|
enum class DMRGW_STATUS {
|
|
|
|
|
NONE,
|
2025-06-01 19:30:57 +02:00
|
|
|
DMRNETWORK,
|
2025-03-15 18:03:06 +01:00
|
|
|
XLXREFLECTOR
|
2019-07-17 10:46:41 +02:00
|
|
|
};
|
|
|
|
|
|
2025-06-01 19:30:57 +02:00
|
|
|
struct CDMRGWExtStatus {
|
|
|
|
|
DMRGW_STATUS m_status;
|
|
|
|
|
unsigned int m_dmrNetwork;
|
|
|
|
|
};
|
|
|
|
|
|
2017-04-20 21:51:30 +02:00
|
|
|
class CDMRGateway
|
|
|
|
|
{
|
|
|
|
|
public:
|
2017-04-27 21:39:46 +02:00
|
|
|
CDMRGateway(const std::string& confFile);
|
|
|
|
|
~CDMRGateway();
|
2017-04-20 21:51:30 +02:00
|
|
|
|
2017-04-27 21:39:46 +02:00
|
|
|
int run();
|
2017-04-20 21:51:30 +02:00
|
|
|
|
2021-03-20 13:03:19 +01:00
|
|
|
void buildNetworkStatusString(std::string &str);
|
2022-01-21 09:13:24 +01:00
|
|
|
void buildNetworkHostsString(std::string &str);
|
2021-03-20 13:03:19 +01:00
|
|
|
|
2017-04-20 21:51:30 +02:00
|
|
|
private:
|
2017-04-30 12:13:35 +02:00
|
|
|
CConf m_conf;
|
2025-06-01 19:30:57 +02:00
|
|
|
CDMRGWExtStatus* m_extStatus;
|
2020-08-26 15:20:04 +02:00
|
|
|
CMMDVMNetwork* m_repeater;
|
2017-10-08 15:13:52 +02:00
|
|
|
unsigned char* m_config;
|
|
|
|
|
unsigned int m_configLen;
|
2025-06-01 19:30:57 +02:00
|
|
|
unsigned int m_dmrNetworkCount;
|
|
|
|
|
std::vector<CDMRNetwork*> m_dmrNetworks;
|
|
|
|
|
std::vector<std::string> m_dmrName;
|
2017-08-20 22:48:49 +02:00
|
|
|
CReflectors* m_xlxReflectors;
|
|
|
|
|
CDMRNetwork* m_xlxNetwork;
|
|
|
|
|
unsigned int m_xlxId;
|
2022-02-17 10:36:23 +01:00
|
|
|
std::string m_xlxNumber;
|
2017-08-20 22:48:49 +02:00
|
|
|
unsigned int m_xlxReflector;
|
|
|
|
|
unsigned int m_xlxSlot;
|
|
|
|
|
unsigned int m_xlxTG;
|
|
|
|
|
unsigned int m_xlxBase;
|
2021-04-25 07:44:55 +02:00
|
|
|
unsigned short m_xlxLocal;
|
|
|
|
|
unsigned short m_xlxPort;
|
2021-03-20 13:03:19 +01:00
|
|
|
std::string m_xlxPassword;
|
2022-02-17 10:36:23 +01:00
|
|
|
std::string m_xlxStartup;
|
2017-08-20 22:48:49 +02:00
|
|
|
unsigned int m_xlxRoom;
|
|
|
|
|
CTimer m_xlxRelink;
|
|
|
|
|
bool m_xlxConnected;
|
|
|
|
|
bool m_xlxDebug;
|
2021-03-20 13:03:19 +01:00
|
|
|
bool m_xlxUserControl;
|
|
|
|
|
char m_xlxModule;
|
2017-08-20 22:48:49 +02:00
|
|
|
CRewriteTG* m_rptRewrite;
|
|
|
|
|
CRewriteTG* m_xlxRewrite;
|
2021-03-20 13:03:19 +01:00
|
|
|
CXLXVoice* m_xlxVoice;
|
2025-06-01 19:30:57 +02:00
|
|
|
std::vector<std::vector<CRewrite*>> m_dmrNetRewrites;
|
|
|
|
|
std::vector<std::vector<CRewrite*>> m_dmrRFRewrites;
|
|
|
|
|
std::vector<std::vector<CRewrite*>> m_dmrSrcRewrites;
|
|
|
|
|
std::vector<std::vector<CRewrite*>> m_dmrPassalls;
|
2020-04-08 00:03:27 +02:00
|
|
|
std::vector<CDynVoice*> m_dynVoices;
|
2020-04-13 15:15:21 +02:00
|
|
|
std::vector<CRewriteDynTGRF*> m_dynRF;
|
|
|
|
|
CUDPSocket* m_socket;
|
2020-08-28 16:15:25 +02:00
|
|
|
CAPRSWriter* m_writer;
|
|
|
|
|
std::string m_callsign;
|
|
|
|
|
unsigned int m_txFrequency;
|
|
|
|
|
unsigned int m_rxFrequency;
|
2020-08-26 15:20:04 +02:00
|
|
|
#if defined(USE_GPSD)
|
|
|
|
|
CGPSD* m_gpsd;
|
|
|
|
|
#endif
|
2025-06-01 19:30:57 +02:00
|
|
|
bool* m_networkEnabled;
|
2021-03-20 13:03:19 +01:00
|
|
|
bool m_networkXlxEnabled;
|
|
|
|
|
CRemoteControl* m_remoteControl;
|
2025-06-01 19:30:57 +02:00
|
|
|
|
2017-04-20 21:51:30 +02:00
|
|
|
bool createMMDVM();
|
2025-06-01 19:30:57 +02:00
|
|
|
bool createDMRNetwork(unsigned int index);
|
2017-08-20 22:48:49 +02:00
|
|
|
bool createXLXNetwork();
|
2020-04-13 15:15:21 +02:00
|
|
|
bool createDynamicTGControl();
|
2017-08-20 22:48:49 +02:00
|
|
|
|
2022-02-17 10:36:23 +01:00
|
|
|
bool linkXLX(const std::string &number);
|
2017-08-22 10:34:37 +02:00
|
|
|
void unlinkXLX();
|
2017-05-29 20:24:13 +02:00
|
|
|
void writeXLXLink(unsigned int srcId, unsigned int dstId, CDMRNetwork* network);
|
2017-10-08 15:13:52 +02:00
|
|
|
|
2019-05-19 08:56:39 +02:00
|
|
|
bool rewrite(std::vector<CRewrite*>& rewrites, CDMRData& data, bool trace);
|
|
|
|
|
|
2017-10-09 10:38:13 +02:00
|
|
|
unsigned int getConfig(const std::string& name, unsigned char* buffer);
|
2019-07-17 10:46:41 +02:00
|
|
|
|
|
|
|
|
void processRadioPosition();
|
|
|
|
|
void processTalkerAlias();
|
2020-08-28 16:15:25 +02:00
|
|
|
void createAPRS();
|
2020-04-13 15:15:21 +02:00
|
|
|
void processDynamicTGControl();
|
2021-03-20 13:03:19 +01:00
|
|
|
void remoteControl();
|
|
|
|
|
void processEnableCommand(CDMRNetwork* network, const std::string& name, bool& mode, bool enabled);
|
|
|
|
|
void buildNetworkStatusNetworkString(std::string &str, const std::string& name, CDMRNetwork* network, bool enabled);
|
2022-01-21 09:13:24 +01:00
|
|
|
void buildNetworkHostNetworkString(std::string &str, const std::string& name, CDMRNetwork* network);
|
2017-04-20 21:51:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|