GM6000 Digital Heater Controller Branch: main
SDX-1330
StreamDecoder.h
Go to the documentation of this file.
1#ifndef Cpl_Text_Frame_StreamDecoder_h_
2#define Cpl_Text_Frame_StreamDecoder_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
17#include "Cpl/Io/Input.h"
18
19
20///
21namespace Cpl {
22///
23namespace Text {
24///
25namespace Frame {
26
27
28
29/** This partially concrete class defines an interface a Text "Decoder" that
30 has a Cpl::Io::Input stream as its input source. See
31 Cpl::Text::Frame::Decoder for details on what is a decoder.
32 */
33class StreamDecoder : public Decoder_
34{
35protected:
36 /** Constructor. The 'inputSource' can optionally be specified at
37 construction time or defer till later (the default is: later). However,
38 the "input source" MUST be specified BEFORF scan() is called or a
39 fatal error will be generated. See Cpl::Text::Frame::Decoder_ for
40 details about the other constructor arguments.
41
42 When the 'blocking' argument is set to false - decoder will not
43 block while waiting on input data. The default behavior is to BLOCK.
44
45 NOTE: A sub-class IS required to actual create an instance of a
46 StreamDecoder.
47 */
48 StreamDecoder( char rawInputBuffer[], size_t sizeOfRawInputBuffer, Cpl::Io::Input* inputSource=0, bool blocking = true );
49
50
51public:
52 /** This method allows the Application/consumer to change/Set the Input
53 Stream handle.
54 */
55 void setInput( Cpl::Io::Input& newInFd ) noexcept;
56
57
58protected:
59 /// See Cpl::Text::Frame::Decoder_
60 bool read( void* buffer, int numBytes, int& bytesRead );
61
62protected:
63 /// Input stream
65
66 /// Block semantics
68};
69
70
71
72
73}; // end namespaces
74};
75};
76#endif // end header latch
This partially abstract class defines a interface for operating on an input stream (example of a stre...
Definition Input.h:37
This private partially concrete class implements the basic/common logic for a frame decoder.
Definition Decoder_.h:33
This partially concrete class defines an interface a Text "Decoder" that has a Cpl::Io::Input stream ...
Definition StreamDecoder.h:34
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Text::Frame::Decoder_.
void setInput(Cpl::Io::Input &newInFd) noexcept
This method allows the Application/consumer to change/Set the Input Stream handle.
Cpl::Io::Input *volatile m_srcPtr
Input stream.
Definition StreamDecoder.h:64
bool m_blocking
Block semantics.
Definition StreamDecoder.h:67
StreamDecoder(char rawInputBuffer[], size_t sizeOfRawInputBuffer, Cpl::Io::Input *inputSource=0, bool blocking=true)
Constructor.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20