1
0
Fork 0
flightgear/src/Main/fg_io.cxx

242 lines
6.1 KiB
C++
Raw Normal View History

1999-11-19 02:10:24 +00:00
// fg_io.cxx -- higher level I/O channel management routines
//
// Written by Curtis Olson, started November 1999.
//
// Copyright (C) 1999 Curtis L. Olson - curt@flightgear.org
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
// $Id$
2000-02-15 03:30:01 +00:00
#include <simgear/compiler.h>
1999-11-19 02:10:24 +00:00
#include STL_STRING
2000-02-16 23:01:03 +00:00
#include <simgear/debug/logstream.hxx>
#include <simgear/math/fg_types.hxx>
2000-02-15 03:30:01 +00:00
1999-11-19 02:10:24 +00:00
#include <Main/options.hxx>
#include <Network/iochannel.hxx>
#include <Network/fg_file.hxx>
#include <Network/fg_serial.hxx>
#include <Network/fg_socket.hxx>
1999-11-19 02:10:24 +00:00
#include <Network/protocol.hxx>
1999-11-23 05:51:14 +00:00
#include <Network/native.hxx>
1999-11-19 02:10:24 +00:00
#include <Network/garmin.hxx>
#include <Network/nmea.hxx>
#include <Network/pve.hxx>
#include <Network/rul.hxx>
#include <Network/joyclient.hxx>
1999-11-19 02:10:24 +00:00
#include <Time/timestamp.hxx>
FG_USING_STD(string);
// define the global I/O channel list
io_container global_io_list;
// configure a port based on the config string
static FGProtocol *parse_port_config( const string& config )
{
string::size_type begin, end;
begin = 0;
FG_LOG( FG_IO, FG_INFO, "Parse I/O channel request: " << config );
// determine protocol
end = config.find(",", begin);
if ( end == string::npos ) {
return NULL; // dummy
}
string protocol = config.substr(begin, end - begin);
begin = end + 1;
FG_LOG( FG_IO, FG_INFO, " protocol = " << protocol );
FGProtocol *io;
1999-11-23 05:51:14 +00:00
if ( protocol == "native" ) {
FGNative *native = new FGNative;
io = native;
} else if ( protocol == "garmin" ) {
1999-11-19 02:10:24 +00:00
FGGarmin *garmin = new FGGarmin;
io = garmin;
} else if ( protocol == "nmea" ) {
FGNMEA *nmea = new FGNMEA;
io = nmea;
} else if ( protocol == "pve" ) {
FGPVE *pve = new FGPVE;
io = pve;
} else if ( protocol == "rul" ) {
FGRUL *rul = new FGRUL;
io = rul;
} else if ( protocol == "joyclient" ) {
FGJoyClient *joyclient = new FGJoyClient;
io = joyclient;
1999-11-19 02:10:24 +00:00
} else {
return NULL;
}
// determine medium
end = config.find(",", begin);
if ( end == string::npos ) {
return NULL; // dummy
}
string medium = config.substr(begin, end - begin);
begin = end + 1;
FG_LOG( FG_IO, FG_INFO, " medium = " << medium );
// determine direction
end = config.find(",", begin);
if ( end == string::npos ) {
return NULL; // dummy
}
string direction = config.substr(begin, end - begin);
begin = end + 1;
io->set_direction( direction );
FG_LOG( FG_IO, FG_INFO, " direction = " << direction );
// determine hertz
end = config.find(",", begin);
if ( end == string::npos ) {
return NULL; // dummy
}
string hertz_str = config.substr(begin, end - begin);
begin = end + 1;
double hertz = atof( hertz_str.c_str() );
io->set_hz( hertz );
FG_LOG( FG_IO, FG_INFO, " hertz = " << hertz );
if ( medium == "serial" ) {
FGSerial *ch = new FGSerial;
io->set_io_channel( ch );
// device name
end = config.find(",", begin);
if ( end == string::npos ) {
return NULL;
}
ch->set_device( config.substr(begin, end - begin) );
begin = end + 1;
FG_LOG( FG_IO, FG_INFO, " device = " << ch->get_device() );
// baud
ch->set_baud( config.substr(begin) );
FG_LOG( FG_IO, FG_INFO, " baud = " << ch->get_baud() );
io->set_io_channel( ch );
} else if ( medium == "file" ) {
FGFile *ch = new FGFile;
io->set_io_channel( ch );
1999-11-19 02:10:24 +00:00
// file name
ch->set_file_name( config.substr(begin) );
FG_LOG( FG_IO, FG_INFO, " file name = " << ch->get_file_name() );
} else if ( medium == "socket" ) {
FGSocket *ch = new FGSocket;
io->set_io_channel( ch );
// hostname
end = config.find(",", begin);
if ( end == string::npos ) {
return NULL;
}
ch->set_hostname( config.substr(begin, end - begin) );
begin = end + 1;
FG_LOG( FG_IO, FG_INFO, " hostname = " << ch->get_hostname() );
// port
ch->set_port_str( config.substr(begin) );
FG_LOG( FG_IO, FG_INFO, " port string = " << ch->get_port_str() );
1999-11-19 02:10:24 +00:00
}
return io;
}
// step through the port config streams (from fgOPTIONS) and setup
// serial port channels for each
void fgIOInit() {
FGProtocol *p;
string_list channel_options_list =
current_options.get_channel_options_list();
// we could almost do this in a single step except pushing a valid
// port onto the port list copies the structure and destroys the
// original, which closes the port and frees up the fd ... doh!!!
// parse the configuration strings and store the results in the
// appropriate FGIOChannel structures
for ( int i = 0; i < (int)channel_options_list.size(); ++i ) {
p = parse_port_config( channel_options_list[i] );
if ( p != NULL ) {
p->open();
global_io_list.push_back( p );
if ( !p->is_enabled() ) {
FG_LOG( FG_IO, FG_INFO, "I/O Channel config failed." );
}
} else {
FG_LOG( FG_IO, FG_INFO, "I/O Channel parse failed." );
}
}
}
// process any serial port work
void fgIOProcess() {
FGProtocol *p;
// cout << "processing I/O channels" << endl;
static int inited = 0;
int interval;
static FGTimeStamp last;
FGTimeStamp current;
if ( ! inited ) {
inited = 1;
last.stamp();
interval = 0;
} else {
current.stamp();
interval = current - last;
last = current;
}
for ( int i = 0; i < (int)global_io_list.size(); ++i ) {
// cout << " channel = " << i << endl;
p = global_io_list[i];
if ( p->is_enabled() ) {
p->dec_count_down( interval );
while ( p->get_count_down() < 0 ) {
1999-11-19 02:10:24 +00:00
p->process();
p->dec_count_down( -1000000.0 / p->get_hz() );
1999-11-19 02:10:24 +00:00
}
}
}
}