GM6000 Digital Heater Controller Branch: main
SDX-1330
InputOutput.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Socket_InputOutput_h_
2#define Cpl_Io_Socket_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 Socket {
24
25
26/** This concrete class provides a platform independent 'standard'
27 implementation of an InputOutput stream object where the stream
28 is Socket connection.
29 */
31{
32protected:
33 /// Socket handle
35
36 /// End-of-Stream status
37 bool m_eos;
38
39public:
40 /** Constructor. No 'fd' provided -->the instance MUST be activated prior
41 to use.
42 */
44
45
46 /** Constructor. 'fd' is a the 'socket descriptor' of a existing/opened
47 socket
48 */
50
51
52 /// Destructor
53 ~InputOutput( void );
54
55
56public:
57 /** Activates the stream, i.e. initializes the instance's underlying
58 fd/stream descriptor. If instance's 'fd' is not in the closed state when
59 this method is called a fatal error is generated.
60 */
62
63
64public:
65 /// Pull in overloaded methods from base class
67
68 /// See Cpl::Io::Input
69 bool read( void* buffer, int numBytes, int& bytesRead );
70
71 /// See Cpl::Io::Input
72 bool available();
73
74
75public:
76 /// Pull in overloaded methods from base class
78
79 /// See Cpl::Io::Output
80 bool write( const void* buffer, int maxBytes, int& bytesWritten );
81
82 /// See Cpl::Io::Output
83 void flush();
84
85 /// See Cpl::Io::IsEos
86 bool isEos();
87
88 /// See Cpl::Io::Output
89 void close();
90
91};
92
93}; // end namespaces
94};
95};
96#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 provides a platform independent 'standard' implementation of an InputOutput strea...
Definition InputOutput.h:31
void activate(Cpl::Io::Descriptor fd)
Activates the stream, i.e.
~InputOutput(void)
Destructor.
bool isEos()
See Cpl::Io::IsEos.
bool available()
See Cpl::Io::Input.
InputOutput(Cpl::Io::Descriptor fd)
Constructor.
Cpl::Io::Descriptor m_fd
Socket handle.
Definition InputOutput.h:34
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Io::Input.
void flush()
See Cpl::Io::Output.
bool m_eos
End-of-Stream status.
Definition InputOutput.h:37
void close()
See Cpl::Io::Output.
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
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