]> git.mxchange.org Git - flightgear.git/blob - src/Main/fg_io.cxx
Support a --no-default-config option.
[flightgear.git] / src / Main / fg_io.cxx
1 // fg_io.cxx -- higher level I/O channel management routines
2 //
3 // Written by Curtis Olson, started November 1999.
4 //
5 // Copyright (C) 1999  Curtis L. Olson - http://www.flightgear.org/~curt
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23 #ifdef HAVE_CONFIG_H
24 #  include "config.h"
25 #endif
26
27 #include <simgear/compiler.h>
28
29 #include <cstdlib>             // atoi()
30
31 #include <string>
32 #include <algorithm>
33
34 #include <simgear/debug/logstream.hxx>
35 #include <simgear/io/iochannel.hxx>
36 #include <simgear/io/sg_file.hxx>
37 #include <simgear/io/sg_serial.hxx>
38 #include <simgear/io/sg_socket.hxx>
39 #include <simgear/io/sg_socket_udp.hxx>
40 #include <simgear/math/sg_types.hxx>
41 #include <simgear/timing/timestamp.hxx>
42 #include <simgear/misc/strutils.hxx>
43
44 #include <Network/protocol.hxx>
45 #include <Network/ATC-Main.hxx>
46 #include <Network/atlas.hxx>
47 #include <Network/AV400.hxx>
48 #include <Network/AV400Sim.hxx>
49 #include <Network/AV400WSim.hxx>
50 #include <Network/garmin.hxx>
51 #include <Network/httpd.hxx>
52 #ifdef FG_JPEG_SERVER
53 #  include <Network/jpg-httpd.hxx>
54 #endif
55 #include <Network/joyclient.hxx>
56 #include <Network/jsclient.hxx>
57 #include <Network/native.hxx>
58 #include <Network/native_ctrls.hxx>
59 #include <Network/native_fdm.hxx>
60 #include <Network/native_gui.hxx>
61 #include <Network/opengc.hxx>
62 #include <Network/nmea.hxx>
63 #include <Network/props.hxx>
64 #include <Network/pve.hxx>
65 #include <Network/ray.hxx>
66 #include <Network/rul.hxx>
67 #include <Network/generic.hxx>
68 #include <Network/HTTPClient.hxx>
69
70 #ifdef FG_HAVE_HLA
71 #include <Network/HLA/hla.hxx>
72 #endif
73
74 #include "globals.hxx"
75 #include "fg_io.hxx"
76
77 using std::atoi;
78 using std::string;
79
80
81 FGIO::FGIO()
82 {
83 }
84
85
86
87
88
89 FGIO::~FGIO()
90 {
91
92 }
93
94
95 // configure a port based on the config string
96 FGProtocol*
97 FGIO::parse_port_config( const string& config )
98 {
99     SG_LOG( SG_IO, SG_INFO, "Parse I/O channel request: " << config );
100
101     string_list tokens = simgear::strutils::split( config, "," );
102     if (tokens.empty())
103     {
104         SG_LOG( SG_IO, SG_ALERT,
105                 "Port configuration error: empty config string" );
106         return 0;
107     }
108
109     string protocol = tokens[0];
110     SG_LOG( SG_IO, SG_INFO, "  protocol = " << protocol );
111
112     FGProtocol *io = 0;
113
114     try
115     {
116         if ( protocol == "atcsim" ) {
117             FGATCMain *atcsim = new FGATCMain;
118             atcsim->set_hz( 30 );
119             if ( tokens.size() != 6 ) {
120                 SG_LOG( SG_IO, SG_ALERT, "Usage: --atcsim=[no-]pedals,"
121                         << "input0_config,input1_config,"
122                         << "output0_config,output1_config,file.nas" );
123                 delete atcsim;
124                 return NULL;
125             }
126             if ( tokens[1] == "no-pedals" ) {
127                 fgSetBool( "/input/atcsim/ignore-pedal-controls", true );
128             } else {
129                 fgSetBool( "/input/atcsim/ignore-pedal-controls", false );
130             }
131             atcsim->set_path_names(tokens[2], tokens[3], tokens[4], tokens[5]);
132             return atcsim;
133         } else if ( protocol == "atlas" ) {
134             FGAtlas *atlas = new FGAtlas;
135             io = atlas;
136         } else if ( protocol == "opengc" ) {
137             // char wait;
138             // printf("Parsed opengc\n"); cin >> wait;
139             FGOpenGC *opengc = new FGOpenGC;
140             io = opengc;
141         } else if ( protocol == "AV400" ) {
142             FGAV400 *av400 = new FGAV400;
143             io = av400;
144         } else if ( protocol == "AV400Sim" ) {
145             FGAV400Sim *av400sim = new FGAV400Sim;
146             io = av400sim;
147         } else if ( protocol == "AV400WSimA" ) {
148             FGAV400WSimA *av400wsima = new FGAV400WSimA;
149             io = av400wsima;
150         } else if ( protocol == "AV400WSimB" ) {
151             FGAV400WSimB *av400wsimb = new FGAV400WSimB;
152             io = av400wsimb;
153         } else if ( protocol == "garmin" ) {
154             FGGarmin *garmin = new FGGarmin;
155             io = garmin;
156         } else if ( protocol == "httpd" ) {
157             // determine port
158             string port = tokens[1];
159             return new FGHttpd( atoi(port.c_str()) );
160 #ifdef FG_JPEG_SERVER
161         } else if ( protocol == "jpg-httpd" ) {
162             // determine port
163             string port = tokens[1];
164             return new FGJpegHttpd( atoi(port.c_str()) );
165 #endif
166         } else if ( protocol == "joyclient" ) {
167             FGJoyClient *joyclient = new FGJoyClient;
168             io = joyclient;
169         } else if ( protocol == "jsclient" ) {
170             FGJsClient *jsclient = new FGJsClient;
171             io = jsclient;
172         } else if ( protocol == "native" ) {
173             FGNative *native = new FGNative;
174             io = native;
175         } else if ( protocol == "native-ctrls" ) {
176             FGNativeCtrls *native_ctrls = new FGNativeCtrls;
177             io = native_ctrls;
178         } else if ( protocol == "native-fdm" ) {
179             FGNativeFDM *native_fdm = new FGNativeFDM;
180             io = native_fdm;
181         } else if ( protocol == "native-gui" ) {
182             FGNativeGUI *net_gui = new FGNativeGUI;
183             io = net_gui;
184         } else if ( protocol == "nmea" ) {
185             FGNMEA *nmea = new FGNMEA;
186             io = nmea;
187         } else if ( protocol == "props" || protocol == "telnet" ) {
188             io = new FGProps( tokens );
189             return io;
190         } else if ( protocol == "pve" ) {
191             FGPVE *pve = new FGPVE;
192             io = pve;
193         } else if ( protocol == "ray" ) {
194             FGRAY *ray = new FGRAY;
195             io = ray;
196         } else if ( protocol == "rul" ) {
197             FGRUL *rul = new FGRUL;
198             io = rul;
199     } else if ( protocol == "generic" ) {
200         FGGeneric *generic = new FGGeneric( tokens );
201         if (!generic->getInitOk())
202         {
203             // failed to initialize (i.e. invalid configuration)
204             delete generic;
205             return NULL;
206         }
207         io = generic;
208     } else if ( protocol == "multiplay" ) {
209             if ( tokens.size() != 5 ) {
210                 SG_LOG( SG_IO, SG_ALERT, "Ignoring invalid --multiplay option "
211                         "(4 arguments expected: --multiplay=dir,hz,hostname,port)" );
212                 return NULL;
213             }
214             string dir = tokens[1];
215             int rate = atoi(tokens[2].c_str());
216             string host = tokens[3];
217
218              short port = atoi(tokens[4].c_str());
219
220         // multiplay used to be handled by an FGProtocol, but no longer. This code
221         // retains compatability with existing command-line syntax
222           fgSetInt("/sim/multiplay/tx-rate-hz", rate);
223           if (dir == "in") {
224             fgSetInt("/sim/multiplay/rxport", port);
225             fgSetString("/sim/multiplay/rxhost", host.c_str());
226           } else if (dir == "out") {
227             fgSetInt("/sim/multiplay/txport", port);
228             fgSetString("/sim/multiplay/txhost", host.c_str());
229           }
230
231           return NULL;
232 #ifdef FG_HAVE_HLA
233         } else if ( protocol == "hla" ) {
234             return new FGHLA(tokens);
235 #endif
236         } else {
237             return NULL;
238         }
239     }
240     catch (FGProtocolConfigError& err)
241     {
242         SG_LOG( SG_IO, SG_ALERT, "Port configuration error: " << err.what() );
243         delete io;
244         return 0;
245     }
246
247     if (tokens.size() < 3) {
248       SG_LOG( SG_IO, SG_ALERT, "Incompatible number of network arguments.");
249       return NULL;
250     }
251     string medium = tokens[1];
252     SG_LOG( SG_IO, SG_INFO, "  medium = " << medium );
253
254     string direction = tokens[2];
255     io->set_direction( direction );
256     SG_LOG( SG_IO, SG_INFO, "  direction = " << direction );
257
258     string hertz_str = tokens[3];
259     double hertz = atof( hertz_str.c_str() );
260     io->set_hz( hertz );
261     SG_LOG( SG_IO, SG_INFO, "  hertz = " << hertz );
262
263     if ( medium == "serial" ) {
264         if ( tokens.size() < 5) {
265           SG_LOG( SG_IO, SG_ALERT, "Incompatible number of arguments for serial communications.");
266           return NULL;
267         }
268         // device name
269         string device = tokens[4];
270         SG_LOG( SG_IO, SG_INFO, "  device = " << device );
271
272         // baud
273         string baud = tokens[5];
274         SG_LOG( SG_IO, SG_INFO, "  baud = " << baud );
275
276
277         SGSerial *ch = new SGSerial( device, baud );
278         io->set_io_channel( ch );
279
280         if ( protocol == "AV400WSimB" ) {
281             if ( tokens.size() < 7 ) {
282                 SG_LOG( SG_IO, SG_ALERT, "Missing second hz for AV400WSimB.");
283                 return NULL;
284             }
285             FGAV400WSimB *fgavb = static_cast<FGAV400WSimB*>(io);
286             string hz2_str = tokens[6];
287             double hz2 = atof(hz2_str.c_str());
288             fgavb->set_hz2(hz2);
289         }
290     } else if ( medium == "file" ) {
291         // file name
292         if ( tokens.size() < 4) {
293           SG_LOG( SG_IO, SG_ALERT, "Incompatible number of arguments for file I/O.");
294           return NULL;
295         }
296
297         string file = tokens[4];
298         SG_LOG( SG_IO, SG_INFO, "  file name = " << file );
299         int repeat = 1;
300         if (tokens.size() >= 7 && tokens[6] == "repeat") {
301             if (tokens.size() >= 8) {
302                 repeat = atoi(tokens[7].c_str());
303                 FGGeneric* generic = dynamic_cast<FGGeneric*>(io);
304                 if (generic)
305                     generic->setExitOnError(true);
306             } else {
307                 repeat = -1;
308             }
309         }
310         SGFile *ch = new SGFile( file, repeat );
311         io->set_io_channel( ch );
312     } else if ( medium == "socket" ) {
313         if ( tokens.size() < 6) {
314           SG_LOG( SG_IO, SG_ALERT, "Incompatible number of arguments for socket communications.");
315           return NULL;
316         }
317         string hostname = tokens[4];
318         string port = tokens[5];
319         string style = tokens[6];
320
321         SG_LOG( SG_IO, SG_INFO, "  hostname = " << hostname );
322         SG_LOG( SG_IO, SG_INFO, "  port = " << port );
323         SG_LOG( SG_IO, SG_INFO, "  style = " << style );
324
325         io->set_io_channel( new SGSocket( hostname, port, style ) );
326     }
327
328     return io;
329 }
330
331
332 // step through the port config streams (from fgOPTIONS) and setup
333 // serial port channels for each
334 void
335 FGIO::init()
336 {
337     // SG_LOG( SG_IO, SG_INFO, "I/O Channel initialization, " <<
338     //         globals->get_channel_options_list()->size() << " requests." );
339
340     _realDeltaTime = fgGetNode("/sim/time/delta-realtime-sec");
341
342     FGProtocol *p;
343
344     // we could almost do this in a single step except pushing a valid
345     // port onto the port list copies the structure and destroys the
346     // original, which closes the port and frees up the fd ... doh!!!
347
348     // parse the configuration strings and store the results in the
349     // appropriate FGIOChannel structures
350     string_list::iterator i = globals->get_channel_options_list()->begin();
351     string_list::iterator end = globals->get_channel_options_list()->end();
352     for (; i != end; ++i ) {
353       p = parse_port_config( *i );
354       if (!p) {
355         continue;
356       }
357
358       p->open();
359       if ( !p->is_enabled() ) {
360         SG_LOG( SG_IO, SG_ALERT, "I/O Channel config failed." );
361         delete p;
362         continue;
363       }
364
365       io_channels.push_back( p );
366     } // of channel options iteration
367 }
368
369 void
370 FGIO::reinit()
371 {
372 }
373
374 // process any IO channel work
375 void
376 FGIO::update( double /* delta_time_sec */ )
377 {
378     if (FGHTTPClient::haveInstance()) {
379         FGHTTPClient::instance()->update();
380     }
381     
382   // use wall-clock, not simulation, delta time, so that network
383   // protocols update when the simulation is paused
384   // see http://code.google.com/p/flightgear-bugs/issues/detail?id=125
385     double delta_time_sec = _realDeltaTime->getDoubleValue();
386
387     ProtocolVec::iterator i = io_channels.begin();
388     ProtocolVec::iterator end = io_channels.end();
389     for (; i != end; ++i ) {
390       FGProtocol* p = *i;
391       if (!p->is_enabled()) {
392         continue;
393       }
394
395             p->dec_count_down( delta_time_sec );
396             double dt = 1 / p->get_hz();
397             if ( p->get_count_down() < 0.33 * dt ) {
398               p->process();
399               p->inc_count();
400               while ( p->get_count_down() < 0.33 * dt ) {
401           p->inc_count_down( dt );
402               }
403             } // of channel processing
404     } // of io_channels iteration
405 }
406
407 void
408 FGIO::shutdown()
409 {
410     FGProtocol *p;
411
412     ProtocolVec::iterator i = io_channels.begin();
413     ProtocolVec::iterator end = io_channels.end();
414     for (; i != end; ++i )
415     {
416       p = *i;
417       if ( p->is_enabled() ) {
418           p->close();
419       }
420
421       delete p;
422     }
423
424   io_channels.clear();
425 }
426
427 void
428 FGIO::bind()
429 {
430 }
431
432 void
433 FGIO::unbind()
434 {
435 }
436