GM6000 Digital Heater Controller Branch: main
SDX-1330
LineWriterApi.h
Go to the documentation of this file.
1#ifndef Cpl_Io_LineWriterApi_h_
2#define Cpl_Io_LineWriterApi_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/Container/Item.h"
17#include <stdarg.h>
18
19
20
21///
22namespace Cpl {
23///
24namespace Io {
25
26/** This abstract class defines a interface for a stream line writer. A
27 line writer allows the client to write lines to a stream. The interface
28 also handles the output of the 'new line' character(s).
29 */
31{
32public:
33 /** Outputs the specified string to the stream. No newline character(s)
34 are written. Returns true if successful, or false if End-of-Stream was
35 encountered.
36 */
37 virtual bool print( const char* srcstring ) = 0;
38
39 /** Outputs the specified string to the stream and then appends the
40 newline character(s) to the stream. Returns true if successful, or
41 false if End-of-Stream was encountered.
42 */
43 virtual bool println( const char* srcstring ) = 0;
44
45 /** Outputs the first 'numbytes' bytes of the specified string to the
46 stream. No newline character(s) are written. Returns true if
47 successful, or false if End-of-Stream was encountered.
48 */
49 virtual bool print( const char* srcstring, int numbytes ) = 0;
50
51 /** Outputs the first 'numbytes' bytes of the specified string to the
52 stream and then appends the newline character(s) to the stream.
53 Returns true if successful, or false if End-of-Stream was
54 encountered.
55 */
56 virtual bool println( const char* srcstring, int numbytes ) = 0;
57
58
59 /** Outputs the newline character(s) to the stream.
60 */
61 virtual bool println() = 0;
62
63 /** Formatted output to the stream. The formatting syntax/semantics is the
64 same as printf(). The number of characters actually outputted to
65 stream is limited by the size of 'formatBuffer'. No newline character(s)
66 are written to the stream. Returns true if successful, or false if
67 End-of-Stream was encountered.
68 */
69 virtual bool print( Cpl::Text::String& formatBuffer, const char* format, ... ) = 0;
70
71 /** Same as above, except newline character(s) are appended to the end of
72 the formatted output.
73 */
74 virtual bool println( Cpl::Text::String& formatBuffer, const char* format, ... ) = 0;
75
76 /** Same as print( String& formatBuffer, const char* format,...), except that
77 it is called with a va_list instead of a variable number of arguments.
78 */
79 virtual bool vprint( Cpl::Text::String& formatBuffer, const char* format, va_list ap ) = 0;
80
81 /** Same as println( String& formatBuffer, const char* format,...), except that
82 it is called with a va_list instead of a variable number of arguments.
83 */
84 virtual bool vprintln( Cpl::Text::String& formatBuffer, const char* format, va_list ap ) = 0;
85
86 /** Forces all buffered data (if any) to be written to the stream
87 media.
88 */
89 virtual void flush() = 0;
90
91 /** Closes the writer and the underlying output stream.
92 */
93 virtual void close() = 0;
94
95
96public:
97 /// Lets the make the destructor virtual
98 virtual ~LineWriterApi() {}
99
100};
101
102
103}; // end namespaces
104};
105#endif // end header latch
This class is used by the Container classes to implement a various types of singly linked containers.
Definition Item.h:33
This abstract class defines a interface for a stream line writer.
Definition LineWriterApi.h:31
virtual bool println()=0
Outputs the newline character(s) to the stream.
virtual bool print(const char *srcstring)=0
Outputs the specified string to the stream.
virtual void flush()=0
Forces all buffered data (if any) to be written to the stream media.
virtual bool vprintln(Cpl::Text::String &formatBuffer, const char *format, va_list ap)=0
Same as println( String& formatBuffer, const char* format,...), except that it is called with a va_li...
virtual bool println(const char *srcstring, int numbytes)=0
Outputs the first 'numbytes' bytes of the specified string to the stream and then appends the newline...
virtual bool println(const char *srcstring)=0
Outputs the specified string to the stream and then appends the newline character(s) to the stream.
virtual bool print(Cpl::Text::String &formatBuffer, const char *format,...)=0
Formatted output to the stream.
virtual ~LineWriterApi()
Lets the make the destructor virtual.
Definition LineWriterApi.h:98
virtual void close()=0
Closes the writer and the underlying output stream.
virtual bool print(const char *srcstring, int numbytes)=0
Outputs the first 'numbytes' bytes of the specified string to the stream.
virtual bool println(Cpl::Text::String &formatBuffer, const char *format,...)=0
Same as above, except newline character(s) are appended to the end of the formatted output.
virtual bool vprint(Cpl::Text::String &formatBuffer, const char *format, va_list ap)=0
Same as print( 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