1 // protocol.cxx -- High level protocal class
3 // Written by Curtis Olson, started November 1999.
5 // Copyright (C) 1999 Curtis L. Olson - curt@flightgear.org
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.
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.
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., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include <simgear/debug/logstream.hxx>
25 #include <simgear/io/iochannel.hxx>
27 #include "protocol.hxx"
30 FGProtocol::FGProtocol() :
39 FGProtocol::~FGProtocol() {
43 // standard I/O channel open routine
44 bool FGProtocol::open() {
46 SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel "
47 << "is already in use, ignoring" );
51 SGIOChannel *io = get_io_channel();
53 if ( ! io->open( get_direction() ) ) {
54 SG_LOG( SG_IO, SG_ALERT, "Error opening channel communication layer." );
64 // dummy process routine
65 bool FGProtocol::process() {
66 SG_LOG( SG_IO, SG_INFO, "dummy FGProtocol::process()" );
71 // dummy close routine
72 bool FGProtocol::close() {
73 SG_LOG( SG_IO, SG_INFO, "dummy FGProtocol::close()" );
78 // standard I/O channel close routine
79 bool FGProtocol::gen_message() {
80 SGIOChannel *io = get_io_channel();
84 if ( ! io->close() ) {
92 // dummy close routine
93 bool FGProtocol::parse_message() {
94 SG_LOG( SG_IO, SG_INFO, "dummy FGProtocol::close()" );
99 void FGProtocol::set_direction( const string& d ) {
102 } else if ( d == "out" ) {
104 } else if ( d == "bi" ) {