You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.9 KiB
105 lines
3.9 KiB
/*
|
|
* Copyright (c) 2021 by Geoffrey Merck F4FXL / KC3FRA
|
|
*
|
|
* 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 "RepeaterProtocolHandlerFactory.h"
|
|
#include "Log.h"
|
|
|
|
CRepeaterProtocolHandlerFactory::CRepeaterProtocolHandlerFactory() :
|
|
m_icomRepeaterHandler(NULL),
|
|
m_hbRepeaterHandler(NULL),
|
|
m_dummyRepeaterHandler(NULL),
|
|
m_icomCount(0U)
|
|
{
|
|
|
|
}
|
|
|
|
IRepeaterProtocolHandler * CRepeaterProtocolHandlerFactory::getRepeaterProtocolHandler(HW_TYPE hwType, const TGateway & gatewayConfig, const std::string & repeaterAddress, unsigned int repeaterPort)
|
|
{
|
|
IRepeaterProtocolHandler * handler = NULL;
|
|
switch (hwType)
|
|
{
|
|
case HW_ICOM:
|
|
if(m_icomRepeaterHandler == NULL) {
|
|
CIcomRepeaterProtocolHandler * icomRepeaterHandler = new CIcomRepeaterProtocolHandler(gatewayConfig.icomAddress, gatewayConfig.icomPort, repeaterAddress, repeaterPort);
|
|
bool res = icomRepeaterHandler->open();
|
|
if (res) {
|
|
CLog::logInfo("Icom repeater controller listening on %s:%u", gatewayConfig.icomAddress.c_str(), gatewayConfig.icomPort);
|
|
} else {
|
|
CLog::logError("Cannot open the Icom repeater protocol handler on %s:%u", gatewayConfig.icomAddress.c_str(), gatewayConfig.icomPort);
|
|
delete icomRepeaterHandler;
|
|
icomRepeaterHandler = NULL;
|
|
}
|
|
m_icomRepeaterHandler = icomRepeaterHandler;
|
|
}
|
|
handler = m_icomRepeaterHandler;
|
|
|
|
if(m_icomRepeaterHandler != NULL)
|
|
m_icomRepeaterHandler->setCount(++m_icomCount);
|
|
|
|
break;
|
|
case HW_HOMEBREW:
|
|
if(m_hbRepeaterHandler == NULL) {
|
|
CHBRepeaterProtocolHandler * hbRepeaterHandler = new CHBRepeaterProtocolHandler(gatewayConfig.hbAddress, gatewayConfig.hbPort);
|
|
bool res = hbRepeaterHandler->open();
|
|
if (res) {
|
|
CLog::logInfo("Home Brew repeater controller listening on %s:%u", gatewayConfig.hbAddress.c_str(), gatewayConfig.hbPort);
|
|
} else {
|
|
CLog::logError("Cannot open the Homebrew repeater protocol handler on %s:%u", gatewayConfig.hbAddress.c_str(), gatewayConfig.hbPort);
|
|
delete hbRepeaterHandler;
|
|
hbRepeaterHandler = NULL;
|
|
}
|
|
m_hbRepeaterHandler = hbRepeaterHandler;
|
|
}
|
|
handler = m_hbRepeaterHandler;
|
|
break;
|
|
case HW_DUMMY:
|
|
if(m_dummyRepeaterHandler == NULL) {
|
|
CDummyRepeaterProtocolHandler * dummyRepeaterHandler = new CDummyRepeaterProtocolHandler;
|
|
bool res = dummyRepeaterHandler->open();
|
|
if (res) {
|
|
CLog::logInfo("Dummy repeater controller is open");
|
|
} else {
|
|
CLog::logError("Cannot open the Dummy repeater protocol handler");
|
|
delete dummyRepeaterHandler;
|
|
dummyRepeaterHandler = NULL;
|
|
}
|
|
m_dummyRepeaterHandler = dummyRepeaterHandler;
|
|
handler = m_dummyRepeaterHandler;
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return handler;
|
|
}
|
|
|
|
CIcomRepeaterProtocolHandler * CRepeaterProtocolHandlerFactory::getIcomProtocolHandler()
|
|
{
|
|
return m_icomRepeaterHandler;
|
|
}
|
|
|
|
CHBRepeaterProtocolHandler * CRepeaterProtocolHandlerFactory::getHBProtocolHandler()
|
|
{
|
|
return m_hbRepeaterHandler;
|
|
}
|
|
|
|
CDummyRepeaterProtocolHandler * CRepeaterProtocolHandlerFactory::getDummyProtocolHandler()
|
|
{
|
|
return m_dummyRepeaterHandler;
|
|
} |