GM6000 Digital Heater Controller Branch: main
SDX-1330
InputOutput.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Ram_InputOutput_h_
2#define Cpl_Io_Ram_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"
18#include "Cpl/System/Mutex.h"
19
20
21///
22namespace Cpl {
23///
24namespace Io {
25///
26namespace Ram {
27
28
29/** This concrete class implements an InputOutput stream using a Ring Buffer.
30
31 NOTES:
32 - Thread safe and read and write operations have blocking semantics.
33 - This is NOT shared memory across processes, i.e. assumes a SINGLE
34 address space.
35 - Implementation is not necessarily efficient - it is more focused on
36 clarity and robustness.
37 */
39{
40public:
41 /// Constructor. The application supplies the Memory
42 InputOutput( void* rawMemory, unsigned memorySizeInBytes );
43
44 /// Destructor
46
47public:
48 /** This function will clear/reset-to-empty the internal ring buffer IF
49 the instance is still opened.
50 */
51 virtual void reset();
52
53public:
54 /// Pull in overloaded methods from base class
56
57 /// See Cpl::Io::Input
58 bool read( void* buffer, int numBytes, int& bytesRead );
59
60 /// See Cpl::Io::Input
61 bool available();
62
63
64public:
65 /// Pull in overloaded methods from base class
67
68 /// See Cpl::Io::Output
69 bool write( const void* buffer, int maxBytes, int& bytesWritten );
70
71 /// See Cpl::Io::Output
72 void flush();
73
74 /// See Cpl::Io::IsEos
75 bool isEos();
76
77 /// See Cpl::Io::Close. Note: Once closed() has been called, all of the write() method will return false;
78 void close();
79
80
81protected:
82 /// Ring buffer
84
85 /// Mutex to provide thread safety
87
88 /// Semaphore to provide blocking semantics
90
91 /// Semaphore to provide blocking semantics
93
94 /// Track my Write waiters
96
97 /// Track my Read waiters
99
100 /// Track my opened/closed state
102
103};
104
105}; // end namespaces
106};
107};
108#endif // end header latch
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
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 implements an InputOutput stream using a Ring Buffer.
Definition InputOutput.h:39
virtual void reset()
This function will clear/reset-to-empty the internal ring buffer IF the instance is still opened.
unsigned m_readersWaiting
Track my Read waiters.
Definition InputOutput.h:98
bool isEos()
See Cpl::Io::IsEos.
void close()
See Cpl::Io::Close. Note: Once closed() has been called, all of the write() method will return false;...
void flush()
See Cpl::Io::Output.
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Io::Input.
InputOutput(void *rawMemory, unsigned memorySizeInBytes)
Constructor. The application supplies the Memory.
bool available()
See Cpl::Io::Input.
Cpl::System::Mutex m_lock
Mutex to provide thread safety.
Definition InputOutput.h:86
Cpl::System::Semaphore m_semaWriters
Semaphore to provide blocking semantics.
Definition InputOutput.h:89
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
unsigned m_writersWaiting
Track my Write waiters.
Definition InputOutput.h:95
bool m_opened
Track my opened/closed state.
Definition InputOutput.h:101
Cpl::Container::RingBuffer< uint8_t > m_ringBuffer
Ring buffer.
Definition InputOutput.h:83
Cpl::System::Semaphore m_semaReaders
Semaphore to provide blocking semantics.
Definition InputOutput.h:92
This mutex class defines the interface for a mutex that has "recursive" semantics.
Definition Mutex.h:33
This semaphore class defines the interface for a Counting Semaphore.
Definition Semaphore.h:37
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20