GM6000 Digital Heater Controller Branch: main
SDX-1330
Output.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Output_h_
2#define Cpl_Io_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
15#include "Cpl/Text/String.h"
16#include "Cpl/Io/Close.h"
17#include "Cpl/Io/IsEos.h"
18#include <stdarg.h>
19
20
21///
22namespace Cpl {
23///
24namespace Io {
25
26/** This partially abstract class defines a interface for operating on an
27 output stream (example of a stream is 'stdout' or a socket connection).
28
29 Note: There is really only just one write() method (the one the returns
30 'bytesWritten'). All of the other write() are convenience methods
31 and as such a default implementation is provided for these methods.
32 */
33class Output : virtual public Close, virtual public IsEos
34{
35public:
36 /** Writes a single byte to the stream. Returns true if successful,
37 or false if End-of-Stream was encountered.
38 */
39 virtual bool write( char c );
40
41 /** Writes a string to the stream. The string's trailing '\0' is stripped
42 off and not outputted to the stream. Returns true if successful, or false
43 if End-of-Stream was encountered. The method does not return until all
44 characters in the string have been written to the Output stream.
45 */
46 virtual bool write( const char* string );
47
48 /** Writes a string to the stream. The string's trailing '\0' is stripped
49 off and not outputted to the stream. Returns true if successful, or false
50 if End-of-Stream was encountered. The method does not return until all
51 characters in the string have been written to the Output stream.
52 */
53 virtual bool write( const Cpl::Text::String& string );
54
55 /** Formatted write to the stream. The formatting syntax/semantics is the
56 same as printf(). The string's trailing '\0' is stripped off and not
57 outputted to the stream. The client is required to provide storage for
58 a temporary buffer used to format the outgoing data. The contents of
59 'formatBuffer' will match what was written to the stream. Returns true
60 if successful, or false if End-of-Stream was encountered. The method
61 does not return until the all of the characters in the 'formatBuffer'
62 (after the contents have been 'formated') is written to the Output
63 stream.
64 */
65 virtual bool write( Cpl::Text::String& formatBuffer, const char* format, ... );
66
67 /** Same as write( String& formatBuffer, const char* format,...), except that
68 it is called with a va_list instead of a variable number of arguments.
69 */
70 virtual bool vwrite( Cpl::Text::String& formatBuffer, const char* format, va_list ap );
71
72 /** Writes the content of the buffer to the stream. Returns true if
73 successful, or false if End-of-Stream as encountered. The method does
74 not return until 'numBytes' have been written to the Output stream.
75 */
76 virtual bool write( const void* buffer, int numBytes );
77
78 /** Writes the content of the buffer to the stream. At most 'maxBytes'
79 will be outputted. The actual number of bytes written is returned
80 via 'bytesWritten'. Returns true if successful, or false if End-of-Stream
81 was encountered.
82 */
83 virtual bool write( const void* buffer, int maxBytes, int& bytesWritten ) = 0;
84
85 /** Forces all buffered data (if any) to be written to the stream
86 media.
87 */
88 virtual void flush() = 0;
89
90
91public:
92 /// Lets the make the destructor virtual
93 virtual ~Output() {}
94
95};
96
97}; // end namespaces
98};
99#endif // end header latch
This abstract class defines a close operation that is intended to be used Input and Output streams/fi...
Definition Close.h:32
This abstract class defines a isEos() operation that is intended to be used Input and Output streams.
Definition IsEos.h:31
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
virtual bool write(const void *buffer, int maxBytes, int &bytesWritten)=0
Writes the content of the buffer to the stream.
virtual ~Output()
Lets the make the destructor virtual.
Definition Output.h:93
virtual bool write(char c)
Writes a single byte to the stream.
virtual bool write(const Cpl::Text::String &string)
Writes a string to the stream.
virtual void flush()=0
Forces all buffered data (if any) to be written to the stream media.
virtual bool write(Cpl::Text::String &formatBuffer, const char *format,...)
Formatted write to the stream.
virtual bool write(const void *buffer, int numBytes)
Writes the content of the buffer to the stream.
virtual bool write(const char *string)
Writes a string to the stream.
virtual bool vwrite(Cpl::Text::String &formatBuffer, const char *format, va_list ap)
Same as write( String& formatBuffer, const char* format,...), except that it is called with a va_list...
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