GM6000 Digital Heater Controller Branch: main
SDX-1330
Output_.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Stdio_Output_x_h_
2#define Cpl_Io_Stdio_Output_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/Output.h"
17#include "Cpl/Io/Descriptor.h"
18
19
20// Forward declaration in other namespaces (needed for 'friends' declaration)
21namespace Cpl {
22namespace Io {
23namespace File {
24class Output;
25class InputOutput;
26};
27};
28};
29
30
31///
32namespace Cpl {
33namespace Io {
34namespace Stdio {
35
36
37/** This concrete class implements a Output stream using the underlying
38 platform's native OS 'file interface' for the C library's stdin,
39 stdout, and stderr streams. This class is intended to be a helper
40 class and/or implementation inheritance parent class than an class
41 used directly by the Application.
42 */
44{
45protected:
46 /// Stream Handle
48
49 /// Cache end-of-stream status
51
52
53public:
54 /** Constructor. 'fd' is a the 'file/stream descriptor' of a existing/opened
55 stream.
56 */
57 Output_( int fd );
58
59 /** Constructor. 'handle' is a the 'file/stream descriptor' of a existing/opened
60 stream.
61 */
62 Output_( void* handle );
63
64 /** Constructor. 'streamfd' is a the 'file/stream descriptor' of a existing/opened
65 stream.
66 */
68
69 /** Constructor. No underlying file descriptor - the stream must be activated before using
70 */
71 Output_( void );
72
73
74public:
75 /// Destructor
76 ~Output_( void );
77
78
79public:
80 /** Activates and/or resets the underlying 'fd' for the stream. If the
81 current 'fd' is not in the closed state - a fatal error is generated
82 */
83 void activate( int fd );
84
85 /** Activates and/or resets the underlying 'handle' for the stream. If the
86 current 'fd' is not in the closed state - a fatal error is generated
87 */
88 void activate( void* handle );
89
90 /** Activates and/or resets the underlying 'streamfd' for the stream. If the
91 current 'fd' is not in the closed state - a fatal error is generated
92 */
93 void activate( Cpl::Io::Descriptor streamfd );
94
95
96public:
97 /** This method returns true if the file was successfully open and/or
98 is still opened (i.e. close() has not been called). Note: it is okay
99 to call other methods in the class if the file is not open - i.e.
100 nothing 'bad' will happen and the method will return 'failed'
101 status (when appropriate).
102 */
103 bool isOpened();
104
105
106public:
107 /// Pull in overloaded methods from base class
109
110 /// See Cpl::Io::Output
111 bool write( const void* buffer, int maxBytes, int& bytesWritten );
112
113 /// See Cpl::Io::Output
114 void flush();
115
116 /// See Cpl::Io::IsEos
117 bool isEos();
118
119 /// See Cpl::Io::Output
120 void close();
121
122
123
124public:
125 // Allow the "Standard" Stream & File IO Classes have access to me
126 friend class InputOutput_;
127 friend class Cpl::Io::File::Output;
128 friend class Cpl::Io::File::InputOutput;
129
130};
131
132}; // end namespaces
133};
134};
135#endif // end header latch
This concrete class provides a platform independent 'standard' implementation of an InputOutputFileAp...
Definition InputOutput.h:36
This concrete class provides a platform independent 'standard' implementation of a Cpl::Io::File::Out...
Definition Output.h:37
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
virtual bool write(char c)
Writes a single byte to the stream.
This concrete class implements a Input-Output stream.
Definition InputOutput_.h:52
This concrete class implements a Output stream using the underlying platform's native OS 'file interf...
Definition Output_.h:44
bool isOpened()
This method returns true if the file was successfully open and/or is still opened (i....
void activate(int fd)
Activates and/or resets the underlying 'fd' for the stream.
~Output_(void)
Destructor.
bool m_outEos
Cache end-of-stream status.
Definition Output_.h:50
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
void activate(Cpl::Io::Descriptor streamfd)
Activates and/or resets the underlying 'streamfd' for the stream.
Output_(void *handle)
Constructor.
bool isEos()
See Cpl::Io::IsEos.
Output_(Cpl::Io::Descriptor streamfd)
Constructor.
Output_(int fd)
Constructor.
void flush()
See Cpl::Io::Output.
Cpl::Io::Descriptor m_outFd
Stream Handle.
Definition Output_.h:47
void close()
See Cpl::Io::Output.
void activate(void *handle)
Activates and/or resets the underlying 'handle' for the stream.
Output_(void)
Constructor.
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