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