GM6000 Digital Heater Controller Branch: main
SDX-1330
LineWriter.h
Go to the documentation of this file.
1#ifndef Cpl_Io_LineWriter_h_
2#define Cpl_Io_LineWriter_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/Output.h"
17#include "Cpl/Io/NewLine.h"
18
19
20
21///
22namespace Cpl {
23///
24namespace Io {
25
26
27/** This concrete class implements a Line Writer stream using a previously
28 opened Output stream.
29
30 NOTE: The LineWriter class does NOT provide any multi-thread mechanisms
31 and/or protections. In addition, using an instance of the
32 AtomicOutputApi interface as the underlying Output stream will NOT
33 make output of the println() calls atomic! The intended way to
34 have an 'Atomic' LineWriter is to use the AtomicOutput callback
35 mechanism (i.e. requestOutputs()) and within the callback create
36 the desired LineWriter using the supplied Output stream.
37 */
39{
40protected:
41 /// Data source
43
44 /// Newline
45 const char* m_newline;
46
47
48public:
49 /** Constructor.
50 */
51 LineWriter( Output& stream, const char* newline=NewLine::standard() );
52
53
54public:
55 /// See LineWriterApi
56 bool print( const char* srcstring );
57
58 /// See LineWriterApi
59 bool println( const char* srcstring );
60
61 /// See LineWriterApi
62 bool println();
63
64 /// See LineWriterApi
65 bool print( const char* srcstring, int numbytes );
66
67 /// See LineWriterApi
68 bool println( const char* srcstring, int numbytes );
69
70 /// See LineWriterApi
71 bool print( Cpl::Text::String& formatBuffer, const char* format, ... );
72
73 /// See LineWriterApi
74 bool println( Cpl::Text::String& formatBuffer, const char* format, ... );
75
76 /// See LineWriterApi
77 bool vprint( Cpl::Text::String& formatBuffer, const char* format, va_list ap );
78
79 /// See LineWriterApi
80 bool vprintln( Cpl::Text::String& formatBuffer, const char* format, va_list ap );
81
82
83 /// See LineWriterApi
84 void flush();
85
86 /// See LineWriterApi
87 void close();
88};
89
90}; // end namespaces
91};
92#endif // end header latch
This abstract class defines a interface for a stream line writer.
Definition LineWriterApi.h:31
This concrete class implements a Line Writer stream using a previously opened Output stream.
Definition LineWriter.h:39
bool vprintln(Cpl::Text::String &formatBuffer, const char *format, va_list ap)
See LineWriterApi.
bool println(const char *srcstring)
See LineWriterApi.
bool print(Cpl::Text::String &formatBuffer, const char *format,...)
See LineWriterApi.
bool print(const char *srcstring, int numbytes)
See LineWriterApi.
bool println(Cpl::Text::String &formatBuffer, const char *format,...)
See LineWriterApi.
void close()
See LineWriterApi.
LineWriter(Output &stream, const char *newline=NewLine::standard())
Constructor.
bool vprint(Cpl::Text::String &formatBuffer, const char *format, va_list ap)
See LineWriterApi.
bool print(const char *srcstring)
See LineWriterApi.
bool println()
See LineWriterApi.
void flush()
See LineWriterApi.
Output & m_stream
Data source.
Definition LineWriter.h:42
const char * m_newline
Newline.
Definition LineWriter.h:45
bool println(const char *srcstring, int numbytes)
See LineWriterApi.
static const char * standard(void)
This method returns the Colony standardized newline character(s)
Definition NewLine.h:49
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
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