1 // protocol.hxx -- High level protocal class
3 // Written by Curtis Olson, started November 1999.
5 // Copyright (C) 1999 Curtis L. Olson - http://www.flightgear.org/~curt
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
28 #include <simgear/compiler.h>
29 #include <simgear/io/iochannel.hxx>
38 #define FG_MAX_MSG_SIZE 16384
50 // string protocol_str;
52 // char buf[FG_MAX_MSG_SIZE];
62 virtual ~FGProtocol();
65 virtual bool process();
68 inline SGProtocolDir get_direction() const { return dir; }
69 void set_direction( const string& d );
71 inline double get_hz() const { return hz; }
72 inline void set_hz( double t ) { hz = t; }
73 inline double get_count_down() const { return count_down; }
74 inline void set_count_down( double c ) { count_down = c; }
75 inline void inc_count_down( double amt ) { count_down += amt; }
76 inline void dec_count_down( double amt ) { count_down -= amt; }
77 inline void inc_count() { count++; }
78 inline long get_count() { return count; }
80 virtual bool gen_message();
81 virtual bool parse_message();
83 // inline string get_protocol() const { return protocol_str; }
84 // inline void set_protocol( const string& str ) { protocol_str = str; }
86 // inline char *get_buf() { return buf; }
87 // inline int get_length() const { return length; }
88 // inline void set_length( int l ) { length = l; }
90 inline bool is_enabled() const { return enabled; }
91 inline void set_enabled( const bool b ) { enabled = b; }
93 inline SGIOChannel *get_io_channel() const { return io; }
94 inline void set_io_channel( SGIOChannel *c ) { io = c; }
98 typedef vector < FGProtocol * > io_container;
99 typedef io_container::iterator io_iterator;
100 typedef io_container::const_iterator const_io_iterator;
103 SG_USING_STD(invalid_argument);
105 //namespace flightgear { namespace network {
106 class FGProtocolConfigError : public invalid_argument
109 FGProtocolConfigError( const string& what_string )
110 : invalid_argument(what_string) {}
112 //}} // end namespace flightgear::network
115 #endif // _PROTOCOL_HXX