1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 Module: FGfdmSocket.cpp
6 Purpose: Encapsulates a socket
7 Called by: FGOutput, et. al.
9 ------------- Copyright (C) 1999 Jon S. Berndt (jsb@hal-pc.org) -------------
11 This program is free software; you can redistribute it and/or modify it under
12 the terms of the GNU General Public License as published by the Free Software
13 Foundation; either version 2 of the License, or (at your option) any later
16 This program is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
21 You should have received a copy of the GNU General Public License along with
22 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
23 Place - Suite 330, Boston, MA 02111-1307, USA.
25 Further information about the GNU General Public License can also be found on
26 the world wide web at http://www.gnu.org.
28 FUNCTIONAL DESCRIPTION
29 --------------------------------------------------------------------------------
30 This class excapsulates a socket for simple data writing
33 --------------------------------------------------------------------------------
36 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40 #include "FGfdmSocket.h"
44 static const char *IdSrc = "$Id$";
45 static const char *IdHdr = ID_FDMSOCKET;
47 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
49 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
51 FGfdmSocket::FGfdmSocket(string address, int port)
56 #if defined(__BORLANDC__) || defined(_MSC_VER) || defined(__MINGW32__)
59 wsaReturnCode = WSAStartup(MAKEWORD(1,1), &wsaData);
60 if (wsaReturnCode == 0) cout << "Winsock DLL loaded ..." << endl;
61 else cout << "Winsock DLL not initialized ..." << endl;
64 if (address.find_first_not_of("0123456789.",0) != address.npos) {
65 if ((host = gethostbyname(address.c_str())) == NULL) {
66 cout << "Could not get host net address by name..." << endl;
69 if ((host = gethostbyaddr(address.c_str(), address.size(), PF_INET)) == NULL) {
70 cout << "Could not get host net address by number..." << endl;
75 cout << "Got host net address..." << endl;
76 sckt = socket(AF_INET, SOCK_STREAM, 0);
78 if (sckt >= 0) { // successful
79 memset(&scktName, 0, sizeof(struct sockaddr_in));
80 scktName.sin_family = AF_INET;
81 scktName.sin_port = htons(port);
82 memcpy(&scktName.sin_addr, host->h_addr_list[0], host->h_length);
83 int len = sizeof(struct sockaddr_in);
84 if (connect(sckt, (struct sockaddr*)&scktName, len) == 0) { // successful
85 cout << "Successfully connected to socket ..." << endl;
87 } else { // unsuccessful
88 cout << "Could not connect to socket ..." << endl;
90 } else { // unsuccessful
91 cout << "Could not create socket for FDM, error = " << errno << endl;
97 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
99 FGfdmSocket::~FGfdmSocket()
102 if (sckt) shutdown(sckt,2);
111 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
113 void FGfdmSocket::Clear(void)
119 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
121 void FGfdmSocket::Append(const char* item)
123 if (size == 0) buffer += string(item);
124 else buffer += string(",") + string(item);
128 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
130 void FGfdmSocket::Append(double item)
134 sprintf(s,"%12.7f",item);
136 if (size == 0) buffer += string(s);
137 else buffer += string(",") + string(s);
141 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
143 void FGfdmSocket::Append(long item)
147 sprintf(s,"%12ld",item);
149 if (size == 0) buffer += string(s);
150 else buffer += string(",") + string(s);
154 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
156 void FGfdmSocket::Send(void)
158 buffer += string("\n");
159 if ((send(sckt,buffer.c_str(),buffer.size(),0)) <= 0) {
165 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
166 // The bitmasked value choices are as follows:
167 // unset: In this case (the default) JSBSim would only print
168 // out the normally expected messages, essentially echoing
169 // the config files as they are read. If the environment
170 // variable is not set, debug_lvl is set to 1 internally
171 // 0: This requests JSBSim not to output any messages
173 // 1: This value explicity requests the normal JSBSim
175 // 2: This value asks for a message to be printed out when
176 // a class is instantiated
177 // 4: When this value is set, a message is displayed when a
178 // FGModel object executes its Run() method
179 // 8: When this value is set, various runtime state variables
180 // are printed out periodically
181 // 16: When set various parameters are sanity checked and
182 // a message is printed out when they go out of bounds
184 void FGfdmSocket::Debug(int from)
186 if (debug_lvl <= 0) return;
188 if (debug_lvl & 1) { // Standard console startup message output
189 if (from == 0) { // Constructor
192 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
193 if (from == 0) cout << "Instantiated: FGfdmSocket" << endl;
194 if (from == 1) cout << "Destroyed: FGfdmSocket" << endl;
196 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
198 if (debug_lvl & 8 ) { // Runtime state variables
200 if (debug_lvl & 16) { // Sanity checking
202 if (debug_lvl & 64) {
203 if (from == 0) { // Constructor
204 cout << IdSrc << endl;
205 cout << IdHdr << endl;