mirror of
https://github.com/ShaYmez/NXDNClients.git
synced 2024-11-03 06:31:16 -05:00
63 lines
1.9 KiB
C++
63 lines
1.9 KiB
C++
/*
|
|
* Copyright (C) 2010,2011,2012,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 APRSWriterThread_H
|
|
#define APRSWriterThread_H
|
|
|
|
#include "TCPSocket.h"
|
|
#include "RingBuffer.h"
|
|
#include "Thread.h"
|
|
|
|
#include <string>
|
|
|
|
typedef void (*ReadAPRSFrameCallback)(const std::string&);
|
|
|
|
class CAPRSWriterThread : public CThread {
|
|
public:
|
|
CAPRSWriterThread(const std::string& callsign, const std::string& password, const std::string& address, unsigned int port);
|
|
CAPRSWriterThread(const std::string& callsign, const std::string& password, const std::string& address, unsigned int port, const std::string& filter, const std::string& clientName);
|
|
virtual ~CAPRSWriterThread();
|
|
|
|
virtual bool start();
|
|
|
|
virtual bool isConnected() const;
|
|
|
|
virtual void write(const char* data);
|
|
|
|
virtual void entry();
|
|
|
|
virtual void stop();
|
|
|
|
void setReadAPRSCallback(ReadAPRSFrameCallback cb);
|
|
|
|
private:
|
|
std::string m_username;
|
|
std::string m_password;
|
|
CTCPSocket m_socket;
|
|
CRingBuffer<char*> m_queue;
|
|
bool m_exit;
|
|
bool m_connected;
|
|
ReadAPRSFrameCallback m_APRSReadCallback;
|
|
std::string m_filter;
|
|
std::string m_clientName;
|
|
|
|
bool connect();
|
|
};
|
|
|
|
#endif
|