1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
/******************************************************************************
*
* Project: OpenCPN
* Purpose: NMEA Data Object
* Author: David Register
*
***************************************************************************
* Copyright (C) 2010 by David S. Register *
* *
* 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., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************
*
*
*
*
*/
#ifndef __NETWORKDATASTREAM_H__
#define __NETWORKDATASTREAM_H__
#include "wx/wxprec.h"
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif //precompiled header
#include <wx/datetime.h>
#ifdef __WXGTK__
// newer versions of glib define its own GSocket but we unfortunately use this
// name in our own (semi-)public header and so can't change it -- rename glib
// one instead
//#include <gtk/gtk.h>
#define GSocket GlibGSocket
#include "wx/socket.h"
#undef GSocket
#else
#include "wx/socket.h"
#endif
#ifndef __WXMSW__
#include <sys/socket.h> // needed for (some) Mac builds
#include <netinet/in.h>
#endif
#ifdef __WXMSW__
#include <windows.h>
#include <dbt.h>
#include <initguid.h>
#endif
#include <string>
#include "ConnectionParams.h"
#include "dsPortType.h"
#include "datastream.h"
class NetworkDataStream : public DataStream {
public:
NetworkDataStream(wxEvtHandler *input_consumer,
const ConnectionParams *params)
: DataStream(input_consumer, params),
m_net_port(wxString::Format(wxT("%i"), params->NetworkPort)),
m_net_protocol(params->NetProtocol),
m_sock(NULL),
m_tsock(NULL),
m_socket_server(NULL),
m_is_multicast(false),
m_txenter(0)
{
m_addr.Hostname(params->NetworkAddress);
m_addr.Service(params->NetworkPort);
m_socket_timer.SetOwner(this, TIMER_SOCKET);
m_socketread_watchdog_timer.SetOwner(this, TIMER_SOCKET + 1);
Open();
}
~NetworkDataStream() {
Close();
}
virtual bool SendSentence( const wxString &sentence ) {
wxString payload = sentence;
if( !sentence.EndsWith(_T("\r\n")) )
payload += _T("\r\n");
return SendSentenceNetwork(payload);
}
virtual void Close();
private:
wxString m_net_port;
NetworkProtocol m_net_protocol;
wxIPV4address m_addr;
wxSocketBase *m_sock;
wxSocketBase *m_tsock;
wxSocketServer *m_socket_server;
bool m_is_multicast;
struct ip_mreq m_mrq;
int m_txenter;
int m_dog_value;
std::string m_sock_buffer;
wxTimer m_socket_timer;
wxTimer m_socketread_watchdog_timer;
bool m_brx_connect_event;
void Open();
void OpenNetworkGPSD();
void OpenNetworkTCP(unsigned int addr);
void OpenNetworkUDP(unsigned int addr);
bool SendSentenceNetwork(const wxString &payload);
void OnTimerSocket(wxTimerEvent& event);
void OnSocketEvent(wxSocketEvent& event);
// TCP Server support
void OnServerSocketEvent(wxSocketEvent& event); // The listener
// void OnActiveServerEvent(wxSocketEvent& event); // The open connection
void OnSocketReadWatchdogTimer(wxTimerEvent& event);
wxIPV4address GetAddr() const { return m_addr; }
bool SetOutputSocketOptions(wxSocketBase* tsock);
wxString GetNetPort() const { return m_net_port; }
NetworkProtocol GetProtocol() { return m_net_protocol; }
void SetSock(wxSocketBase* sock) { m_sock = sock; }
wxSocketBase* GetSock() const { return m_sock; }
void SetTSock(wxSocketBase* sock) { m_tsock = sock; }
wxSocketBase* GetTSock() const { return m_tsock; }
void SetSockServer(wxSocketServer* sock) { m_socket_server = sock; }
wxSocketServer* GetSockServer() const { return m_socket_server; }
void SetMulticast(bool multicast) { m_is_multicast = multicast; }
bool GetMulticast() const { return m_is_multicast; }
void SetMrqAddr(unsigned int addr) {
m_mrq.imr_multiaddr.s_addr = addr;
m_mrq.imr_interface.s_addr = INADDR_ANY;
}
struct ip_mreq& GetMrq() { return m_mrq; }
wxTimer* GetSocketTimer() { return &m_socket_timer; }
wxTimer* GetSocketThreadWatchdogTimer() { return &m_socketread_watchdog_timer; }
void SetBrxConnectEvent(bool event) {m_brx_connect_event = event;}
bool GetBrxConnectEvent() { return m_brx_connect_event; }
DECLARE_EVENT_TABLE()
};
#endif // __NETWORKDATASTREAM_H__
|