GM6000 Digital Heater Controller Branch: main
SDX-1330
Null.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_Null_h_
2#define Cpl_Io_File_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
16
17
18///
19namespace Cpl {
20///
21namespace Io {
22///
23namespace File {
24
25
26/** This concrete class implements a NULL InputOutputApi File that all of its
27 input operations return 'End-of-File' (i.e. return false) and all output is
28 dropped in the proverbial bit-bucket and goes no where! Note: The write()
29 methods always return true (i.e. no error).
30 */
31class Null : public InputOutputApi
32{
33public:
34 /// Constructor
36
37 /// Destructor
39
40
41public:
42 /// Pull in overloaded methods from base class
44
45 /// See Cpl::Io::Input
46 bool read( void* buffer, int numBytes, int& bytesRead );
47
48 /// See Cpl::Io::Input
49 bool available();
50
51
52public:
53 /// Pull in overloaded methods from base class
55
56 /// See Cpl::Io::Output
57 bool write( const void* buffer, int maxBytes, int& bytesWritten );
58
59 /// See Cpl::Io::Output
60 void flush();
61
62 /// See Cpl::Io::IsEos (is equivalent to isEof())
63 bool isEos();
64
65 /// See Cpl::Io::Close. Note: Once closed() has been called, all of the write() and ObjecApi methods will return false
66 void close();
67
68
69public:
70 /// See Cpl::Io::File::ObjectApi
71 bool isEof();
72
73 /// See Cpl::Io::File::ObjectApi
74 bool length( unsigned long& len );
75
76 /// See Cpl::Io::File::ObjectApi
77 bool currentPos( unsigned long& curPos );
78
79 /// See Cpl::Io::File::ObjectApi
80 bool setRelativePos( long deltaOffset );
81
82 /// See Cpl::Io::File::ObjectApi
83 bool setAbsolutePos( unsigned long newoffset );
84
85 /// See Cpl::Io::File::ObjectApi
86 bool setToEof();
87
88
89protected:
90 /// Track my opened/closed state
92
93
94};
95
96}; // end namespaces
97};
98};
99#endif // end header latch
This abstract class defines the interface for a Random Access Input Output File.
Definition InputOutputApi.h:38
This concrete class implements a NULL InputOutputApi File that all of its input operations return 'En...
Definition Null.h:32
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
bool m_opened
Track my opened/closed state.
Definition Null.h:91
bool currentPos(unsigned long &curPos)
See Cpl::Io::File::ObjectApi.
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Io::Input.
bool setAbsolutePos(unsigned long newoffset)
See Cpl::Io::File::ObjectApi.
void close()
See Cpl::Io::Close. Note: Once closed() has been called, all of the write() and ObjecApi methods will...
void flush()
See Cpl::Io::Output.
bool isEof()
See Cpl::Io::File::ObjectApi.
bool setRelativePos(long deltaOffset)
See Cpl::Io::File::ObjectApi.
bool isEos()
See Cpl::Io::IsEos (is equivalent to isEof())
bool setToEof()
See Cpl::Io::File::ObjectApi.
bool available()
See Cpl::Io::Input.
Null()
Constructor.
~Null()
Destructor.
bool length(unsigned long &len)
See Cpl::Io::File::ObjectApi.
virtual bool read(char &c)
Reads a single byte from the stream.
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