GM6000 Digital Heater Controller Branch: main
SDX-1330
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///
20namespace Cpl {
21///
22namespace 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 */
32{
33public:
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
59public:
60 /// Lets the make the destructor virtual
61 virtual ~LineReaderApi() {}
62
63};
64
65}; // end namespaces
66};
67#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 reader.
Definition LineReaderApi.h:32
virtual void close()=0
Closes the reader and the underlying input stream.
virtual bool available()=0
Returns true if there is data available to be read from the stream.
virtual ~LineReaderApi()
Lets the make the destructor virtual.
Definition LineReaderApi.h:61
virtual bool readln(Cpl::Text::String &destString)=0
Reads a single line from the stream.
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