]> git.mxchange.org Git - flightgear.git/blob - src/Network/protocol.cxx
One more pass at a reorg.
[flightgear.git] / src / Network / protocol.cxx
1 // protocol.cxx -- 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 #include <simgear/debug/logstream.hxx>
25
26 #include "iochannel.hxx"
27 #include "protocol.hxx"
28
29
30 FGProtocol::FGProtocol() :
31     hz(0.0),
32     count_down(0),
33     enabled(false)
34 {
35 }
36
37
38 FGProtocol::~FGProtocol() {
39 }
40
41
42 // standard I/O channel open routine
43 bool FGProtocol::open() {
44     if ( is_enabled() ) {
45         FG_LOG( FG_IO, FG_ALERT, "This shouldn't happen, but the channel " 
46                 << "is already in use, ignoring" );
47         return false;
48     }
49
50     FGIOChannel *io = get_io_channel();
51
52     if ( ! io->open( get_direction() ) ) {
53         FG_LOG( FG_IO, FG_ALERT, "Error opening channel communication layer." );
54         return false;
55     }
56
57     set_enabled( true );
58
59     return true;
60 }
61
62
63 // dummy process routine
64 bool FGProtocol::process() {
65     FG_LOG( FG_IO, FG_INFO, "dummy FGProtocol::process()" );
66     return false;
67 }
68
69
70 // dummy close routine
71 bool FGProtocol::close() {
72     FG_LOG( FG_IO, FG_INFO, "dummy FGProtocol::close()" );
73     return false;
74 }
75
76
77 // standard I/O channel close routine
78 bool FGProtocol::gen_message() {
79     FGIOChannel *io = get_io_channel();
80
81     set_enabled( false );
82
83     if ( ! io->close() ) {
84         return false;
85     }
86
87     return true;
88 }
89
90
91 // dummy close routine
92 bool FGProtocol::parse_message() {
93     FG_LOG( FG_IO, FG_INFO, "dummy FGProtocol::close()" );
94     return false;
95 }
96
97