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
FGInputSocket Class Reference

Detailed Description

Implements the input from a socket.

This class inputs data from a telnet session. This is a leaf class.

Definition at line 62 of file FGInputSocket.h.

#include <FGInputSocket.h>

+ Inheritance diagram for FGInputSocket:
+ Collaboration diagram for FGInputSocket:

Public Member Functions

 FGInputSocket (FGFDMExec *fdmex)
 Constructor.
 
 ~FGInputSocket () override
 Destructor.
 
bool InitModel (void) override
 Initializes the instance.
 
bool Load (Element *el) override
 Init the input directives from an XML file.
 
void Read (bool Holding) override
 Generates the input.
 
- Public Member Functions inherited from FGInputType
 FGInputType (FGFDMExec *fdmex)
 Constructor (implement the FGModel interface).
 
 ~FGInputType () override
 Destructor.
 
void Disable (void)
 Disables the input generation.
 
void Enable (void)
 Enables the input generation.
 
virtual const std::string & GetInputName (void) const
 Get the name identifier to which the input will be directed.
 
bool InitModel (void) override
 Init the input model according to its configitation.
 
bool Load (Element *el) override
 Init the input directives from an XML file (implement the FGModel interface).
 
bool Run (bool Holding) override
 Executes the input directives (implement the FGModel interface).
 
void SetIdx (unsigned int idx)
 Set the idx for this input instance.
 
virtual void SetInputName (const std::string &name)
 Overwrites the name identifier under which the input will be read.
 
bool Toggle (void)
 Toggles the input generation.
 
- Public Member Functions inherited from FGModel
 FGModel (FGFDMExec *)
 Constructor.
 
 ~FGModel () override
 Destructor.
 
virtual SGPath FindFullPathName (const SGPath &path) const
 
FGFDMExecGetExec (void)
 
const std::string & GetName (void)
 
unsigned int GetRate (void)
 Get the output rate for the model in frames.
 
bool InitModel (void) override
 
void SetPropertyManager (std::shared_ptr< FGPropertyManager > fgpm)
 
void SetRate (unsigned int tt)
 Set the ouput rate for the model in frames.
 
- Public Member Functions inherited from FGModelFunctions
std::string GetFunctionStrings (const std::string &delimeter) const
 Gets the strings for the current set of functions.
 
std::string GetFunctionValues (const std::string &delimeter) const
 Gets the function values.
 
std::shared_ptr< FGFunctionGetPreFunction (const std::string &name)
 Get one of the "pre" function.
 
bool Load (Element *el, FGFDMExec *fdmex, std::string prefix="")
 
void PostLoad (Element *el, FGFDMExec *fdmex, std::string prefix="")
 
void PreLoad (Element *el, FGFDMExec *fdmex, std::string prefix="")
 
void RunPostFunctions (void)
 
void RunPreFunctions (void)
 
- Public Member Functions inherited from FGJSBBase
 FGJSBBase ()
 Constructor for FGJSBBase.
 
virtual ~FGJSBBase ()
 Destructor for FGJSBBase.
 
void disableHighLighting (void)
 Disables highlighting in the console output.
 

Protected Attributes

bool BlockingInput
 
std::string data
 
FGfdmSocketsocket
 
unsigned int SockPort
 
FGfdmSocket::ProtocolType SockProtocol
 
- Protected Attributes inherited from FGInputType
bool enabled
 
unsigned int InputIdx
 
- Protected Attributes inherited from FGModel
unsigned int exe_ctr
 
FGFDMExecFDMExec
 
std::string Name
 
std::shared_ptr< FGPropertyManagerPropertyManager
 
unsigned int rate
 
- Protected Attributes inherited from FGModelFunctions
FGPropertyReader LocalProperties
 
std::vector< std::shared_ptr< FGFunction > > PostFunctions
 
std::vector< std::shared_ptr< FGFunction > > PreFunctions
 

Additional Inherited Members

- Public Types inherited from FGJSBBase
enum  { eL = 1 , eM , eN }
 Moments L, M, N. More...
 
enum  { eP = 1 , eQ , eR }
 Rates P, Q, R. More...
 
enum  { eU = 1 , eV , eW }
 Velocities U, V, W. More...
 
enum  { eX = 1 , eY , eZ }
 Positions X, Y, Z. More...
 
enum  { ePhi = 1 , eTht , ePsi }
 Euler angles Phi, Theta, Psi. More...
 
enum  { eDrag = 1 , eSide , eLift }
 Stability axis forces, Drag, Side force, Lift. More...
 
enum  { eRoll = 1 , ePitch , eYaw }
 Local frame orientation Roll, Pitch, Yaw. More...
 
