GM6000 Digital Heater Controller
Branch: main
SDX-1330
Main Page
Namespaces
Components
Files
File List
File Members
Cpl
Io
LineReaderApi.h
Go to the documentation of this file.
1
#ifndef Cpl_Io_LineReaderApi_h_
2
#define Cpl_Io_LineReaderApi_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
18
19
///
20
namespace
Cpl
{
21
///
22
namespace
Io {
23
24
25
/** This abstract class defines a interface for a stream line reader. A
26
line reader allows the client to read one line at time from the stream.
27
A line is consider a stream of ASCII character terminated by '\n' a.k.a
28
newline. The actual newline character(s) are handled by the interface
29
and the client is not aware of the actual newline implementation.
30
*/
31
class
LineReaderApi
:
public
Cpl::Container::Item
32
{
33
public
:
34
/** Reads a single line from the stream. If the line is greater than
35
the will fit in 'destString', the line content is truncated. The
36
next subsequent readln() reads the next line (NOT the truncated
37
characters!). The '\n' character is NOT copied into 'destString'
38
but is replaced with '\0'. Returns true if successful, or false
39
if End-of-Stream was encountered.
40
41
NOTE: This call will not return until a newline character is encounter!
42
*/
43
virtual
bool
readln
(
Cpl::Text::String
& destString ) = 0;
44
45
/** Returns true if there is data available to be read from the stream.
46
47
NOTE: The implementation of this method is VERY PLATFORM dependent! If
48
your code uses it - it may not be portable to all platforms.
49
If a platform does not/can not support this method it is
50
guaranteed to return 'true'
51
*/
52
virtual
bool
available
() = 0;
53
54
/** Closes the reader and the underlying input stream.
55
*/
56
virtual
void
close
() = 0;
57
58
59
public
:
60
/// Lets the make the destructor virtual
61
virtual
~LineReaderApi
() {}
62
63
};
64
65
};
// end namespaces
66
};
67
#endif
// end header latch
Item.h
String.h
Cpl::Container::Item
This class is used by the Container classes to implement a various types of singly linked containers.
Definition
Item.h:33
Cpl::Io::LineReaderApi
This abstract class defines a interface for a stream line reader.
Definition
LineReaderApi.h:32
Cpl::Io::LineReaderApi::close
virtual void close()=0
Closes the reader and the underlying input stream.
Cpl::Io::LineReaderApi::available
virtual bool available()=0
Returns true if there is data available to be read from the stream.
Cpl::Io::LineReaderApi::~LineReaderApi
virtual ~LineReaderApi()
Lets the make the destructor virtual.
Definition
LineReaderApi.h:61
Cpl::Io::LineReaderApi::readln
virtual bool readln(Cpl::Text::String &destString)=0
Reads a single line from the stream.
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