GM6000 Digital Heater Controller Branch: main
SDX-1330
Output.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_Output_h_
2#define Cpl_Io_File_Output_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
28/** This concrete class provides a platform independent 'standard'
29 implementation of a Cpl::Io::File::Output object.
30
31 NOTE: All the write operations return 'false' if an error occurred, this
32 INCLUDES the end-of-file condition (which is error when dealing
33 with streams). To differentiate between a true error and EOF, the
34 client must call isEof().
35 */
36class Output : public OutputApi
37{
38protected:
39 /// Provides the underlying write functionality
41
42
43public:
44 /// Constructor -->Opens the file
45 Output( const char* fileName, bool forceCreate=true, bool forceEmptyFile=false );
46
47 /// Constructor. 'streamfd' is a the file descriptor of a existing/opened file.
49
50 /// Destructor -->Will insure the file gets closed
52
53
54public:
55 /** This method returns true if the file was successfully open and/or
56 is still opened (i.e. close() has not been called). Note: it is okay
57 to call other methods in the class if the file is not open - i.e.
58 nothing 'bad' will happen and the method will return 'failed'
59 status (when appropriate).
60 */
61 bool isOpened();
62
63
64public:
65 /// See Cpl::Io::Output
66 bool write( char c );
67
68 /// See Cpl::Io::Output
69 bool write( const char* string );
70
71 /// See Cpl::Io::Output
72 bool write( const Cpl::Text::String& string );
73
74 /// See Cpl::Io::Output
75 bool write( Cpl::Text::String& formatBuffer, const char* format, ... );
76
77 /// See Cpl::Io::Output
78 bool vwrite( Cpl::Text::String& formatBuffer, const char* format, va_list ap );
79
80 /// See Cpl::Io::Output
81 bool write( const void* buffer, int maxBytes );
82
83 /// See Cpl::Io::Output
84 bool write( const void* buffer, int maxBytes, int& bytesWritten );
85
86 /// See Cpl::Io::Output
87 void flush();
88
89 /// See Cpl::Io::IsEos (is equivalent to isEof())
90 bool isEos();
91
92 /// See Cpl::Io::Close
93 void close();
94
95
96public:
97 /// See Cpl::Io::File::ObjectApi
98 bool isEof();
99
100 /// See Cpl::Io::File::ObjectApi
101 bool length( unsigned long& len);
102
103 /// See Cpl::Io::File::Object
104 bool currentPos( unsigned long & curPosition );
105
106 /// See Cpl::Io::File::ObjectApi
107 bool setRelativePos( long deltaOffset );
108
109 /// See Cpl::Io::File::Object
110 bool setAbsolutePos( unsigned long newoffset );
111
112 /// See Cpl::Io::File::ObjectApi
113 bool setToEof();
114};
115
116}; // end namespaces
117};
118};
119#endif // end header latch
This abstract class defines the interface for a Random Access Input File.
Definition OutputApi.h:35
This concrete class provides a platform independent 'standard' implementation of a Cpl::Io::File::Out...
Definition Output.h:37
bool currentPos(unsigned long &curPosition)
See Cpl::Io::File::Object.
~Output()
Destructor -->Will insure the file gets closed.
bool setRelativePos(long deltaOffset)
See Cpl::Io::File::ObjectApi.
Output(const char *fileName, bool forceCreate=true, bool forceEmptyFile=false)
Constructor -->Opens the file.
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
bool isEos()
See Cpl::Io::IsEos (is equivalent to isEof())
bool write(const void *buffer, int maxBytes)
See Cpl::Io::Output.
bool setToEof()
See Cpl::Io::File::ObjectApi.
bool isEof()
See Cpl::Io::File::ObjectApi.
bool vwrite(Cpl::Text::String &formatBuffer, const char *format, va_list ap)
See Cpl::Io::Output.
bool write(const Cpl::Text::String &string)
See Cpl::Io::Output.
void flush()
See Cpl::Io::Output.
void close()
See Cpl::Io::Close.
bool setAbsolutePos(unsigned long newoffset)
See Cpl::Io::File::Object.
bool write(Cpl::Text::String &formatBuffer, const char *format,...)
See Cpl::Io::Output.
bool write(char c)
See Cpl::Io::Output.
Output(Cpl::Io::Descriptor streamfd)
Constructor. 'streamfd' is a the file descriptor of a existing/opened file.
bool length(unsigned long &len)
See Cpl::Io::File::ObjectApi.
Cpl::Io::Stdio::Output_ m_stream
Provides the underlying write functionality.
Definition Output.h:40
bool isOpened()
This method returns true if the file was successfully open and/or is still opened (i....
bool write(const char *string)
See Cpl::Io::Output.
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