1999-11-19 02:10:24 +00:00
|
|
|
// protocol.hxx -- High level protocal class
|
|
|
|
//
|
|
|
|
// 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$
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _PROTOCOL_HXX
|
|
|
|
#define _PROTOCOL_HXX
|
|
|
|
|
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/compiler.h>
|
1999-11-19 02:10:24 +00:00
|
|
|
|
|
|
|
#include STL_STRING
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
FG_USING_STD(string);
|
|
|
|
FG_USING_STD(vector);
|
|
|
|
|
|
|
|
|
|
|
|
#define FG_MAX_MSG_SIZE 16384
|
|
|
|
|
|
|
|
// forward declaration
|
2000-07-11 20:40:12 +00:00
|
|
|
class SGIOChannel;
|
1999-11-19 02:10:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
class FGProtocol {
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
double hz;
|
|
|
|
int count_down;
|
|
|
|
|
2000-07-11 20:40:12 +00:00
|
|
|
SGProtocolDir dir;
|
1999-11-19 02:10:24 +00:00
|
|
|
|
|
|
|
// string protocol_str;
|
|
|
|
|
|
|
|
// char buf[FG_MAX_MSG_SIZE];
|
|
|
|
// int length;
|
|
|
|
|
|
|
|
bool enabled;
|
|
|
|
|
2000-07-11 20:40:12 +00:00
|
|
|
SGIOChannel *io;
|
1999-11-19 02:10:24 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FGProtocol();
|
|
|
|
virtual ~FGProtocol();
|
|
|
|
|
|
|
|
virtual bool open();
|
|
|
|
virtual bool process();
|
|
|
|
virtual bool close();
|
|
|
|
|
2000-07-11 20:40:12 +00:00
|
|
|
inline SGProtocolDir get_direction() const { return dir; }
|
1999-11-19 02:10:24 +00:00
|
|
|
inline void set_direction( const string& d ) {
|
|
|
|
if ( d == "in" ) {
|
2000-07-11 20:40:12 +00:00
|
|
|
dir = SG_IO_IN;
|
1999-11-19 02:10:24 +00:00
|
|
|
} else if ( d == "out" ) {
|
2000-07-11 20:40:12 +00:00
|
|
|
dir = SG_IO_OUT;
|
1999-11-19 02:10:24 +00:00
|
|
|
} else if ( d == "bi" ) {
|
2000-07-11 20:40:12 +00:00
|
|
|
dir = SG_IO_BI;
|
1999-11-19 02:10:24 +00:00
|
|
|
} else {
|
2000-07-11 20:40:12 +00:00
|
|
|
dir = SG_IO_NONE;
|
1999-11-19 02:10:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline double get_hz() const { return hz; }
|
|
|
|
inline void set_hz( double t ) { hz = t; }
|
|
|
|
inline int get_count_down() const { return count_down; }
|
|
|
|
inline void set_count_down( int c ) { count_down = c; }
|
|
|
|
inline void dec_count_down( int c ) { count_down -= c; }
|
|
|
|
|
|
|
|
virtual bool gen_message();
|
|
|
|
virtual bool parse_message();
|
|
|
|
|
|
|
|
// inline string get_protocol() const { return protocol_str; }
|
|
|
|
// inline void set_protocol( const string& str ) { protocol_str = str; }
|
|
|
|
|
|
|
|
// inline char *get_buf() { return buf; }
|
|
|
|
// inline int get_length() const { return length; }
|
|
|
|
// inline void set_length( int l ) { length = l; }
|
|
|
|
|
|
|
|
inline bool is_enabled() const { return enabled; }
|
|
|
|
inline void set_enabled( const bool b ) { enabled = b; }
|
|
|
|
|
2000-07-11 20:40:12 +00:00
|
|
|
inline SGIOChannel *get_io_channel() const { return io; }
|
|
|
|
inline void set_io_channel( SGIOChannel *c ) { io = c; }
|
1999-11-19 02:10:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef vector < FGProtocol * > io_container;
|
|
|
|
typedef io_container::iterator io_iterator;
|
|
|
|
typedef io_container::const_iterator const_io_iterator;
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _PROTOCOL_HXX
|
|
|
|
|
|
|
|
|