]> git.mxchange.org Git - simgear.git/blob - Serial/serial.hxx
02e17a9b77529165ec33cc168ef1b502a87698bd
[simgear.git] / Serial / serial.hxx
1 // serial.hxx -- Unix serial I/O support
2 //
3 // Written by Curtis Olson, started November 1998.
4 //
5 // Copyright (C) 1998  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 // (Log is kept at end of this file)
23
24
25 #ifndef _SERIAL_HXX
26 #define _SERIAL_HXX
27
28
29 #ifndef __cplusplus
30 # error This library requires C++
31 #endif
32
33 #ifdef HAVE_CONFIG_H
34 #  include <config.h>
35 #endif
36
37 #include "Include/compiler.h"
38 #include <string>
39 FG_USING_STD(string);
40
41 #if defined( WIN32 ) && !defined( __CYGWIN__) && !defined( __CYGWIN32__ )
42 #  include <windows.h>
43 #endif
44
45 // if someone know how to do this all with C++ streams let me know
46 // #include <stdio.h>
47
48
49 class fgSERIAL
50 {
51 #if defined( WIN32 ) && !defined( __CYGWIN__) && !defined( __CYGWIN32__ )
52     typedef HANDLE fd_type;
53 #else
54     typedef int fd_type;
55 #endif
56
57 private:
58
59     fd_type fd;
60     bool dev_open;
61
62 public:
63
64     fgSERIAL();
65     fgSERIAL(const string& device, int baud);
66
67     ~fgSERIAL();
68
69     bool open_port(const string& device);
70     bool close_port();
71     bool set_baud(int baud);
72     string read_port();
73     int write_port(const string& value);
74
75     inline bool is_enabled() { return dev_open; }
76 };
77
78
79 #endif // _SERIAL_HXX
80
81
82 // $Log$
83 // Revision 1.3  1999/02/02 20:13:24  curt
84 // MSVC++ portability changes by Bernie Bright:
85 //
86 // Lib/Serial/serial.[ch]xx: Initial Windows support - incomplete.
87 // Simulator/Astro/stars.cxx: typo? included <stdio> instead of <cstdio>
88 // Simulator/Cockpit/hud.cxx: Added Standard headers
89 // Simulator/Cockpit/panel.cxx: Redefinition of default parameter
90 // Simulator/Flight/flight.cxx: Replaced cout with FG_LOG.  Deleted <stdio.h>
91 // Simulator/Main/fg_init.cxx:
92 // Simulator/Main/GLUTmain.cxx:
93 // Simulator/Main/options.hxx: Shuffled <fg_serial.hxx> dependency
94 // Simulator/Objects/material.hxx:
95 // Simulator/Time/timestamp.hxx: VC++ friend kludge
96 // Simulator/Scenery/tile.[ch]xx: Fixed using std::X declarations
97 // Simulator/Main/views.hxx: Added a constant
98 //
99 // Revision 1.2  1998/11/30 17:15:30  curt
100 // Having the class destructor close the fd was a bad idea ... especially if you
101 // ever make a copy of the instance and then subsequently destroy either.
102 // close_port() is now a separate member function.
103 //
104 // Revision 1.1  1998/11/16 13:53:02  curt
105 // Initial revision.
106 //