GM6000 Digital Heater Controller Branch: main
SDX-1330
InputOutput_.h
Go to the documentation of this file.
1#ifndef Cpl_Io_StdIo_InputOutput_x_h_
2#define Cpl_Io_StdIo_InputOutput_x_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
16#include "Cpl/Io/InputOutput.h"
17#include "Cpl/Io/Stdio/Input_.h"
19
20
21// Forward declaration in other namespaces (needed for 'friends' declaration)
22namespace Cpl {
23namespace Io {
24namespace File {
25class InputOutput;
26};
27};
28};
29
30// Forward declaration in other namespaces (needed for 'friends' declaration)
31namespace Cpl {
32namespace Io {
33namespace Serial {
34class Port;
35};
36};
37};
38
39
40///
41namespace Cpl {
42///
43namespace Io {
44///
45namespace Stdio {
46
47/** This concrete class implements a Input-Output stream. The actual
48 implementation is dependent on the linked-in implementation (which
49 is platform/behavior specific).
50 */
52{
53protected:
54 /// Input Stream
56
57 /// Output Stream
59
60 /// Keep track if I have two or a single stream
62
63
64public:
65 /** Constructor. 'fd' is a the 'file/stream descriptor' of a existing/opened
66 stream.
67 */
68 InputOutput_( int fd );
69
70 /** Constructor. 'handle' is a the 'file/stream descriptor' of a existing/opened
71 stream.
72 */
73 InputOutput_( void* handle );
74
75 /** Constructor. 'streamfd' is a the 'file/stream descriptor' of a existing/opened
76 stream.
77 */
79
80
81public:
82 /** Constructor - Split personality IO stream - allows the underlying input
83 and output streams to reference different streams.
84 */
85 InputOutput_( int infd, int outfd );
86
87 /** Constructor - Split personality IO stream - allows the underlying input
88 and output streams to reference different streams.
89 */
90 InputOutput_( void* inhandle, void* outhandle );
91
92 /** Constructor - Split personality IO stream - allows the underlying input
93 and output streams to reference different streams.
94 */
96
97
98public:
99 /** Constructor. No underlying file descriptors - the stream must be activated before using
100 */
102
103
104public:
105 /// Destructor
107
108
109public:
110 /** Activates and/or resets the underlying 'fd' for the stream. If the
111 current 'fd' is not in the closed state - a fatal error is generated
112 */
113 void activate( int fd );
114
115 /** Activates and/or resets the underlying 'handle' for the stream. If the
116 current 'fd' is not in the closed state - a fatal error is generated
117 */
118 void activate( void* handle );
119
120 /** Activates and/or resets the underlying 'streamfd' for the stream. If the
121 current 'fd' is not in the closed state - a fatal error is generated
122 */
124
125public:
126 /** Activates and/or resets the underlying 'fd' for the stream. If the
127 current 'fd' is not in the closed state - a fatal error is generated
128 */
129 void activate( int infd, int outfd );
130
131 /** Activates and/or resets the underlying 'handle' for the stream. If the
132 current 'fd' is not in the closed state - a fatal error is generated
133 */
134 void activate( void* inhandle, void* outhandle );
135
136 /** Activates and/or resets the underlying 'streamfd' for the stream. If the
137 current 'fd' is not in the closed state - a fatal error is generated
138 */
139 void activate( Cpl::Io::Descriptor instreamfd, Cpl::Io::Descriptor outstreamfd );
140
141
142public:
143 /** This method returns true if the Input AND Output streams where
144 successfully open and/or is still opened (i.e. close() has not been
145 called). Note: it is okay to call other methods in the class if the file
146 is not open - i.e. nothing 'bad' will happen and the method will return
147 'failed' status (when appropriate).
148 */
149 bool isOpened();
150
151 /// Same isOpened() - but only report the Input stream's open/closed status
153
154 /// Same isOpened() - but only report the Output stream's open/closed status
156
157
158
159public:
160 /// See Cpl::Io::Input
161 bool read( char& c );
162
163 /// See Cpl::Io::Input
164 bool read( Cpl::Text::String& destString );
165
166 /// See Cpl::Io::Input
167 bool read( void* buffer, int numBytes, int& bytesRead );
168
169 /// See Cpl::Io::Input
170 bool available();
171
172
173public:
174 /// See Cpl::Io::Output
175 bool write( char c );
176
177 /// See Cpl::Io::Output
178 bool write( const char* string );
179
180 /// See Cpl::Io::Output
181 bool write( const Cpl::Text::String& string );
182
183 /// See Cpl::Io::Output
184 bool write( Cpl::Text::String& formatBuffer, const char* format, ... );
185
186 /// See Cpl::Io::Output
187 bool vwrite( Cpl::Text::String& formatBuffer, const char* format, va_list ap );
188
189 /// See Cpl::Io::Output
190 bool write( const void* buffer, int numBytes );
191
192 /// See Cpl::Io::Output
193 bool write( const void* buffer, int maxBytes, int& bytesWritten );
194
195 /// See Cpl::Io::Output
196 void flush();
197
198 /// See Cpl::Io::IsEos
199 bool isEos();
200
201 /// See Cpl::Io::Output
202 void close();
203
204
205public:
206 // Allow the "Standard" Stream & File IO Classes have access to me
207 friend class Cpl::Io::File::InputOutput;
208 friend class Cpl::Io::Serial::Port;
209};
210
211}; // end namespaces
212};
213};
214#endif // end header latch
This concrete class provides a platform independent 'standard' implementation of an InputOutputFileAp...
Definition InputOutput.h:36
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 stream using the underlying platform's native OS 'file interfa...
Definition Input_.h:46
This concrete class implements a Input-Output stream.
Definition InputOutput_.h:52
bool write(const char *string)
See Cpl::Io::Output.
void activate(int fd)
Activates and/or resets the underlying 'fd' for the stream.
bool available()
See Cpl::Io::Input.
void activate(void *handle)
Activates and/or resets the underlying 'handle' for the stream.
Input_ m_in
Input Stream.
Definition InputOutput_.h:55
InputOutput_(Cpl::Io::Descriptor instreamfd, Cpl::Io::Descriptor outstreamfd)
Constructor - Split personality IO stream - allows the underlying input and output streams to referen...
void close()
See Cpl::Io::Output.
InputOutput_(void *handle)
Constructor.
bool isEos()
See Cpl::Io::IsEos.
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
bool vwrite(Cpl::Text::String &formatBuffer, const char *format, va_list ap)
See Cpl::Io::Output.
bool read(Cpl::Text::String &destString)
See Cpl::Io::Input.
void flush()
See Cpl::Io::Output.
InputOutput_(int infd, int outfd)
Constructor - Split personality IO stream - allows the underlying input and output streams to referen...
bool write(const void *buffer, int numBytes)
See Cpl::Io::Output.
bool write(char c)
See Cpl::Io::Output.
bool isOpened()
This method returns true if the Input AND Output streams where successfully open and/or is still open...
bool read(char &c)
See Cpl::Io::Input.
bool write(const Cpl::Text::String &string)
See Cpl::Io::Output.
void activate(int infd, int outfd)
Activates and/or resets the underlying 'fd' for the stream.
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Io::Input.
InputOutput_(Cpl::Io::Descriptor streamfd)
Constructor.
void activate(void *inhandle, void *outhandle)
Activates and/or resets the underlying 'handle' for the stream.
bool isInputOpened()
Same isOpened() - but only report the Input stream's open/closed status.
InputOutput_(void *inhandle, void *outhandle)
Constructor - Split personality IO stream - allows the underlying input and output streams to referen...
Output_ m_out
Output Stream.
Definition InputOutput_.h:58
bool write(Cpl::Text::String &formatBuffer, const char *format,...)
See Cpl::Io::Output.
void activate(Cpl::Io::Descriptor instreamfd, Cpl::Io::Descriptor outstreamfd)
Activates and/or resets the underlying 'streamfd' for the stream.
bool isOutputOpened()
Same isOpened() - but only report the Output stream's open/closed status.
InputOutput_(void)
Constructor.
void activate(Cpl::Io::Descriptor streamfd)
Activates and/or resets the underlying 'streamfd' for the stream.
bool m_single
Keep track if I have two or a single stream.
Definition InputOutput_.h:61
~InputOutput_(void)
Destructor.
InputOutput_(int fd)
Constructor.
This concrete class implements a Output stream using the underlying platform's native OS 'file interf...
Definition Output_.h:44
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