]> git.mxchange.org Git - flightgear.git/blob - src/Network/protocol.hxx
Added static port system and a new altimeter model connected to it.
[flightgear.git] / src / Network / protocol.hxx
1 // protocol.hxx -- High level protocal class
2 //
3 // Written by Curtis Olson, started November 1999.
4 //
5 // Copyright (C) 1999  Curtis L. Olson - curt@flightgear.org
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., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #ifndef _PROTOCOL_HXX
25 #define _PROTOCOL_HXX
26
27
28 #include <simgear/compiler.h>
29 #include <simgear/io/iochannel.hxx>
30
31 #include STL_STRING
32 #include <vector>
33
34 SG_USING_STD(string);
35 SG_USING_STD(vector);
36
37
38 #define FG_MAX_MSG_SIZE 16384
39
40 class FGProtocol {
41
42 private:
43
44     double hz;
45     int count_down;
46
47     SGProtocolDir dir;
48
49     // string protocol_str;
50
51     // char buf[FG_MAX_MSG_SIZE];
52     // int length;
53
54     bool enabled;
55
56     SGIOChannel *io;
57
58 public:
59
60     FGProtocol();
61     virtual ~FGProtocol();
62
63     virtual bool open();
64     virtual bool process();
65     virtual bool close();
66
67     inline SGProtocolDir get_direction() const { return dir; }
68     void set_direction( const string& d );
69
70     inline double get_hz() const { return hz; }
71     inline void set_hz( double t ) { hz = t; }
72     inline int get_count_down() const { return count_down; }
73     inline void set_count_down( int c ) { count_down = c; }
74     inline void dec_count_down( int c ) { count_down -= c; }
75
76     virtual bool gen_message();
77     virtual bool parse_message();
78
79     // inline string get_protocol() const { return protocol_str; }
80     // inline void set_protocol( const string& str ) { protocol_str = str; }
81
82     // inline char *get_buf() { return buf; }
83     // inline int get_length() const { return length; }
84     // inline void set_length( int l ) { length = l; }
85
86     inline bool is_enabled() const { return enabled; }
87     inline void set_enabled( const bool b ) { enabled = b; }
88
89     inline SGIOChannel *get_io_channel() const { return io; }
90     inline void set_io_channel( SGIOChannel *c ) { io = c; }
91 };
92
93
94 typedef vector < FGProtocol * > io_container;
95 typedef io_container::iterator io_iterator;
96 typedef io_container::const_iterator const_io_iterator;
97
98 #include <stdexcept>
99 SG_USING_STD(invalid_argument);
100
101 //namespace flightgear { namespace network {
102 class FGProtocolConfigError : public invalid_argument
103 {
104 public:
105     FGProtocolConfigError( const string& what_string )
106         : invalid_argument(what_string) {}
107 };
108 //}} // end namespace flightgear::network
109
110
111 #endif // _PROTOCOL_HXX
112
113