GM6000 Digital Heater Controller
Branch: main
SDX-1330
Main Page
Namespaces
Components
Files
File List
File Members
Cpl
Io
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
15
#include "
Cpl/Io/LineWriterApi.h
"
16
#include "
Cpl/Io/Output.h
"
17
#include "
Cpl/Io/NewLine.h
"
18
19
20
21
///
22
namespace
Cpl
{
23
///
24
namespace
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
*/
38
class
LineWriter
:
public
LineWriterApi
39
{
40
protected
:
41
/// Data source
42
Output
&
m_stream
;
43
44
/// Newline
45
const
char
*
m_newline
;
46
47
48
public
:
49
/** Constructor.
50
*/
51
LineWriter
(
Output
& stream,
const
char
* newline=
NewLine::standard
() );
52
53
54
public
:
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
Output.h
LineWriterApi.h
NewLine.h
Cpl::Io::LineWriterApi
This abstract class defines a interface for a stream line writer.
Definition
LineWriterApi.h:31
Cpl::Io::LineWriter
This concrete class implements a Line Writer stream using a previously opened Output stream.
Definition
LineWriter.h:39
Cpl::Io::LineWriter::vprintln
bool vprintln(Cpl::Text::String &formatBuffer, const char *format, va_list ap)
See LineWriterApi.
Cpl::Io::LineWriter::println
bool println(const char *srcstring)
See LineWriterApi.
Cpl::Io::LineWriter::print
bool print(Cpl::Text::String &formatBuffer, const char *format,...)
See LineWriterApi.
Cpl::Io::LineWriter::print
bool print(const char *srcstring, int numbytes)
See LineWriterApi.
Cpl::Io::LineWriter::println
bool println(Cpl::Text::String &formatBuffer, const char *format,...)
See LineWriterApi.
Cpl::Io::LineWriter::close
void close()
See LineWriterApi.
Cpl::Io::LineWriter::LineWriter
LineWriter(Output &stream, const char *newline=NewLine::standard())
Constructor.
Cpl::Io::LineWriter::vprint
bool vprint(Cpl::Text::String &formatBuffer, const char *format, va_list ap)
See LineWriterApi.
Cpl::Io::LineWriter::print
bool print(const char *srcstring)
See LineWriterApi.
Cpl::Io::LineWriter::println
bool println()
See LineWriterApi.
Cpl::Io::LineWriter::flush
void flush()
See LineWriterApi.
Cpl::Io::LineWriter::m_stream
Output & m_stream
Data source.
Definition
LineWriter.h:42
Cpl::Io::LineWriter::m_newline
const char * m_newline
Newline.
Definition
LineWriter.h:45
Cpl::Io::LineWriter::println
bool println(const char *srcstring, int numbytes)
See LineWriterApi.
Cpl::Io::NewLine::standard
static const char * standard(void)
This method returns the Colony standardized newline character(s)
Definition
NewLine.h:49
Cpl::Io::Output
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition
Output.h:34
Cpl::Text::String
This abstract class defines the operations that can be before on a NULL terminated string.
Definition
String.h:40
Cpl
The 'Cpl' namespace is the root name space for the Colony.
Definition
Api16.h:20
Generated on Sat Jan 18 2025 22:23:55 for GM6000 Digital Heater Controller by
1.9.8