GM6000 Digital Heater Controller Branch: main
SDX-1330
Input.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_Input_h_
2#define Cpl_Io_File_Input_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#include "Cpl/Io/Stdio/Input_.h"
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 a Cpl::Io::File::Input object.
29
30 NOTE: All the read operations return 'false' if an error occurred, this
31 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 */
35class Input : public InputApi
36{
37protected:
38 /// Provides core read functionality
40
41
42public:
43 /// Constructor -->Opens the file
44 Input( const char* fileName );
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 file was successfully open and/or
55 is still opened (i.e. close() has not been called). Note: it is okay
56 to call other methods in the class if the file is not open - i.e.
57 nothing 'bad' will happen and the method will return 'failed'
58 status (when appropriate).
59 */
60 bool isOpened();
61
62
63public:
64 /// See Cpl::Io::Input
65 bool read( char& c );
66
67 /// See Cpl::Io::Input
68 bool read( Cpl::Text::String& destString );
69
70 /// See Cpl::Io::Input
71 bool read( void* buffer, int numBytes, int& bytesRead );
72
73 /// See Cpl::Io::Input
74 bool available();
75
76 /// See Cpl::Io::IsEos (is equivalent to isEof())
77 bool isEos();
78
79 /// See Cpl::Io::Close
80 void close();
81
82
83public:
84 /// See Cpl::Io::File::ObjectApi (is equivalent to isEos())
85 bool isEof();
86
87 /// See Cpl::Io::File::ObjectApi
88 bool length( unsigned long& len);
89
90 /// See Cpl::Io::File::ObjectApi
91 bool currentPos( unsigned long& curPos );
92
93 /// See Cpl::Io::File::ObjectApi
94 bool setRelativePos( long deltaOffset );
95
96 /// See Cpl::Io::File::ObjectApi
97 bool setAbsolutePos( unsigned long newoffset );
98
99 /// See Cpl::Io::File::ObjectApi
100 bool setToEof();
101};
102
103}; // end namespaces
104};
105};
106#endif // end header latch
107
This abstract class defines the interface for a Random Access Input File.
Definition InputApi.h:35
This concrete class provides a platform independent 'standard' implementation of a Cpl::Io::File::Inp...
Definition Input.h:36
bool setToEof()
See Cpl::Io::File::ObjectApi.
bool read(char &c)
See Cpl::Io::Input.
bool setAbsolutePos(unsigned long newoffset)
See Cpl::Io::File::ObjectApi.
bool length(unsigned long &len)
See Cpl::Io::File::ObjectApi.
Input(const char *fileName)
Constructor -->Opens the file.
~Input()
Destructor -->Will insure the file gets closed.
bool currentPos(unsigned long &curPos)
See Cpl::Io::File::ObjectApi.
bool isEos()
See Cpl::Io::IsEos (is equivalent to isEof())
Cpl::Io::Stdio::Input_ m_stream
Provides core read functionality.
Definition Input.h:39
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Io::Input.
Input(Cpl::Io::Descriptor streamfd)
Constructor. 'streamfd' is a the file descriptor of a existing/opened file.
bool isOpened()
This method returns true if the file was successfully open and/or is still opened (i....
bool available()
See Cpl::Io::Input.
void close()
See Cpl::Io::Close.
bool isEof()
See Cpl::Io::File::ObjectApi (is equivalent to isEos())
bool read(Cpl::Text::String &destString)
See Cpl::Io::Input.
bool setRelativePos(long deltaOffset)
See Cpl::Io::File::ObjectApi.
This concrete class implements a Input stream using the underlying platform's native OS 'file interfa...
Definition Input_.h:46
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