mirror of https://github.com/nostar/urfd.git
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.
95 lines
3.3 KiB
95 lines
3.3 KiB
// Copyright © 2015 Jean-Luc Deltombe (LX3JL). All rights reserved.
|
|
|
|
// urfd -- The universal reflector
|
|
// Copyright © 2021 Thomas A. Early N7TAE
|
|
//
|
|
// 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 3 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, see <https://www.gnu.org/licenses/>.
|
|
|
|
#pragma once
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
#include "Defines.h"
|
|
#include "Timer.h"
|
|
#include "IP.h"
|
|
#include "Callsign.h"
|
|
#include "Buffer.h"
|
|
#include "Packet.h"
|
|
|
|
enum class EProtoRev { original, revised, ambe };
|
|
|
|
class CClient
|
|
{
|
|
public:
|
|
// constructors
|
|
CClient();
|
|
CClient(const CCallsign &, const CIp &, char = ' ');
|
|
CClient(const CClient &);
|
|
|
|
// destructor
|
|
virtual ~CClient() {};
|
|
|
|
// operators
|
|
bool operator ==(const CClient &) const;
|
|
|
|
// get
|
|
const CCallsign &GetCallsign(void) const { return m_Callsign; }
|
|
const CIp &GetIp(void) const { return m_Ip; }
|
|
bool HasModule(void) const { return m_Callsign.HasModule(); }
|
|
char GetCSModule(void) const { return m_Callsign.GetCSModule(); }
|
|
bool HasReflectorModule(void) const { return m_ReflectorModule != ' '; }
|
|
char GetReflectorModule(void) const { return m_ReflectorModule; }
|
|
std::time_t GetConnectTime(void) const { return m_ConnectTime; }
|
|
std::time_t GetLastHeardTime(void) const { return m_LastHeardTime; }
|
|
|
|
// set
|
|
void SetCSModule(char c) { m_Callsign.SetCSModule(c); }
|
|
void SetReflectorModule(char c) { m_ReflectorModule = c; }
|
|
|
|
// identity
|
|
virtual EProtocol GetProtocol(void) const { return EProtocol::none; }
|
|
virtual EProtoRev GetProtocolRevision(void) const { return EProtoRev::ambe; }
|
|
virtual const char *GetProtocolName(void) const { return "none"; }
|
|
virtual bool IsNode(void) const { return false; }
|
|
virtual bool IsPeer(void) const { return false; }
|
|
virtual bool IsDextraDongle(void) const { return false; }
|
|
virtual void SetDextraDongle(void) { }
|
|
|
|
// status
|
|
virtual void Alive(void);
|
|
virtual bool IsAlive(void) const { return false; }
|
|
virtual bool IsAMaster(void) const { return (m_ModuleMastered != ' '); }
|
|
virtual void SetMasterOfModule(char c) { m_ModuleMastered = c; }
|
|
virtual void NotAMaster(void) { m_ModuleMastered = ' '; }
|
|
virtual void Heard(void) { m_LastHeardTime = std::time(nullptr); }
|
|
|
|
// reporting
|
|
virtual void WriteXml(std::ofstream &);
|
|
void JsonReport(nlohmann::json &report);
|
|
|
|
protected:
|
|
// data
|
|
CCallsign m_Callsign;
|
|
CIp m_Ip;
|
|
|
|
// linked to
|
|
char m_ReflectorModule;
|
|
|
|
// status
|
|
char m_ModuleMastered;
|
|
CTimer m_LastKeepaliveTime;
|
|
std::time_t m_ConnectTime;
|
|
std::time_t m_LastHeardTime;
|
|
};
|