GM6000 Digital Heater Controller Branch: main
SDX-1330
InputOutput.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Tcp_InputOutput_h_
2#define Cpl_Io_Tcp_InputOutput_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/InputOutput.h"
16#include "Cpl/Io/Descriptor.h"
17
18///
19namespace Cpl {
20///
21namespace Io {
22///
23namespace Tcp {
24
25
26/** This concrete class defines a platform independent implementation of an
27 InputOutput stream used by the Listener and Connector interfaces
28
29 Note: Platform independent is this context is that application can
30 instantiate an instance of this class without any platform specific
31 `#include` statements. However, the actual implementation IS platform
32 specific.
33 */
35{
36protected:
37 /// Protocol Control Block
39
40 /// End-of-Stream status
41 bool m_eos;
42
43public:
44 /** Constructor. No 'fd' provided -->the instance MUST be activated prior
45 to use.
46 */
48
49
50 /** Constructor. 'fd' is a PCB of a existing/opened TCP connection
51 */
53
54
55 /// Destructor
56 ~InputOutput( void );
57
58
59public:
60 /** Activates the stream, i.e. initializes the instance's underlying
61 PCB. If the instance's 'fd' is not in the closed state when
62 this method is called a fatal error is generated.
63 */
65
66
67public:
68 /// Pull in overloaded methods from base class
70
71 /// See Cpl::Io::Input
72 bool read( void* buffer, int numBytes, int& bytesRead );
73
74 /// See Cpl::Io::Input
75 bool available();
76
77
78public:
79 /// Pull in overloaded methods from base class
81
82 /// See Cpl::Io::Output
83 bool write( const void* buffer, int maxBytes, int& bytesWritten );
84
85 /// See Cpl::Io::Output
86 void flush();
87
88 /// See Cpl::Io::IsEos
89 bool isEos();
90
91 /// See Cpl::Io::Output
92 void close();
93
94public:
95 /** USE THIS METHOD WITH CAUTION. This method returns the Stream's
96 internal 'file descriptor'
97 */
99};
100
101}; // end namespaces
102};
103};
104#endif // end header latch
virtual bool read(char &c)
Reads a single byte from the stream.
This abstract class defines a interface for operating on an input-output stream (example of a stream ...
Definition InputOutput.h:30
virtual bool write(char c)
Writes a single byte to the stream.
This concrete class defines a platform independent implementation of an InputOutput stream used by th...
Definition InputOutput.h:35
bool m_eos
End-of-Stream status.
Definition InputOutput.h:41
bool isEos()
See Cpl::Io::IsEos.
InputOutput(Cpl::Io::Descriptor fd)
Constructor.
Cpl::Io::Descriptor getDescriptor()
USE THIS METHOD WITH CAUTION.
Definition InputOutput.h:98
Cpl::Io::Descriptor m_fd
Protocol Control Block.
Definition InputOutput.h:38
bool available()
See Cpl::Io::Input.
void flush()
See Cpl::Io::Output.
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
~InputOutput(void)
Destructor.
void close()
See Cpl::Io::Output.
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Io::Input.
void activate(Cpl::Io::Descriptor fd)
Activates the stream, i.e.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
This union defines a 'IO descriptor' in terms of a an integer and/or a void*.
Definition Descriptor.h:26