]> git.mxchange.org Git - flightgear.git/blob - src/Main/fg_io.cxx
Fix indentation and mixed-up white-space/tabs
[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         }
236 #endif
237         } else {
238             return NULL;
239         }
240     }
241     catch (FGProtocolConfigError& err)
242     {
243         SG_LOG( SG_IO, SG_ALERT, "Port configuration error: " << err.what() );
244         delete io;
245         return 0;
246     }
247
248     if (tokens.size() < 3) {
249         SG_LOG( SG_IO, SG_ALERT, "Incompatible number of network arguments.");
250         return NULL;
251     }
252     string medium = tokens[1];
253     SG_LOG( SG_IO, SG_INFO, "  medium = " << medium );
254
255     string direction = tokens[2];
256     io->set_direction( direction );
257     SG_LOG( SG_IO, SG_INFO, "  direction = " << direction );
258
259     string hertz_str = tokens[3];
260     double hertz = atof( hertz_str.c_str() );
261     io->set_hz( hertz );
262     SG_LOG( SG_IO, SG_INFO, "  hertz = " << hertz );
263
264     if ( medium == "serial" ) {
265         if ( tokens.size() < 5) {
266             SG_LOG( SG_IO, SG_ALERT, "Incompatible number of arguments for serial communications.");
267             return NULL;
268         }
269         // device name
270         string device = tokens[4];
271         SG_LOG( SG_IO, SG_INFO, "  device = " << device );
272
273         // baud
274         string baud = tokens[5];
275         SG_LOG( SG_IO, SG_INFO, "  baud = " << baud );
276
277
278         SGSerial *ch = new SGSerial( device, baud );
279         io->set_io_channel( ch );
280
281         if ( protocol == "AV400WSimB" ) {
282             if ( tokens.size() < 7 ) {
283                 SG_LOG( SG_IO, SG_ALERT, "Missing second hz for AV400WSimB.");
284                 return NULL;
285             }
286             FGAV400WSimB *fgavb = static_cast<FGAV400WSimB*>(io);
287             string hz2_str = tokens[6];
288             double hz2 = atof(hz2_str.c_str());
289             fgavb->set_hz2(hz2);
290         }
291     } else if ( medium == "file" ) {
292         // file name
293         if ( tokens.size() < 4) {
294             SG_LOG( SG_IO, SG_ALERT, "Incompatible number of arguments for file I/O.");
295             return NULL;
296         }
297
298         string file = tokens[4];
299         SG_LOG( SG_IO, SG_INFO, "  file name = " << file );
300         int repeat = 1;
301         if (tokens.size() >= 7 && tokens[6] == "repeat") {
302             if (tokens.size() >= 8) {
303                 repeat = atoi(tokens[7].c_str());
304                 FGGeneric* generic = dynamic_cast<FGGeneric*>(io);
305                 if (generic)
306                     generic->setExitOnError(true);
307             } else {
308                 repeat = -1;
309             }
310         }
311         SGFile *ch = new SGFile( file, repeat );
312         io->set_io_channel( ch );
313     } else if ( medium == "socket" ) {
314         if ( tokens.size() < 6) {
315             SG_LOG( SG_IO, SG_ALERT, "Incompatible number of arguments for socket communications.");
316             return NULL;
317         }
318         string hostname = tokens[4];
319         string port = tokens[5];
320         string style = tokens[6];
321
322         SG_LOG( SG_IO, SG_INFO, "  hostname = " << hostname );
323         SG_LOG( SG_IO, SG_INFO, "  port = " << port );
324         SG_LOG( SG_IO, SG_INFO, "  style = " << style );
325
326         io->set_io_channel( new SGSocket( hostname, port, style ) );
327     }
328
329     return io;
330 }
331
332
333 // step through the port config streams (from fgOPTIONS) and setup
334 // serial port channels for each
335 void
336 FGIO::init()
337 {
338     // SG_LOG( SG_IO, SG_INFO, "I/O Channel initialization, " <<
339     //         globals->get_channel_options_list()->size() << " requests." );
340
341     _realDeltaTime = fgGetNode("/sim/time/delta-realtime-sec");
342
343     FGProtocol *p;
344
345     // we could almost do this in a single step except pushing a valid
346     // port onto the port list copies the structure and destroys the
347     // original, which closes the port and frees up the fd ... doh!!!
348
349     // parse the configuration strings and store the results in the
350     // appropriate FGIOChannel structures
351     string_list::iterator i = globals->get_channel_options_list()->begin();
352     string_list::iterator end = globals->get_channel_options_list()->end();
353     for (; i != end; ++i ) {
354         p = parse_port_config( *i );
355         if (!p) {
356             continue;
357         }
358
359         p->open();
360         if ( !p->is_enabled() ) {
361             SG_LOG( SG_IO, SG_ALERT, "I/O Channel config failed." );
362             delete p;
363             continue;
364         }
365
366         io_channels.push_back( p );
367     } // of channel options iteration
368 }
369
370 void
371 FGIO::reinit()
372 {
373 }
374
375 // process any IO channel work
376 void
377 FGIO::update( double /* delta_time_sec */ )
378 {
379     if (FGHTTPClient::haveInstance()) {
380         FGHTTPClient::instance()->update();
381     }
382     
383     // use wall-clock, not simulation, delta time, so that network
384     // protocols update when the simulation is paused
385     // see http://code.google.com/p/flightgear-bugs/issues/detail?id=125
386     double delta_time_sec = _realDeltaTime->getDoubleValue();
387
388     ProtocolVec::iterator i = io_channels.begin();
389     ProtocolVec::iterator end = io_channels.end();
390     for (; i != end; ++i ) {
391         FGProtocol* p = *i;
392         if (!p->is_enabled()) {
393             continue;
394         }
395
396         p->dec_count_down( delta_time_sec );
397         double dt = 1 / p->get_hz();
398         if ( p->get_count_down() < 0.33 * dt ) {
399             p->process();
400             p->inc_count();
401             while ( p->get_count_down() < 0.33 * dt ) {
402                 p->inc_count_down( dt );
403             }
404         } // of channel processing
405     } // of io_channels iteration
406 }
407
408 void
409 FGIO::shutdown()
410 {
411     FGProtocol *p;
412
413     ProtocolVec::iterator i = io_channels.begin();
414     ProtocolVec::iterator end = io_channels.end();
415     for (; i != end; ++i )
416     {
417         p = *i;
418         if ( p->is_enabled() ) {
419             p->close();
420         }
421
422         delete p;
423     }
424
425     io_channels.clear();
426 }
427
428 void
429 FGIO::bind()
430 {
431 }
432
433 void
434 FGIO::unbind()
435 {
436 }
437