GM6000 Digital Heater Controller Branch: main
SDX-1330
InputOutput.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Serial_PhonyStdio_InputOutput_h_
2#define Cpl_Io_Serial_PhonyStdio_InputOutput_h_
3/*-----------------------------------------------------------------------------
4 * This file is part of the Colony.Core Project. The Colony.Core Project is an
5 * open source project with a BSD type of licensing agreement. See the license
6 * agreement (license.txt) in the top/ directory or on the Internet at
7 * http://integerfox.com/colony.core/license.txt
8 *
9 * Copyright (c) 2014-2022 John T. Taylor
10 *
11 * Redistributions of the source code must retain the above copyright notice.
12 *----------------------------------------------------------------------------*/
13/** @file */
14
15#include "Cpl/Io/InputOutput.h"
16
17///
18namespace Cpl {
19///
20namespace Io {
21///
22namespace Serial {
23///
24namespace PhonyStdio {
25
26
27/** This concrete class implements the InputOutput stream interface
28 built on top the C Library's fread/fwrite functions with the 'stdin' and
29 'stdout' file handles.
30 */
32{
33public:
34 /// Constructor
36
37 /// Destructor
39
40
41public:
42 /// Pull in overloaded methods from base class
44
45 /** See Cpl::Io::Input. Note: This method only attempts to read at most
46 one byte from the 'stdin' file handle. This is the 'workaround' for
47 the fread() function blocking until the requested number of bytes are
48 read (instead of returning after reading the number of bytes available).
49 */
50 bool read( void* buffer, int numBytes, int& bytesRead );
51
52 /// See Cpl::Io::Input. Note: This method always returns true (i.e not supported)
53 bool available();
54
55public:
56 /// Pull in overloaded methods from base class
58
59 /// See Cpl::Io::Output
60 bool write( const void* buffer, int maxBytes, int& bytesWritten );
61
62 /// See Cpl::Io::Output
63 void flush();
64
65 /// See Cpl::Io::IsEos.
66 bool isEos();
67
68 /// See Cpl::Io::Output
69 void close();
70
71protected:
72 /// End-of-Stream state
73 bool m_eos;
74};
75
76} // end namespaces
77}
78}
79}
80#endif // end header latch
virtual bool read(char &c)
Reads a single byte from the stream.
This abstract class defines a interface for operating on an input-output stream (example of a stream ...
Definition InputOutput.h:30
virtual bool write(char c)
Writes a single byte to the stream.
This concrete class implements the InputOutput stream interface built on top the C Library's fread/fw...
Definition InputOutput.h:32
bool available()
See Cpl::Io::Input. Note: This method always returns true (i.e not supported)
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Io::Input.
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
void flush()
See Cpl::Io::Output.
bool m_eos
End-of-Stream state.
Definition InputOutput.h:73
void close()
See Cpl::Io::Output.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20