enum  { eNorth = 1 , eEast , eDown }
 Local frame position North, East, Down. More...
 
enum  { eLat = 1 , eLong , eRad }
 Locations Radius, Latitude, Longitude. More...
 
enum  {
  inNone = 0 , inDegrees , inRadians , inMeters ,
  inFeet
}
 Conversion specifiers. More...
 
- Static Public Member Functions inherited from FGJSBBase
static const std::string & GetVersion (void)
 Returns the version number of JSBSim.
 
static constexpr double KelvinToFahrenheit (double kelvin)
 Converts from degrees Kelvin to degrees Fahrenheit.
 
static constexpr double CelsiusToRankine (double celsius)
 Converts from degrees Celsius to degrees Rankine.
 
static constexpr double RankineToCelsius (double rankine)
 Converts from degrees Rankine to degrees Celsius.
 
static constexpr double KelvinToRankine (double kelvin)
 Converts from degrees Kelvin to degrees Rankine.
 
static constexpr double RankineToKelvin (double rankine)
 Converts from degrees Rankine to degrees Kelvin.
 
static constexpr double FahrenheitToCelsius (double fahrenheit)
 Converts from degrees Fahrenheit to degrees Celsius.
 
static constexpr double CelsiusToFahrenheit (double celsius)
 Converts from degrees Celsius to degrees Fahrenheit.
 
static constexpr double CelsiusToKelvin (double celsius)
 Converts from degrees Celsius to degrees Kelvin.
 
static constexpr double KelvinToCelsius (double kelvin)
 Converts from degrees Kelvin to degrees Celsius.
 
static constexpr double FeetToMeters (double measure)
 Converts from feet to meters.
 
static bool EqualToRoundoff (double a, double b)
 Finite precision comparison.
 
static bool EqualToRoundoff (float a, float b)
 Finite precision comparison.
 
static bool EqualToRoundoff (float a, double b)
 Finite precision comparison.
 
static bool EqualToRoundoff (double a, float b)
 Finite precision comparison.
 
static constexpr double Constrain (double min, double value, double max)
 Constrain a value between a minimum and a maximum value.
 
static constexpr double sign (double num)
 
- Static Public Attributes inherited from FGJSBBase
static char highint [5] = {27, '[', '1', 'm', '\0' }
 highlights text
 
static char halfint [5] = {27, '[', '2', 'm', '\0' }
 low intensity text
 
static char normint [6] = {27, '[', '2', '2', 'm', '\0' }
 normal intensity text
 
static char reset [5] = {27, '[', '0', 'm', '\0' }
 resets text properties
 
static char underon [5] = {27, '[', '4', 'm', '\0' }
 underlines text
 
static char underoff [6] = {27, '[', '2', '4', 'm', '\0' }
 underline off
 
static char fgblue [6] = {27, '[', '3', '4', 'm', '\0' }
 blue text
 
static char fgcyan [6] = {27, '[', '3', '6', 'm', '\0' }
 cyan text
 
static char fgred [6] = {27, '[', '3', '1', 'm', '\0' }
 red text
 
static char fggreen [6] = {27, '[', '3', '2', 'm', '\0' }
 green text
 
static char fgdef [6] = {27, '[', '3', '9', 'm', '\0' }
 default text
 
static short debug_lvl = 1
 
- Protected Member Functions inherited from FGInputType
void Debug (int from) override
 
- Protected Member Functions inherited from FGModel
bool Upload (Element *el, bool preLoad)
 Uploads this model in memory.
 
- Static Protected Member Functions inherited from FGJSBBase
static std::string CreateIndexedPropertyName (const std::string &Property, int index)
 
- Static Protected Attributes inherited from FGJSBBase
static constexpr double radtodeg = 180. / M_PI
 
static constexpr double degtorad = M_PI / 180.
 
static constexpr double hptoftlbssec = 550.0
 
static constexpr double psftoinhg = 0.014138
 
static constexpr double psftopa = 47.88
 
static constexpr double fttom = 0.3048
 
static constexpr double ktstofps = 1852./(3600*fttom)
 
static constexpr double fpstokts = 1.0 / ktstofps
 
static constexpr double inchtoft = 1.0/12.0
 
static constexpr double m3toft3 = 1.0/(fttom*fttom*fttom)
 
static constexpr double in3tom3 = inchtoft*inchtoft*inchtoft/m3toft3
 
static constexpr double inhgtopa = 3386.38
 
static constexpr double slugtolb = 32.174049
 Note that definition of lbtoslug by the inverse of slugtolb and not to a different constant you can also get from some tables will make lbtoslug*slugtolb == 1 up to the magnitude of roundoff.
 
static constexpr double lbtoslug = 1.0/slugtolb
 
