DMRGateway/DMRGateway.h

134 lines
4 KiB
C
Raw Permalink Normal View History

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
#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"
#include "APRSWriter.h"
#include "Reflectors.h"
#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"
#include "DynVoice.h"
2017-05-14 19:14:09 +02:00
#include "Rewrite.h"
#include "Timer.h"
2017-04-20 21:51:30 +02:00
#include "Conf.h"
#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
};
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
void buildNetworkStatusString(std::string &str);
void buildNetworkHostsString(std::string &str);
2017-04-20 21:51:30 +02:00
private:
CConf m_conf;
2025-06-01 19:30:57 +02:00
CDMRGWExtStatus* m_extStatus;
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;
CReflectors* m_xlxReflectors;
CDMRNetwork* m_xlxNetwork;
unsigned int m_xlxId;
std::string m_xlxNumber;
unsigned int m_xlxReflector;
unsigned int m_xlxSlot;
unsigned int m_xlxTG;
unsigned int m_xlxBase;
unsigned short m_xlxLocal;
unsigned short m_xlxPort;
std::string m_xlxPassword;
std::string m_xlxStartup;
unsigned int m_xlxRoom;
CTimer m_xlxRelink;
bool m_xlxConnected;
bool m_xlxDebug;
bool m_xlxUserControl;
char m_xlxModule;
CRewriteTG* m_rptRewrite;
CRewriteTG* m_xlxRewrite;
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;
CAPRSWriter* m_writer;
std::string m_callsign;
unsigned int m_txFrequency;
unsigned int m_rxFrequency;
#if defined(USE_GPSD)
CGPSD* m_gpsd;
#endif
2025-06-01 19:30:57 +02:00
bool* m_networkEnabled;
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);
bool createXLXNetwork();
2020-04-13 15:15:21 +02:00
bool createDynamicTGControl();
bool linkXLX(const std::string &number);
2017-08-22 10:34:37 +02:00
void unlinkXLX();
void writeXLXLink(unsigned int srcId, unsigned int dstId, CDMRNetwork* network);
2017-10-08 15:13:52 +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);
void processRadioPosition();
void processTalkerAlias();
void createAPRS();
2020-04-13 15:15:21 +02:00
void processDynamicTGControl();
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);
void buildNetworkHostNetworkString(std::string &str, const std::string& name, CDMRNetwork* network);
2017-04-20 21:51:30 +02:00
};
#endif