GM6000 Digital Heater Controller Branch: main
SDX-1330
Null.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Null_h_
2#define Cpl_Io_Null_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
18///
19namespace Cpl {
20///
21namespace Io {
22
23
24/** This concrete class implements a NULL InputOutput stream - that all of its
25 input operations return 'End-of-Stream' (i.e. return false) and all output
26 is dropped in the proverbial 'bit-bucket' and goes no where! Note: The
27 write() methods always return true (i.e. no error).
28 */
29class Null : public InputOutput
30{
31public:
32 /// Constructor
34
35 /// Destructor
37
38
39public:
40 /// Pull in overloaded methods from base class
42
43 /// See Cpl::Io::Input
44 bool read( void* buffer, int numBytes, int& bytesRead );
45
46 /// See Cpl::Io::Input
47 bool available();
48
49
50public:
51 /// Pull in overloaded methods from base class
53
54 /// See Cpl::Io::Output
55 bool write( const void* buffer, int maxBytes, int& bytesWritten );
56
57 /// See Cpl::Io::Output
58 void flush();
59
60 /// See Cpl::Io::IsEos
61 bool isEos();
62
63 /// See Cpl::Io::Close. Note: Once closed() has been called, all of the write() method will return false
64 void close();
65
66
67protected:
68 /// Track my opened/closed state
70
71};
72
73}; // end namespaces
74};
75#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
This concrete class implements a NULL InputOutput stream - that all of its input operations return 'E...
Definition Null.h:30
~Null()
Destructor.
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
Null()
Constructor.
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Io::Input.
bool available()
See Cpl::Io::Input.
void flush()
See Cpl::Io::Output.
bool m_opened
Track my opened/closed state.
Definition Null.h:69
bool isEos()
See Cpl::Io::IsEos.
void close()
See Cpl::Io::Close. Note: Once closed() has been called, all of the write() method will return false.
virtual bool write(char c)
Writes a single byte to the stream.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20