static constexpr double kgtolb = 2.20462
 
static constexpr double kgtoslug = 0.06852168
 
static const std::string needed_cfg_version = "2.0"
 
static const std::string JSBSim_version = JSBSIM_VERSION " " __DATE__ " " __TIME__
 

Constructor & Destructor Documentation

◆ FGInputSocket()

FGInputSocket ( FGFDMExec fdmex)

Constructor.

Definition at line 60 of file FGInputSocket.cpp.

60 :
61 FGInputType(fdmex), socket(0), SockProtocol(FGfdmSocket::ptTCP),
62 BlockingInput(false)
63{
64}
FGInputType(FGFDMExec *fdmex)
Constructor (implement the FGModel interface).

◆ ~FGInputSocket()

~FGInputSocket ( )
override

Destructor.

Definition at line 68 of file FGInputSocket.cpp.

69{
70 delete socket;
71}

Member Function Documentation

◆ InitModel()

bool InitModel ( void  )
overridevirtual

Initializes the instance.

This method basically opens the socket to which inputs will be directed.

Returns
true if the execution succeeded.

Reimplemented from FGModelFunctions.

Definition at line 96 of file FGInputSocket.cpp.

97{
99 delete socket;
100 socket = new FGfdmSocket(SockPort, SockProtocol);
101
102 if (socket == 0) return false;
103 if (!socket->GetConnectStatus()) return false;
104
105 return true;
106 }
107
108 return false;
109}
bool InitModel(void) override
Init the input model according to its configitation.
bool GetConnectStatus(void)
Return the connection status of the socket.
+ Here is the call graph for this function:

◆ Load()

bool Load ( Element el)
overridevirtual

Init the input directives from an XML file.

Parameters
elementXML Element that is pointing to the input directives

Reimplemented from FGModel.

Reimplemented in FGUDPInputSocket.

Definition at line 75 of file FGInputSocket.cpp.

76{
77 if (!FGInputType::Load(el))
78 return false;
79
80 SockPort = atoi(el->GetAttributeValue("port").c_str());
81
82 if (SockPort == 0) {
83 cerr << endl << "No port assigned in input element" << endl;
84 return false;
85 }
86
87 string action = el->GetAttributeValue("action");
88 if (to_upper(action) == "BLOCKING_INPUT")
89 BlockingInput = true;
90
91 return true;
92}
bool Load(Element *el) override
Init the input directives from an XML file (implement the FGModel interface).
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ Read()

void Read ( bool  Holding)
overridevirtual

Generates the input.

Implements FGInputType.

Reimplemented in FGUDPInputSocket.

Definition at line 113 of file FGInputSocket.cpp.

