46#include "FGInputSocket.h"
48#include "models/FGAircraft.h"
49#include "input_output/FGXMLElement.h"
50#include "input_output/string_utilities.h"
83 cerr << endl <<
"No port assigned in input element" << endl;
88 if (to_upper(action) ==
"BLOCKING_INPUT")
102 if (socket == 0)
return false;
121 string raw_data = socket->
Receive();
123 if (!raw_data.empty()) {
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;
138 vector <string> tokens = split(line,
' ');
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]);
151 if (command ==
"set") {
154 if (argument.empty()) {
155 socket->
Reply(
"No property argument supplied.\r\n");
159 node = PropertyManager->GetNode(argument);
161 socket->
Reply(
"Badly formed property query\r\n");
166 socket->
Reply(
"Unknown property\r\n");
168 }
else if (!node->hasValue()) {
169 socket->
Reply(
"Not a leaf property\r\n");
173 double value = atof_locale_c(str_value);
174 node->setDoubleValue(value);
176 string msg(e.what());
182 socket->
Reply(
"set successful\r\n");
184 }
else if (command ==
"get") {
187 if (argument.empty()) {
188 socket->
Reply(
"No property argument supplied.\r\n");
192 node = PropertyManager->GetNode(argument);
194 socket->
Reply(
"Badly formed property query\r\n");
199 socket->
Reply(
"Unknown property\r\n");
201 }
else if (!node->hasValue()) {
204 socket->
Reply(query);
206 socket->
Reply(
"Must be in HOLD to search properties\r\n");
210 buf << argument <<
" = " << setw(12) << setprecision(6) << node->getDoubleValue() <<
'\r' << endl;
211 socket->
Reply(buf.str());
214 }
else if (command ==
"hold") {
217 socket->
Reply(
"Holding\r\n");
219 }
else if (command ==
"resume") {
222 socket->
Reply(
"Resuming\r\n");
224 }
else if (command ==
"iterate") {
227 istringstream (argument) >> argumentInt;
228 if (argument.empty()) {
229 socket->
Reply(
"No argument supplied for number of iterations.\r\n");
232 if ( !(argumentInt > 0) ){
233 socket->
Reply(
"Required argument must be a positive Integer.\r\n");
238 socket->
Reply(
"Iterations performed\r\n");
240 }
else if (command ==
"quit") {
243 socket->
Send(
"Closing connection\r\n");
246 }
else if (command ==
"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());
256 }
else if (command ==
"help") {
259 " JSBSim Server commands:\r\n\r\n"
260 " get {property name}\r\n"
261 " set {property name} {value}\r\n"
264 " iterate {value}\r\n"
270 socket->
Reply(
string(
"Unknown command: ") + command +
"\r\n");
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);
std::string GetAttributeValue(const std::string &key)
Retrieves an attribute.
Encapsulates the JSBSim simulation executive.
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.
void Resume(void)
Resumes execution from a "Hold".
double GetSimTime(void) const
Returns the cumulative simulation time in seconds.
void Hold(void)
Pauses execution by preventing time from incrementing.
Class wrapper for property handling.
The FGfdmSocket class enables JSBSim to communicate via sockets.
std::string Receive(void)
Receive data from the socket connection.
bool GetConnectStatus(void)
Return the connection status of the socket.
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.