GM6000 Digital Heater Controller Branch: main
SDX-1330
InputOutput.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_InputOutput_h_
2#define Cpl_Io_File_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
17
18
19///
20namespace Cpl {
21///
22namespace Io {
23///
24namespace File {
25
26
27/** This concrete class provides a platform independent 'standard'
28 implementation of an InputOutputFileApi object.
29
30 NOTE: All the read/write operations return 'false' if an error occurred,
31 this INCLUDES the end-of-file condition (which is error when dealing
32 with streams). To differentiate between a true error and EOF, the
33 client must call isEof().
34 */
36{
37protected:
38 /// Handles all of the reads/writes
40
41
42public:
43 /// Constructor -->Opens the file (note: readOnly takes precedence over the other flags)
44 InputOutput( const char* fileName, bool forceCreate=true, bool forceEmptyFile=false, bool readOnly=false );
45
46 /// Constructor. 'streamfd' is a the file descriptor of a existing/opened file.
48
49 /// Destructor -->Will insure the file gets closed
51
52
53public:
54 /** This method returns true if the Input AND Output streams where
55 successfully open and/or is still opened (i.e. close() has not been
56 called). Note: it is okay to call other methods in the class if the file
57 is not open - i.e. nothing 'bad' will happen and the method will return
58 'failed' status (when appropriate).
59 */
60 bool isOpened();
61
62 /// See Cpl::Io::File::InputOutputApi
64
65public:
66 /// See Cpl::Io::Input
67 bool read( char& c );
68
69 /// See Cpl::Io::Input
70 bool read( Cpl::Text::String& destString );
71
72 /// See Cpl::Io::Input
73 bool read( void* buffer, int numBytes, int& bytesRead );
74
75 /// See Cpl::Io::Input
76 bool available();
77
78
79public:
80 /// See Cpl::Io::Output
81 bool write( char c );
82
83 /// See Cpl::Io::Output
84 bool write( const char* string );
85
86 /// See Cpl::Io::Output
87 bool write( const Cpl::Text::String& string );
88
89 /// See Cpl::Io::Output
90 bool write( Cpl::Text::String& formatBuffer, const char* format, ... );
91
92 /// See Cpl::Io::Output
93 bool vwrite( Cpl::Text::String& formatBuffer, const char* format, va_list ap );
94
95 /// See Cpl::Io::Output
96 bool write( const void* buffer, int maxBytes );
97
98 /// See Cpl::Io::Output
99 bool write( const void* buffer, int maxBytes, int& bytesWritten );
100
101 /// See Cpl::Io::Output
102 void flush();
103
104 /// See Cpl::Io::IsEos (is equivalent to isEof())
105 bool isEos();
106
107 /// See Cpl::Io::Close
108 void close();
109
110
111public:
112 /// See Cpl::Io::File::ObjectApi
113 bool isEof();
114
115 /// See Cpl::Io::File::ObjectApi
116 bool length( unsigned long& len );
117
118 /// See Cpl::Io::File::ObjectApi
119 bool currentPos( unsigned long& curPosition );
120
121 /// See Cpl::Io::File::ObjectApi
122 bool setRelativePos( long deltaOffset );
123
124 /// See Cpl::Io::File::ObjectApi
125 bool setAbsolutePos( unsigned long newoffset );
126
127 /// See Cpl::Io::File::ObjectApi
128 bool setToEof();
129};
130
131}; // end namespaces
132};
133};
134#endif // end header latch
135
This abstract class defines the interface for a Random Access Input Output File.
Definition InputOutputApi.h:38
This concrete class provides a platform independent 'standard' implementation of an InputOutputFileAp...
Definition InputOutput.h:36
bool read(Cpl::Text::String &destString)
See Cpl::Io::Input.
bool setToEof()
See Cpl::Io::File::ObjectApi.
bool length(unsigned long &len)
See Cpl::Io::File::ObjectApi.
bool vwrite(Cpl::Text::String &formatBuffer, const char *format, va_list ap)
See Cpl::Io::Output.
Cpl::Io::Stdio::InputOutput_ m_stream
Handles all of the reads/writes.
Definition InputOutput.h:39
bool available()
See Cpl::Io::Input.
bool currentPos(unsigned long &curPosition)
See Cpl::Io::File::ObjectApi.
bool isEos()
See Cpl::Io::IsEos (is equivalent to isEof())
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Io::Input.
bool write(const Cpl::Text::String &string)
See Cpl::Io::Output.
bool read(char &c)
See Cpl::Io::Input.
InputOutput(Cpl::Io::Descriptor streamfd)
Constructor. 'streamfd' is a the file descriptor of a existing/opened file.
bool write(const char *string)
See Cpl::Io::Output.
void flush()
See Cpl::Io::Output.
bool setAbsolutePos(unsigned long newoffset)
See Cpl::Io::File::ObjectApi.
void close()
See Cpl::Io::Close.
InputOutput(const char *fileName, bool forceCreate=true, bool forceEmptyFile=false, bool readOnly=false)
Constructor -->Opens the file (note: readOnly takes precedence over the other flags)
bool isEof()
See Cpl::Io::File::ObjectApi.
bool isOpened()
This method returns true if the Input AND Output streams where successfully open and/or is still open...
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
Cpl::Io::InputOutput & getStream()
See Cpl::Io::File::InputOutputApi.
bool setRelativePos(long deltaOffset)
See Cpl::Io::File::ObjectApi.
bool write(char c)
See Cpl::Io::Output.
bool write(Cpl::Text::String &formatBuffer, const char *format,...)
See Cpl::Io::Output.
~InputOutput()
Destructor -->Will insure the file gets closed.
bool write(const void *buffer, int maxBytes)
See Cpl::Io::Output.
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 Input-Output stream.
Definition InputOutput_.h:52
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
This union defines a 'IO descriptor' in terms of a an integer and/or a void*.
Definition Descriptor.h:26