114{
115 if (!socket) return;
116 if (!socket->GetConnectStatus()) return;
117
118 if (BlockingInput)
119 socket->WaitUntilReadable(); // block until a transmission is received
120
121 string raw_data = socket->Receive(); // read data
122
123 if (!raw_data.empty()) {
124 size_t start = 0;
125
126 data += raw_data;
127
128 // parse lines
129 while (1) {
130 size_t string_start = data.find_first_not_of("\r\n", start);
131 if (string_start == string::npos) break;
132 size_t string_end = data.find_first_of("\r\n", string_start);
133 if (string_end == string::npos) break;
134 string line = data.substr(string_start, string_end-string_start);
135 if (line.empty()) break;
136
137 // now parse individual line
138 vector <string> tokens = split(line,' ');
139
140 string command, argument, str_value;
141 if (!tokens.empty()) {
142 command = to_lower(tokens[0]);
143 if (tokens.size() > 1) {
144 argument = trim(tokens[1]);
145 if (tokens.size() > 2) {
146 str_value = trim(tokens[2]);
147 }
148 }
149 }
150
151 if (command == "set") { // SET PROPERTY
152 FGPropertyNode* node = nullptr;
153
154 if (argument.empty()) {
155 socket->Reply("No property argument supplied.\r\n");
156 break;
157 }
158 try {
159 node = PropertyManager->GetNode(argument);
160 } catch(...) {
161 socket->Reply("Badly formed property query\r\n");
162 break;
163 }
164
165 if (!node) {
166 socket->Reply("Unknown property\r\n");
167 break;
168 } else if (!node->hasValue()) {
169 socket->Reply("Not a leaf property\r\n");
170 break;
171 } else {
172 try {
173 double value = atof_locale_c(str_value);
174 node->setDoubleValue(value);
175 } catch(InvalidNumber& e) {
176 string msg(e.what());
177 msg += "\r\n";
178 socket->Reply(msg);
179 break;
180 }
181 }
182 socket->Reply("set successful\r\n");
183
184 } else if (command == "get") { // GET PROPERTY
185 FGPropertyNode* node = nullptr;
186
187 if (argument.empty()) {
188 socket->Reply("No property argument supplied.\r\n");
189 break;
190 }
191 try {
192 node = PropertyManager->GetNode(argument);
193 } catch(...) {
194 socket->Reply("Badly formed property query\r\n");
195 break;
196 }
197
198 if (!node) {
199 socket->Reply("Unknown property\r\n");
200 break;
201 } else if (!node->hasValue()) {
202 if (Holding) { // if holding can query property list
203 string query = FDMExec->QueryPropertyCatalog(argument, "\r\n");
204 socket->Reply(query);
205 } else {
206 socket->Reply("Must be in HOLD to search properties\r\n");
207 }
208 } else {
209 ostringstream buf;
210 buf << argument << " = " << setw(12) << setprecision(6) << node->getDoubleValue() << '\r' << endl;
211 socket->Reply(buf.str());
212 }
213
214 } else if (command == "hold") { // PAUSE
215
216 FDMExec->Hold();
217 socket->Reply("Holding\r\n");
218
219 } else if (command == "resume") { // RESUME
220
221 FDMExec->Resume();
222 socket->Reply("Resuming\r\n");
223
224 } else if (command == "iterate") { // ITERATE
225
226 int argumentInt;
227 istringstream (argument) >> argumentInt;
228 if (argument.empty()) {
229 socket->Reply("No argument supplied for number of iterations.\r\n");
230 break;
231 }
232 if ( !(argumentInt > 0) ){
233 socket->Reply("Required argument must be a positive Integer.\r\n");
234 break;
235 }
236 FDMExec->EnableIncrementThenHold( argumentInt );
237 FDMExec->Resume();
238 socket->Reply("Iterations performed\r\n");
239
240 } else if (command == "quit") { // QUIT
241
242 // close the socket connection
243 socket->Send("Closing connection\r\n");
244 socket->Close();
245
246 } else if (command == "info") { // INFO
247
248 // get info about the sim run and/or aircraft, etc.
249 ostringstream info;
250 info << "JSBSim version: " << JSBSim_version << "\r\n";
251 info << "Config File version: " << needed_cfg_version << "\r\n";
252 info << "Aircraft simulated: " << FDMExec->GetAircraft()->GetAircraftName() << "\r\n";
253 info << "Simulation time: " << setw(8) << setprecision(3) << FDMExec->GetSimTime() << '\r' << endl;
254 socket->Reply(info.str());
255
256 } else if (command == "help") { // HELP
257
258 socket->Reply(
259 " JSBSim Server commands:\r\n\r\n"
260 " get {property name}\r\n"
261 " set {property name} {value}\r\n"
262 " hold\r\n"
263 " resume\r\n"
264 " iterate {value}\r\n"
265 " help\r\n"
266 " quit\r\n"
267 " info\r\n\r\n");
268
269 } else {
270 socket->Reply(string("Unknown command: ") + command + "\r\n");
271 }
272
273 start = string_end;
274 }
275
276 // Remove processed commands.
277 size_t last_crlf = data.find_last_of("\r\n");
278 if (last_crlf != string::npos) {
279 if (last_crlf < data.length()-1)
280 data = data.substr(last_crlf+1);
281 else
282 data.clear();
283 }
284 }
285
286}
std::shared_ptr< FGAircraft > GetAircraft(void) const
Returns the FGAircraft pointer.
std::string QueryPropertyCatalog(const std::string &check, const std::string &end_of_line="\n")
Retrieves property or properties matching the supplied string.
void EnableIncrementThenHold(int Timesteps)
Turn on hold after increment.
Definition FGFDMExec.h:490
void Resume(void)
Resumes execution from a "Hold".
Definition FGFDMExec.h:494
double GetSimTime(void) const
Returns the cumulative simulation time in seconds.
Definition FGFDMExec.h:549
void Hold(void)
Pauses execution by preventing time from incrementing.
Definition FGFDMExec.h:488
std::string Receive(void)
Receive data from the socket connection.
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.
+ Here is the call graph for this function:

Member Data Documentation

◆ BlockingInput

bool BlockingInput
protected

Definition at line 91 of file FGInputSocket.h.

◆ data

std::string data
protected

Definition at line 90 of file FGInputSocket.h.

◆ socket

FGfdmSocket* socket
protected

Definition at line 88 of file FGInputSocket.h.

◆ SockPort

unsigned int SockPort
protected

Definition at line 87 of file FGInputSocket.h.

◆ SockProtocol

FGfdmSocket::ProtocolType SockProtocol
protected

Definition at line 89 of file FGInputSocket.h.


The documentation for this class was generated from the following files: