mirror of
https://github.com/ShaYmez/P25Clients.git
synced 2024-11-21 19:55:22 -05:00
Add extra reflector control data to the gateway.
This commit is contained in:
parent
662e6adb47
commit
e24909926d
@ -43,8 +43,6 @@ m_myPort(0U),
|
|||||||
m_daemon(false),
|
m_daemon(false),
|
||||||
m_lookupName(),
|
m_lookupName(),
|
||||||
m_lookupTime(0U),
|
m_lookupTime(0U),
|
||||||
m_logDisplayLevel(0U),
|
|
||||||
m_logFileLevel(0U),
|
|
||||||
m_logFilePath(),
|
m_logFilePath(),
|
||||||
m_logFileRoot(),
|
m_logFileRoot(),
|
||||||
m_networkEnabled(false),
|
m_networkEnabled(false),
|
||||||
@ -121,10 +119,6 @@ bool CConf::read()
|
|||||||
m_logFilePath = value;
|
m_logFilePath = value;
|
||||||
else if (::strcmp(key, "FileRoot") == 0)
|
else if (::strcmp(key, "FileRoot") == 0)
|
||||||
m_logFileRoot = value;
|
m_logFileRoot = value;
|
||||||
else if (::strcmp(key, "FileLevel") == 0)
|
|
||||||
m_logFileLevel = (unsigned int)::atoi(value);
|
|
||||||
else if (::strcmp(key, "DisplayLevel") == 0)
|
|
||||||
m_logDisplayLevel = (unsigned int)::atoi(value);
|
|
||||||
} else if (section == SECTION_NETWORK) {
|
} else if (section == SECTION_NETWORK) {
|
||||||
if (::strcmp(key, "Enable") == 0)
|
if (::strcmp(key, "Enable") == 0)
|
||||||
m_networkEnabled = ::atoi(value) == 1;
|
m_networkEnabled = ::atoi(value) == 1;
|
||||||
@ -185,16 +179,6 @@ unsigned int CConf::getLookupTime() const
|
|||||||
return m_lookupTime;
|
return m_lookupTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int CConf::getLogDisplayLevel() const
|
|
||||||
{
|
|
||||||
return m_logDisplayLevel;
|
|
||||||
}
|
|
||||||
|
|
||||||
unsigned int CConf::getLogFileLevel() const
|
|
||||||
{
|
|
||||||
return m_logFileLevel;
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string CConf::getLogFilePath() const
|
std::string CConf::getLogFilePath() const
|
||||||
{
|
{
|
||||||
return m_logFilePath;
|
return m_logFilePath;
|
||||||
|
@ -42,8 +42,6 @@ public:
|
|||||||
unsigned int getLookupTime() const;
|
unsigned int getLookupTime() const;
|
||||||
|
|
||||||
// The Log section
|
// The Log section
|
||||||
unsigned int getLogDisplayLevel() const;
|
|
||||||
unsigned int getLogFileLevel() const;
|
|
||||||
std::string getLogFilePath() const;
|
std::string getLogFilePath() const;
|
||||||
std::string getLogFileRoot() const;
|
std::string getLogFileRoot() const;
|
||||||
|
|
||||||
@ -68,8 +66,6 @@ private:
|
|||||||
std::string m_lookupName;
|
std::string m_lookupName;
|
||||||
unsigned int m_lookupTime;
|
unsigned int m_lookupTime;
|
||||||
|
|
||||||
unsigned int m_logDisplayLevel;
|
|
||||||
unsigned int m_logFileLevel;
|
|
||||||
std::string m_logFilePath;
|
std::string m_logFilePath;
|
||||||
std::string m_logFileRoot;
|
std::string m_logFileRoot;
|
||||||
|
|
||||||
|
@ -24,10 +24,12 @@
|
|||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
||||||
CNetwork::CNetwork(unsigned int port, bool debug) :
|
CNetwork::CNetwork(unsigned int port, const std::string& callsign, bool debug) :
|
||||||
|
m_callsign(callsign),
|
||||||
m_socket(port),
|
m_socket(port),
|
||||||
m_debug(debug)
|
m_debug(debug)
|
||||||
{
|
{
|
||||||
|
m_callsign.resize(10U, ' ');
|
||||||
}
|
}
|
||||||
|
|
||||||
CNetwork::~CNetwork()
|
CNetwork::~CNetwork()
|
||||||
@ -53,6 +55,40 @@ bool CNetwork::writeData(const unsigned char* data, unsigned int length, const i
|
|||||||
return m_socket.write(data, length, address, port);
|
return m_socket.write(data, length, address, port);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool CNetwork::writePoll(const in_addr& address, unsigned int port)
|
||||||
|
{
|
||||||
|
assert(port > 0U);
|
||||||
|
|
||||||
|
unsigned char data[15U];
|
||||||
|
|
||||||
|
data[0U] = 0xF0U;
|
||||||
|
|
||||||
|
for (unsigned int i = 0U; i < 10U; i++)
|
||||||
|
data[i + 1U] = m_callsign.at(i);
|
||||||
|
|
||||||
|
if (m_debug)
|
||||||
|
CUtils::dump(1U, "P25 Network Poll Sent", data, 11U);
|
||||||
|
|
||||||
|
return m_socket.write(data, 11U, address, port);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool CNetwork::writeUnlink(const in_addr& address, unsigned int port)
|
||||||
|
{
|
||||||
|
assert(port > 0U);
|
||||||
|
|
||||||
|
unsigned char data[15U];
|
||||||
|
|
||||||
|
data[0U] = 0xF1U;
|
||||||
|
|
||||||
|
for (unsigned int i = 0U; i < 10U; i++)
|
||||||
|
data[i + 1U] = m_callsign.at(i);
|
||||||
|
|
||||||
|
if (m_debug)
|
||||||
|
CUtils::dump(1U, "P25 Network Unlink Sent", data, 11U);
|
||||||
|
|
||||||
|
return m_socket.write(data, 11U, address, port);
|
||||||
|
}
|
||||||
|
|
||||||
unsigned int CNetwork::readData(unsigned char* data, unsigned int length, in_addr& address, unsigned int& port)
|
unsigned int CNetwork::readData(unsigned char* data, unsigned int length, in_addr& address, unsigned int& port)
|
||||||
{
|
{
|
||||||
assert(data != NULL);
|
assert(data != NULL);
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
class CNetwork {
|
class CNetwork {
|
||||||
public:
|
public:
|
||||||
CNetwork(unsigned int port, bool debug);
|
CNetwork(unsigned int port, const std::string& callsign, bool debug);
|
||||||
~CNetwork();
|
~CNetwork();
|
||||||
|
|
||||||
bool open();
|
bool open();
|
||||||
@ -35,9 +35,14 @@ public:
|
|||||||
|
|
||||||
unsigned int readData(unsigned char* data, unsigned int length, in_addr& address, unsigned int& port);
|
unsigned int readData(unsigned char* data, unsigned int length, in_addr& address, unsigned int& port);
|
||||||
|
|
||||||
|
bool writePoll(const in_addr& address, unsigned int port);
|
||||||
|
|
||||||
|
bool writeUnlink(const in_addr& address, unsigned int port);
|
||||||
|
|
||||||
void close();
|
void close();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
std::string m_callsign;
|
||||||
CUDPSocket m_socket;
|
CUDPSocket m_socket;
|
||||||
bool m_debug;
|
bool m_debug;
|
||||||
};
|
};
|
||||||
|
@ -92,7 +92,7 @@ void CP25Gateway::run()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = ::LogInitialise(m_conf.getLogFilePath(), m_conf.getLogFileRoot(), m_conf.getLogFileLevel(), m_conf.getLogDisplayLevel());
|
ret = ::LogInitialise(m_conf.getLogFilePath(), m_conf.getLogFileRoot(), 1U, 1U);
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
::fprintf(stderr, "P25Gateway: unable to open the log file\n");
|
::fprintf(stderr, "P25Gateway: unable to open the log file\n");
|
||||||
return;
|
return;
|
||||||
@ -160,7 +160,7 @@ void CP25Gateway::run()
|
|||||||
in_addr rptAddr = CUDPSocket::lookup(m_conf.getRptAddress());
|
in_addr rptAddr = CUDPSocket::lookup(m_conf.getRptAddress());
|
||||||
unsigned int rptPort = m_conf.getRptPort();
|
unsigned int rptPort = m_conf.getRptPort();
|
||||||
|
|
||||||
CNetwork localNetwork(m_conf.getMyPort(), false);
|
CNetwork localNetwork(m_conf.getMyPort(), m_conf.getCallsign(), false);
|
||||||
|
|
||||||
ret = localNetwork.open();
|
ret = localNetwork.open();
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
@ -170,7 +170,7 @@ void CP25Gateway::run()
|
|||||||
|
|
||||||
CNetwork* remoteNetwork = NULL;
|
CNetwork* remoteNetwork = NULL;
|
||||||
if (m_conf.getNetworkEnabled()) {
|
if (m_conf.getNetworkEnabled()) {
|
||||||
remoteNetwork = new CNetwork(m_conf.getNetworkDataPort(), m_conf.getNetworkDebug());
|
remoteNetwork = new CNetwork(m_conf.getNetworkDataPort(), m_conf.getCallsign(), m_conf.getNetworkDebug());
|
||||||
ret = remoteNetwork->open();
|
ret = remoteNetwork->open();
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
localNetwork.close();
|
localNetwork.close();
|
||||||
@ -187,6 +187,9 @@ void CP25Gateway::run()
|
|||||||
CDMRLookup* lookup = new CDMRLookup(m_conf.getLookupName(), m_conf.getLookupTime());
|
CDMRLookup* lookup = new CDMRLookup(m_conf.getLookupName(), m_conf.getLookupTime());
|
||||||
lookup->read();
|
lookup->read();
|
||||||
|
|
||||||
|
CTimer lostTimer(1000U, 120U);
|
||||||
|
CTimer pollTimer(1000U, 20U);
|
||||||
|
|
||||||
CStopWatch stopWatch;
|
CStopWatch stopWatch;
|
||||||
stopWatch.start();
|
stopWatch.start();
|
||||||
|
|
||||||
@ -207,6 +210,10 @@ void CP25Gateway::run()
|
|||||||
currentId = id;
|
currentId = id;
|
||||||
currentAddr = reflector->m_address;
|
currentAddr = reflector->m_address;
|
||||||
currentPort = reflector->m_port;
|
currentPort = reflector->m_port;
|
||||||
|
|
||||||
|
pollTimer.start();
|
||||||
|
lostTimer.start();
|
||||||
|
|
||||||
LogMessage("Linked at startup to reflector %u", currentId);
|
LogMessage("Linked at startup to reflector %u", currentId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -223,16 +230,22 @@ void CP25Gateway::run()
|
|||||||
if (len > 0U) {
|
if (len > 0U) {
|
||||||
// If we're linked and it's from the right place, send it on
|
// If we're linked and it's from the right place, send it on
|
||||||
if (currentId != 9999U && currentAddr.s_addr == address.s_addr && currentPort == port) {
|
if (currentId != 9999U && currentAddr.s_addr == address.s_addr && currentPort == port) {
|
||||||
// Rewrite the LCF and the destination TG
|
// Don't pass reflector control data through to the MMDVM
|
||||||
if (buffer[0U] == 0x64U) {
|
if (buffer[0U] != 0xF0U && buffer[0U] != 0xF1U) {
|
||||||
buffer[1U] = 0x00U; // LCF is for TGs
|
// Rewrite the LCF and the destination TG
|
||||||
} else if (buffer[0U] == 0x65U) {
|
if (buffer[0U] == 0x64U) {
|
||||||
buffer[1U] = (currentId >> 16) & 0xFFU;
|
buffer[1U] = 0x00U; // LCF is for TGs
|
||||||
buffer[2U] = (currentId >> 8) & 0xFFU;
|
} else if (buffer[0U] == 0x65U) {
|
||||||
buffer[3U] = (currentId >> 0) & 0xFFU;
|
buffer[1U] = (currentId >> 16) & 0xFFU;
|
||||||
|
buffer[2U] = (currentId >> 8) & 0xFFU;
|
||||||
|
buffer[3U] = (currentId >> 0) & 0xFFU;
|
||||||
|
}
|
||||||
|
|
||||||
|
localNetwork.writeData(buffer, len, rptAddr, rptPort);
|
||||||
}
|
}
|
||||||
|
|
||||||
localNetwork.writeData(buffer, len, rptAddr, rptPort);
|
// Any network activity is proof that the reflector is alive
|
||||||
|
lostTimer.start();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -254,6 +267,14 @@ void CP25Gateway::run()
|
|||||||
std::string callsign = lookup->find(srcId);
|
std::string callsign = lookup->find(srcId);
|
||||||
LogMessage("Unlinked from reflector %u by %s", currentId, callsign.c_str());
|
LogMessage("Unlinked from reflector %u by %s", currentId, callsign.c_str());
|
||||||
currentId = dstId;
|
currentId = dstId;
|
||||||
|
|
||||||
|
if (remoteNetwork != NULL) {
|
||||||
|
remoteNetwork->writeUnlink(currentAddr, currentPort);
|
||||||
|
remoteNetwork->writeUnlink(currentAddr, currentPort);
|
||||||
|
remoteNetwork->writeUnlink(currentAddr, currentPort);
|
||||||
|
pollTimer.stop();
|
||||||
|
lostTimer.stop();
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
CP25Reflector* reflector = reflectors.find(dstId);
|
CP25Reflector* reflector = reflectors.find(dstId);
|
||||||
if (reflector != NULL) {
|
if (reflector != NULL) {
|
||||||
@ -263,6 +284,14 @@ void CP25Gateway::run()
|
|||||||
|
|
||||||
std::string callsign = lookup->find(srcId);
|
std::string callsign = lookup->find(srcId);
|
||||||
LogMessage("Linked to reflector %u by %s", currentId, callsign.c_str());
|
LogMessage("Linked to reflector %u by %s", currentId, callsign.c_str());
|
||||||
|
|
||||||
|
if (remoteNetwork != NULL) {
|
||||||
|
remoteNetwork->writePoll(currentAddr, currentPort);
|
||||||
|
remoteNetwork->writePoll(currentAddr, currentPort);
|
||||||
|
remoteNetwork->writePoll(currentAddr, currentPort);
|
||||||
|
pollTimer.start();
|
||||||
|
lostTimer.start();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -288,6 +317,22 @@ void CP25Gateway::run()
|
|||||||
|
|
||||||
reflectors.clock(ms);
|
reflectors.clock(ms);
|
||||||
|
|
||||||
|
pollTimer.clock(ms);
|
||||||
|
if (pollTimer.isRunning() && pollTimer.hasExpired()) {
|
||||||
|
if (currentId != 9999U && remoteNetwork != NULL)
|
||||||
|
remoteNetwork->writePoll(currentAddr, currentPort);
|
||||||
|
pollTimer.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
lostTimer.clock(ms);
|
||||||
|
if (lostTimer.isRunning() && lostTimer.hasExpired()) {
|
||||||
|
if (currentId != 9999U) {
|
||||||
|
LogWarning("No response from %u, unlinking", currentId);
|
||||||
|
currentId = 9999U;
|
||||||
|
}
|
||||||
|
lostTimer.stop();
|
||||||
|
}
|
||||||
|
|
||||||
if (ms < 5U) {
|
if (ms < 5U) {
|
||||||
#if defined(_WIN32) || defined(_WIN64)
|
#if defined(_WIN32) || defined(_WIN64)
|
||||||
::Sleep(5UL); // 5ms
|
::Sleep(5UL); // 5ms
|
||||||
|
@ -10,9 +10,6 @@ Name=DMRIds.dat
|
|||||||
Time=24
|
Time=24
|
||||||
|
|
||||||
[Log]
|
[Log]
|
||||||
# Logging levels, 0=No logging
|
|
||||||
DisplayLevel=1
|
|
||||||
FileLevel=1
|
|
||||||
FilePath=.
|
FilePath=.
|
||||||
FileRoot=P25Gateway
|
FileRoot=P25Gateway
|
||||||
|
|
||||||
|
@ -153,7 +153,6 @@
|
|||||||
<ClInclude Include="Network.h" />
|
<ClInclude Include="Network.h" />
|
||||||
<ClInclude Include="P25Gateway.h" />
|
<ClInclude Include="P25Gateway.h" />
|
||||||
<ClInclude Include="Reflectors.h" />
|
<ClInclude Include="Reflectors.h" />
|
||||||
<ClInclude Include="RingBuffer.h" />
|
|
||||||
<ClInclude Include="StopWatch.h" />
|
<ClInclude Include="StopWatch.h" />
|
||||||
<ClInclude Include="Thread.h" />
|
<ClInclude Include="Thread.h" />
|
||||||
<ClInclude Include="Timer.h" />
|
<ClInclude Include="Timer.h" />
|
||||||
|
@ -29,9 +29,6 @@
|
|||||||
<ClInclude Include="P25Gateway.h">
|
<ClInclude Include="P25Gateway.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="RingBuffer.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="StopWatch.h">
|
<ClInclude Include="StopWatch.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
@ -113,8 +113,6 @@ CP25Reflector* CReflectors::find(unsigned int id)
|
|||||||
return *it;
|
return *it;
|
||||||
}
|
}
|
||||||
|
|
||||||
LogMessage("Trying to find non existent reflector with an id of %u", id);
|
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,147 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2006-2009,2012,2013,2015,2016 by Jonathan Naylor G4KLX
|
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef RingBuffer_H
|
|
||||||
#define RingBuffer_H
|
|
||||||
|
|
||||||
#include <cstdio>
|
|
||||||
#include <cassert>
|
|
||||||
#include <cstring>
|
|
||||||
|
|
||||||
template<class T> class CRingBuffer {
|
|
||||||
public:
|
|
||||||
CRingBuffer(unsigned int length, const char* name) :
|
|
||||||
m_length(length),
|
|
||||||
m_name(name),
|
|
||||||
m_buffer(NULL),
|
|
||||||
m_iPtr(0U),
|
|
||||||
m_oPtr(0U)
|
|
||||||
{
|
|
||||||
assert(length > 0U);
|
|
||||||
assert(name != NULL);
|
|
||||||
|
|
||||||
m_buffer = new T[length];
|
|
||||||
|
|
||||||
::memset(m_buffer, 0x00, m_length * sizeof(T));
|
|
||||||
}
|
|
||||||
|
|
||||||
~CRingBuffer()
|
|
||||||
{
|
|
||||||
delete[] m_buffer;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool addData(const T* buffer, unsigned int nSamples)
|
|
||||||
{
|
|
||||||
if (nSamples >= freeSpace()) {
|
|
||||||
::fprintf(stderr, "**** Overflow in %s ring buffer, %u >= %u\n", m_name, nSamples, freeSpace());
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (unsigned int i = 0U; i < nSamples; i++) {
|
|
||||||
m_buffer[m_iPtr++] = buffer[i];
|
|
||||||
|
|
||||||
if (m_iPtr == m_length)
|
|
||||||
m_iPtr = 0U;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool getData(T* buffer, unsigned int nSamples)
|
|
||||||
{
|
|
||||||
if (dataSize() < nSamples) {
|
|
||||||
::fprintf(stderr, "**** Underflow in %s ring buffer, %u < %u\n", m_name, dataSize(), nSamples);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (unsigned int i = 0U; i < nSamples; i++) {
|
|
||||||
buffer[i] = m_buffer[m_oPtr++];
|
|
||||||
|
|
||||||
if (m_oPtr == m_length)
|
|
||||||
m_oPtr = 0U;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool peek(T* buffer, unsigned int nSamples)
|
|
||||||
{
|
|
||||||
if (dataSize() < nSamples) {
|
|
||||||
::fprintf(stderr, "**** Underflow peek in %s ring buffer, %u < %u\n", m_name, dataSize(), nSamples);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
unsigned int ptr = m_oPtr;
|
|
||||||
for (unsigned int i = 0U; i < nSamples; i++) {
|
|
||||||
buffer[i] = m_buffer[ptr++];
|
|
||||||
|
|
||||||
if (ptr == m_length)
|
|
||||||
ptr = 0U;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void clear()
|
|
||||||
{
|
|
||||||
m_iPtr = 0U;
|
|
||||||
m_oPtr = 0U;
|
|
||||||
|
|
||||||
::memset(m_buffer, 0x00, m_length * sizeof(T));
|
|
||||||
}
|
|
||||||
|
|
||||||
unsigned int freeSpace() const
|
|
||||||
{
|
|
||||||
if (m_oPtr == m_iPtr)
|
|
||||||
return m_length;
|
|
||||||
|
|
||||||
if (m_oPtr > m_iPtr)
|
|
||||||
return m_oPtr - m_iPtr;
|
|
||||||
|
|
||||||
return (m_length + m_oPtr) - m_iPtr;
|
|
||||||
}
|
|
||||||
|
|
||||||
unsigned int dataSize() const
|
|
||||||
{
|
|
||||||
return m_length - freeSpace();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool hasSpace(unsigned int length) const
|
|
||||||
{
|
|
||||||
return freeSpace() > length;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool hasData() const
|
|
||||||
{
|
|
||||||
return m_oPtr != m_iPtr;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool isEmpty() const
|
|
||||||
{
|
|
||||||
return m_oPtr == m_iPtr;
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
unsigned int m_length;
|
|
||||||
const char* m_name;
|
|
||||||
T* m_buffer;
|
|
||||||
unsigned int m_iPtr;
|
|
||||||
unsigned int m_oPtr;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
Loading…
Reference in New Issue
Block a user