]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/FGfdmSocket.cpp
Fixes from Cameron Moore:
[flightgear.git] / src / FDM / JSBSim / FGfdmSocket.cpp
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Module:       FGfdmSocket.cpp
4  Author:       Jon S. Berndt
5  Date started: 11/08/99
6  Purpose:      Encapsulates a socket
7  Called by:    FGOutput, et. al.
8
9  ------------- Copyright (C) 1999  Jon S. Berndt (jsb@hal-pc.org) -------------
10
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
14  version.
15
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
19  details.
20
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.
24
25  Further information about the GNU General Public License can also be found on
26  the world wide web at http://www.gnu.org.
27
28 FUNCTIONAL DESCRIPTION
29 --------------------------------------------------------------------------------
30 This class excapsulates a socket for simple data writing
31
32 HISTORY
33 --------------------------------------------------------------------------------
34 11/08/99   JSB   Created
35
36 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37 INCLUDES
38 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
39
40 #include "FGfdmSocket.h"
41
42 static const char *IdSrc = "$Id$";
43 static const char *IdHdr = ID_FDMSOCKET;
44
45 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
46 CLASS IMPLEMENTATION
47 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
48
49 FGfdmSocket::FGfdmSocket(string address, int port)
50 {
51   size = 0;
52
53 #if defined(__BORLANDC__) || defined(_MSC_VER) || defined(__MINGW32__)
54     WSADATA wsaData;
55     int PASCAL FAR wsaReturnCode;
56     wsaReturnCode = WSAStartup(MAKEWORD(1,1), &wsaData);
57     if (wsaReturnCode == 0) cout << "Winsock DLL loaded ..." << endl;
58     else cout << "Winsock DLL not initialized ..." << endl;
59   #endif
60
61   if (address.find_first_not_of("0123456789.",0) != address.npos) {
62     if ((host = gethostbyname(address.c_str())) == NULL) {
63       cout << "Could not get host net address by name..." << endl;
64     }
65   } else {
66     if ((host = gethostbyaddr(address.c_str(), address.size(), PF_INET)) == NULL) {
67       cout << "Could not get host net address by number..." << endl;
68     }
69   }
70
71   if (host != NULL) {
72     cout << "Got host net address..." << endl;
73     sckt = socket(AF_INET, SOCK_STREAM, 0);
74
75     if (sckt >= 0) {  // successful
76       memset(&scktName, 0, sizeof(struct sockaddr_in));
77       scktName.sin_family = AF_INET;
78       scktName.sin_port = htons(port);
79       memcpy(&scktName.sin_addr, host->h_addr_list[0], host->h_length);
80       int len = sizeof(struct sockaddr_in);
81       if (connect(sckt, (struct sockaddr*)&scktName, len) == 0) {   // successful
82         cout << "Successfully connected to socket ..." << endl;
83       } else {                // unsuccessful
84         cout << "Could not connect to socket ..." << endl;
85       }
86     } else {          // unsuccessful
87       cout << "Could not create socket for FDM, error = " << errno << endl;
88     }
89   }
90   Debug(0);
91 }
92
93 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
94
95 FGfdmSocket::~FGfdmSocket()
96 {
97   #ifndef macintosh
98   if (sckt) shutdown(sckt,2);
99   #endif
100   
101   #ifdef __BORLANDC__
102     WSACleanup();
103   #endif
104   Debug(1);
105 }
106
107 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
108
109 void FGfdmSocket::Clear(void)
110 {
111   buffer = "";
112   size = 0;
113 }
114
115 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
116
117 void FGfdmSocket::Append(const char* item)
118 {
119   if (size == 0) buffer += string(item);
120   else buffer += string(",") + string(item);
121   size++;
122 }
123
124 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
125
126 void FGfdmSocket::Append(double item)
127 {
128   char s[25];
129
130   sprintf(s,"%12.7f",item);
131
132   if (size == 0) buffer += string(s);
133   else buffer += string(",") + string(s);
134   size++;
135 }
136
137 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
138
139 void FGfdmSocket::Append(long item)
140 {
141   char s[25];
142
143   sprintf(s,"%12ld",item);
144
145   if (size == 0) buffer += string(s);
146   else buffer += string(",") + string(s);
147   size++;
148 }
149
150 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
151
152 void FGfdmSocket::Send(void)
153 {
154   buffer += string("\n");
155   if ((send(sckt,buffer.c_str(),buffer.size(),0)) <= 0) {
156     perror("send");
157   } else {
158   }
159 }
160
161 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
162 //    The bitmasked value choices are as follows:
163 //    unset: In this case (the default) JSBSim would only print
164 //       out the normally expected messages, essentially echoing
165 //       the config files as they are read. If the environment
166 //       variable is not set, debug_lvl is set to 1 internally
167 //    0: This requests JSBSim not to output any messages
168 //       whatsoever.
169 //    1: This value explicity requests the normal JSBSim
170 //       startup messages
171 //    2: This value asks for a message to be printed out when
172 //       a class is instantiated
173 //    4: When this value is set, a message is displayed when a
174 //       FGModel object executes its Run() method
175 //    8: When this value is set, various runtime state variables
176 //       are printed out periodically
177 //    16: When set various parameters are sanity checked and
178 //       a message is printed out when they go out of bounds
179
180 void FGfdmSocket::Debug(int from)
181 {
182   if (debug_lvl <= 0) return;
183
184   if (debug_lvl & 1) { // Standard console startup message output
185     if (from == 0) { // Constructor
186     }
187   }
188   if (debug_lvl & 2 ) { // Instantiation/Destruction notification
189     if (from == 0) cout << "Instantiated: FGfdmSocket" << endl;
190     if (from == 1) cout << "Destroyed:    FGfdmSocket" << endl;
191   }
192   if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
193   }
194   if (debug_lvl & 8 ) { // Runtime state variables
195   }
196   if (debug_lvl & 16) { // Sanity checking
197   }
198   if (debug_lvl & 64) {
199     if (from == 0) { // Constructor
200       cout << IdSrc << endl;
201       cout << IdHdr << endl;
202     }
203   }
204 }
205