]> git.mxchange.org Git - flightgear.git/blob - src/Main/fg_io.cxx
Merge branch 'next' of http://git.gitorious.org/fg/flightgear into next
[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/multiplay.hxx>
69 #ifdef FG_HAVE_HLA
70 #include <Network/HLA/hla.hxx>
71 #endif
72
73 #include "globals.hxx"
74 #include "fg_io.hxx"
75
76 using std::atoi;
77 using std::string;
78
79
80 FGIO::FGIO()
81 {
82 }
83
84
85
86
87
88 FGIO::~FGIO()
89 {
90     
91 }
92
93
94 // configure a port based on the config string
95 FGProtocol*
96 FGIO::parse_port_config( const string& config )
97 {
98     SG_LOG( SG_IO, SG_INFO, "Parse I/O channel request: " << config );
99
100     string_list tokens = simgear::strutils::split( config, "," );
101     if (tokens.empty())
102     {
103         SG_LOG( SG_IO, SG_ALERT,
104                 "Port configuration error: empty config string" );
105         return 0;
106     }
107
108     string protocol = tokens[0];
109     SG_LOG( SG_IO, SG_INFO, "  protocol = " << protocol );
110
111     FGProtocol *io = 0;
112
113     try
114     {
115         if ( protocol == "atcsim" ) {
116             FGATCMain *atcsim = new FGATCMain;
117             atcsim->set_hz( 30 );
118             if ( tokens.size() != 6 ) {
119                 SG_LOG( SG_IO, SG_ALERT, "Usage: --atcsim=[no-]pedals,"
120                         << "input0_config,input1_config,"
121                         << "output0_config,output1_config,file.nas" );
122                 delete atcsim;
123                 return NULL;
124             }
125             if ( tokens[1] == "no-pedals" ) {
126                 fgSetBool( "/input/atcsim/ignore-pedal-controls", true );
127             } else {
128                 fgSetBool( "/input/atcsim/ignore-pedal-controls", false );
129             }
130             atcsim->set_path_names(tokens[2], tokens[3], tokens[4], tokens[5]);
131             return atcsim;
132         } else if ( protocol == "atlas" ) {
133             FGAtlas *atlas = new FGAtlas;
134             io = atlas;
135         } else if ( protocol == "opengc" ) {
136             // char wait;
137             // printf("Parsed opengc\n"); cin >> wait;
138             FGOpenGC *opengc = new FGOpenGC;
139             io = opengc;
140         } else if ( protocol == "AV400" ) {
141             FGAV400 *av400 = new FGAV400;
142             io = av400;
143         } else if ( protocol == "AV400Sim" ) {
144             FGAV400Sim *av400sim = new FGAV400Sim;
145             io = av400sim;
146         } else if ( protocol == "AV400WSimA" ) {
147             FGAV400WSimA *av400wsima = new FGAV400WSimA;
148             io = av400wsima;
149         } else if ( protocol == "AV400WSimB" ) {
150             FGAV400WSimB *av400wsimb = new FGAV400WSimB;
151             io = av400wsimb;
152         } else if ( protocol == "garmin" ) {
153             FGGarmin *garmin = new FGGarmin;
154             io = garmin;
155         } else if ( protocol == "httpd" ) {
156             // determine port
157             string port = tokens[1];
158             return new FGHttpd( atoi(port.c_str()) );
159 #ifdef FG_JPEG_SERVER
160         } else if ( protocol == "jpg-httpd" ) {
161             // determine port
162             string port = tokens[1];
163             return new FGJpegHttpd( atoi(port.c_str()) );
164 #endif
165         } else if ( protocol == "joyclient" ) {
166             FGJoyClient *joyclient = new FGJoyClient;
167             io = joyclient;
168         } else if ( protocol == "jsclient" ) {
169             FGJsClient *jsclient = new FGJsClient;
170             io = jsclient;
171         } else if ( protocol == "native" ) {
172             FGNative *native = new FGNative;
173             io = native;
174         } else if ( protocol == "native-ctrls" ) {
175             FGNativeCtrls *native_ctrls = new FGNativeCtrls;
176             io = native_ctrls;
177         } else if ( protocol == "native-fdm" ) {
178             FGNativeFDM *native_fdm = new FGNativeFDM;
179             io = native_fdm;
180         } else if ( protocol == "native-gui" ) {
181             FGNativeGUI *net_gui = new FGNativeGUI;
182             io = net_gui;
183         } else if ( protocol == "nmea" ) {
184             FGNMEA *nmea = new FGNMEA;
185             io = nmea;
186         } else if ( protocol == "props" || protocol == "telnet" ) {
187             io = new FGProps( tokens );
188             return io;
189         } else if ( protocol == "pve" ) {
190             FGPVE *pve = new FGPVE;
191             io = pve;
192         } else if ( protocol == "ray" ) {
193             FGRAY *ray = new FGRAY;
194             io = ray;
195         } else if ( protocol == "rul" ) {
196             FGRUL *rul = new FGRUL;
197             io = rul;
198         } else if ( protocol == "generic" ) {
199             size_t configToken;
200             if (tokens[1] == "socket") {
201                 configToken = 7;
202             } else if (tokens[1] == "file") {
203                 configToken = 5;
204             } else {
205                 configToken = 6;
206             }
207
208             if (configToken >= tokens.size()) {
209                 SG_LOG( SG_IO, SG_ALERT, "Not enough tokens passed for the generic protocol.");
210                 return NULL;
211             }
212
213             FGGeneric *generic = new FGGeneric( tokens );
214             io = generic;
215         } else if ( protocol == "multiplay" ) {
216             if ( tokens.size() != 5 ) {
217                 SG_LOG( SG_IO, SG_ALERT, "Ignoring invalid --multiplay option "
218                         "(4 arguments expected: --multiplay=dir,hz,hostname,port)" );
219                 return NULL;
220             }
221             string dir = tokens[1];
222             string rate = tokens[2];
223             string host = tokens[3];
224             string port = tokens[4];
225             return new FGMultiplay(dir, atoi(rate.c_str()), host, atoi(port.c_str()));
226 #ifdef FG_HAVE_HLA
227         } else if ( protocol == "hla" ) {
228             return new FGHLA(tokens);
229 #endif
230         } else {
231             return NULL;
232         }
233     }
234     catch (FGProtocolConfigError& err)
235     {
236         SG_LOG( SG_IO, SG_ALERT, "Port configuration error: " << err.what() );
237         delete io;
238         return 0;
239     }
240
241     if (tokens.size() < 3) {
242       SG_LOG( SG_IO, SG_ALERT, "Incompatible number of network arguments.");
243       return NULL;
244     }
245     string medium = tokens[1];
246     SG_LOG( SG_IO, SG_INFO, "  medium = " << medium );
247
248     string direction = tokens[2];
249     io->set_direction( direction );
250     SG_LOG( SG_IO, SG_INFO, "  direction = " << direction );
251
252     string hertz_str = tokens[3];
253     double hertz = atof( hertz_str.c_str() );
254     io->set_hz( hertz );
255     SG_LOG( SG_IO, SG_INFO, "  hertz = " << hertz );
256
257     if ( medium == "serial" ) {
258         if ( tokens.size() < 5) {
259           SG_LOG( SG_IO, SG_ALERT, "Incompatible number of arguments for serial communications.");
260           return NULL;
261         }
262         // device name
263         string device = tokens[4];
264         SG_LOG( SG_IO, SG_INFO, "  device = " << device );
265
266         // baud
267         string baud = tokens[5];
268         SG_LOG( SG_IO, SG_INFO, "  baud = " << baud );
269
270
271         SGSerial *ch = new SGSerial( device, baud );
272         io->set_io_channel( ch );
273         
274         if ( protocol == "AV400WSimB" ) {
275             if ( tokens.size() < 7 ) {
276                 SG_LOG( SG_IO, SG_ALERT, "Missing second hz for AV400WSimB.");
277                 return NULL;
278             }
279             FGAV400WSimB *fgavb = static_cast<FGAV400WSimB*>(io);
280             string hz2_str = tokens[6];
281             double hz2 = atof(hz2_str.c_str());
282             fgavb->set_hz2(hz2);
283         }
284     } else if ( medium == "file" ) {
285         // file name
286         if ( tokens.size() < 4) {
287           SG_LOG( SG_IO, SG_ALERT, "Incompatible number of arguments for file I/O.");
288           return NULL;
289         }
290
291         string file = tokens[4];
292         SG_LOG( SG_IO, SG_INFO, "  file name = " << file );
293         int repeat = 1;
294         if (tokens.size() >= 7 && tokens[6] == "repeat") {
295             if (tokens.size() >= 8) {
296                 repeat = atoi(tokens[7].c_str());
297                 FGGeneric* generic = dynamic_cast<FGGeneric*>(io);
298                 if (generic)
299                     generic->setExitOnError(true);
300             } else {
301                 repeat = -1;
302             }
303         }
304         SGFile *ch = new SGFile( file, repeat );
305         io->set_io_channel( ch );
306     } else if ( medium == "socket" ) {
307         if ( tokens.size() < 6) {
308           SG_LOG( SG_IO, SG_ALERT, "Incompatible number of arguments for socket communications.");
309           return NULL;
310         }
311         string hostname = tokens[4];
312         string port = tokens[5];
313         string style = tokens[6];
314
315         SG_LOG( SG_IO, SG_INFO, "  hostname = " << hostname );
316         SG_LOG( SG_IO, SG_INFO, "  port = " << port );
317         SG_LOG( SG_IO, SG_INFO, "  style = " << style );
318
319         io->set_io_channel( new SGSocket( hostname, port, style ) );
320     }
321
322     return io;
323 }
324
325
326 // step through the port config streams (from fgOPTIONS) and setup
327 // serial port channels for each
328 void
329 FGIO::init()
330 {
331     // SG_LOG( SG_IO, SG_INFO, "I/O Channel initialization, " <<
332     //         globals->get_channel_options_list()->size() << " requests." );
333
334     _realDeltaTime = fgGetNode("/sim/time/delta-realtime-sec");
335     
336     FGProtocol *p;
337
338     // we could almost do this in a single step except pushing a valid
339     // port onto the port list copies the structure and destroys the
340     // original, which closes the port and frees up the fd ... doh!!!
341
342     // parse the configuration strings and store the results in the
343     // appropriate FGIOChannel structures
344     string_list::iterator i = globals->get_channel_options_list()->begin();
345     string_list::iterator end = globals->get_channel_options_list()->end();
346     for (; i != end; ++i )
347     {
348         p = parse_port_config( *i );
349         if ( p != NULL ) {
350             p->open();
351             io_channels.push_back( p );
352             if ( !p->is_enabled() ) {
353                 SG_LOG( SG_IO, SG_ALERT, "I/O Channel config failed." );
354                 exit(-1);
355             }
356         } else {
357             SG_LOG( SG_IO, SG_INFO, "I/O Channel parse failed." );
358         }
359     }
360 }
361
362 void
363 FGIO::reinit()
364 {
365 }
366
367 // process any IO channel work
368 void
369 FGIO::update( double /* delta_time_sec */ )
370 {
371   // use wall-clock, not simulation, delta time, so that network
372   // protocols update when the simulation is paused
373   // see http://code.google.com/p/flightgear-bugs/issues/detail?id=125
374     double delta_time_sec = _realDeltaTime->getDoubleValue();
375
376     ProtocolVec::iterator i = io_channels.begin();
377     ProtocolVec::iterator end = io_channels.end();
378     for (; i != end; ++i ) {
379       FGProtocol* p = *i;
380       if (!p->is_enabled()) {
381         continue;
382       }
383       
384             p->dec_count_down( delta_time_sec );
385             double dt = 1 / p->get_hz();
386             if ( p->get_count_down() < 0.33 * dt ) {
387               p->process();
388               p->inc_count();
389               while ( p->get_count_down() < 0.33 * dt ) {
390           p->inc_count_down( dt );
391               }
392             } // of channel processing
393     } // of io_channels iteration
394 }
395
396 void
397 FGIO::shutdown()
398 {
399     FGProtocol *p;
400
401     ProtocolVec::iterator i = io_channels.begin();
402     ProtocolVec::iterator end = io_channels.end();
403     for (; i != end; ++i )
404     {
405       p = *i;
406       if ( p->is_enabled() ) {
407           p->close();
408       }
409       
410       delete p;
411     }
412
413   io_channels.clear();
414 }
415
416 void
417 FGIO::bind()
418 {
419 }
420
421 void
422 FGIO::unbind()
423 {
424 }
425