JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGfdmSocket.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGfdmSocket.h
4 Author: Jon S. Berndt
5 Date started: 11/08/99
6
7 ------------- Copyright (C) 1999 Jon S. Berndt (jon@jsbsim.org) -------------
8
9 This program is free software; you can redistribute it and/or modify it under
10 the terms of the GNU Lesser General Public License as published by the Free
11 Software Foundation; either version 2 of the License, or (at your option) any
12 later version.
13
14 This program is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
17 details.
18
19 You should have received a copy of the GNU Lesser General Public License along
20 with this program; if not, write to the Free Software Foundation, Inc., 59
21 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be
24 found on the world wide web at http://www.gnu.org.
25
26HISTORY
27--------------------------------------------------------------------------------
2811/08/99 JSB Created
2911/08/07 HDW Added Generic Socket Send
30
31%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
32SENTRY
33%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
34
35#ifndef FGfdmSocket_H
36#define FGfdmSocket_H
37
38/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39INCLUDES
40%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
41
42#include "FGJSBBase.h"
43
44#if defined(_MSC_VER) || defined(__MINGW32__)
45 #include <winsock.h>
46 #include <io.h>
47#else
48 #include <netdb.h>
49#endif
50
51/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
52FORWARD DECLARATIONS
53%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
54
55namespace JSBSim {
56
57/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
58CLASS DOCUMENTATION
59%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
60
70/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
71CLASS DECLARATION
72%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
73
74class FGfdmSocket : public FGJSBBase
75{
76public:
85 FGfdmSocket(const std::string& address, int port, int protocol, int precision = 7);
86
94 FGfdmSocket(int port, int protocol, int precision = 7);
95
97
99 void Send(void);
100
107 void Send(const char *data, int length);
108 void Send(const std::string& data) { Send(data.c_str(), data.length()); }
109
115 std::string Receive(void);
116
123 int Reply(const std::string& text);
124
130 void Append(const std::string& s) {Append(s.c_str());}
131
137 void Append(const char*);
138
144 void Append(double value);
145
151 void Append(long value);
152
154 void Clear(void);
155
161 void Clear(const std::string& s);
162
164 void Close(void);
165
171 bool GetConnectStatus(void) {return connected;}
172
174 void WaitUntilReadable(void);
175
176 enum ProtocolType {ptUDP, ptTCP};
177
178private:
179#if defined(_MSC_VER) || defined(__MINGW32__)
180 SOCKET sckt;
181 SOCKET sckt_in;
182#else
183 int sckt;
184 int sckt_in;
185#endif
186 ProtocolType Protocol;
187 struct sockaddr_in scktName;
188 struct hostent *host;
189 std::ostringstream buffer;
190 int precision;
191 bool connected;
192 void LogSocketError(const std::string& msg);
193 void Debug(int from);
194};
195}
196#endif
JSBSim Base class.
Definition FGJSBBase.h:117
The FGfdmSocket class enables JSBSim to communicate via sockets.
Definition FGfdmSocket.h:75
std::string Receive(void)
Receive data from the socket connection.
bool GetConnectStatus(void)
Return the connection status of the socket.
void Clear(void)
Clear the internal buffer.
void Append(const std::string &s)
Append the specified string to the internal buffer.
void Close(void)
Close the socket connection if the protocol is TCP.
void WaitUntilReadable(void)
Wait until the TCP socket is readable.
int Reply(const std::string &text)
Send a reply to the client ending by a prompt "JSBSim>".
void Send(void)
Send the internal buffer over the socket connection.