FlightGear next
protocol.cxx
Go to the documentation of this file.
1// protocol.cxx -- High level protocol class
2//
3// Written by Curtis Olson, started November 1999.
4//
5// Copyright (C) 1999 Curtis L. Olson - http://www.flightgear.org/~curt
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20//
21// $Id$
22
23
24#include <simgear/debug/logstream.hxx>
25#include <simgear/io/iochannel.hxx>
26
27#include "protocol.hxx"
28
29
31 hz(0.0),
32 count_down(0.0),
33 count(0),
34 dir(SG_IO_NONE),
35 enabled(false),
36 io(nullptr)
37{
38}
39
40
42 delete io;
43}
44
45void FGProtocol::set_name(const std::string& n)
46{
47 m_name = n;
48}
49
50// standard I/O channel open routine
52 if ( is_enabled() ) {
53 SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel "
54 << "is already in use, ignoring" );
55 return false;
56 }
57
58 SGIOChannel *io = get_io_channel();
59
60 if ( ! io->open( get_direction() ) ) {
61 SG_LOG( SG_IO, SG_ALERT, "Error opening channel communication layer." );
62 return false;
63 }
64
65 set_enabled( true );
66
67 return true;
68}
69
70
71// dummy process routine
73 SG_LOG( SG_IO, SG_INFO, "dummy FGProtocol::process()" );
74 return false;
75}
76
77
78// dummy close routine
80 SG_LOG( SG_IO, SG_INFO, "dummy FGProtocol::close()" );
81 return false;
82}
83
84// dummy reinit routine
86{
87 SG_LOG(SG_IO, SG_INFO, "dummy FGProtocol::reinit()");
88}
89
90// standard I/O channel close routine
92 SGIOChannel *io = get_io_channel();
93
94 set_enabled( false );
95
96 if ( ! io->close() ) {
97 return false;
98 }
99
100 return true;
101}
102
103
104// dummy close routine
106 SG_LOG( SG_IO, SG_INFO, "dummy FGProtocol::close()" );
107 return false;
108}
109
110
111void FGProtocol::set_direction( const std::string& d ) {
112 if ( d == "in" ) {
113 dir = SG_IO_IN;
114 } else if ( d == "out" || d == "broadcast") {
115 dir = SG_IO_OUT;
116 } else if ( d == "bi" ) {
117 dir = SG_IO_BI;
118 } else {
119 dir = SG_IO_NONE;
120 }
121}
virtual bool process()
Definition protocol.cxx:72
SGProtocolDir get_direction() const
Definition protocol.hxx:65
virtual ~FGProtocol()
Definition protocol.cxx:41
SGIOChannel * get_io_channel() const
Definition protocol.hxx:90
void set_name(const std::string &n)
Definition protocol.cxx:45
virtual void reinit()
Definition protocol.cxx:85
virtual bool open()
Definition protocol.cxx:51
virtual bool gen_message()
Definition protocol.cxx:91
virtual bool close()
Definition protocol.cxx:79
void set_enabled(const bool b)
Definition protocol.hxx:88
void set_direction(const std::string &d)
Definition protocol.cxx:111
virtual bool parse_message()
Definition protocol.cxx:105
bool is_enabled() const
Definition protocol.hxx:87