GM6000 Digital Heater Controller Branch: main
SDX-1330
AtomicOutput.h
Go to the documentation of this file.
1#ifndef Cpl_Io_AtomicOutput_h_
2#define Cpl_Io_AtomicOutput_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
16#include "Cpl/System/Mutex.h"
17
18
19///
20namespace Cpl {
21///
22namespace Io {
23
24
25/** This concrete template class implements the AtomicOutputApi using a mutex
26 to enforce the 'atomic-ness' of the operation, i.e. all output operations
27 occur synchronously in the caller's thread.
28
29 The template arg - CONTEXT - is the class that implements the callback
30 when requestOutputs() is called.
31 */
32template <class CONTEXT>
33class AtomicOutput : public AtomicOutputApi<CONTEXT>
34{
35protected:
36 /// Underlying output stream
38
39 /// Lock to provide the 'atomic' functionality
41
42
43public:
44 /** The application is responsible for supplying the actual Output stream.
45 In addition, the application must supply a 'lock'. This allows the
46 application to associate each Output stream with it own lock or the
47 application could chose to use a single lock for all Atomic
48 Output streams.
49 */
50 AtomicOutput( Output& stream, Cpl::System::Mutex& lock );
51
52
53public:
54 /// See AtomicOutputApi
55 bool requestOutputs( CONTEXT& client, typename AtomicOutputApi<CONTEXT>::OutputsFunction_T clientsMethod );
56
57
58public:
59 /// Pull in overloaded methods from base class
61
62 /// See Cpl::Io::Output
63 bool write( const void* buffer, int maxBytes, int& bytesWritten );
64
65 /// See Cpl::Io::Output
66 void flush();
67
68 /// See Cpl::Io::IsEos
69 bool isEos();
70
71 /// See Cpl::Io::Output
72 void close();
73
74};
75
76
77
78/////////////////////////////////////////////////////////////////////////////
79// INLINE IMPLEMENTAION
80/////////////////////////////////////////////////////////////////////////////
81template <class CONTEXT>
83 :m_stream( stream )
84 , m_lock( lock )
85{
86}
87
88/////////////////
89template <class CONTEXT>
91{
92 Cpl::System::Mutex::ScopeBlock criticalSection( m_lock );
93 bool io = (client.*clientsMethod)(m_stream);
94 return io;
95}
96
97template <class CONTEXT>
98bool AtomicOutput<CONTEXT>::write( const void* buffer, int maxBytes, int& bytesWritten )
99{
100 Cpl::System::Mutex::ScopeBlock criticalSection( m_lock );
101 bool io = m_stream.write( buffer, maxBytes, bytesWritten );
102 return io;
103}
104
105template <class CONTEXT>
107{
108 Cpl::System::Mutex::ScopeBlock criticalSection( m_lock );
109 m_stream.flush();
110}
111
112template <class CONTEXT>
114{
115 Cpl::System::Mutex::ScopeBlock criticalSection( m_lock );
116 return m_stream.isEos();
117}
118
119template <class CONTEXT>
121{
122 Cpl::System::Mutex::ScopeBlock criticalSection( m_lock );
123 m_stream.close();
124}
125
126}; // end namespaces
127};
128#endif // end header latch
This abstract template class defines a interface for an Atomic outputs to a stream.
Definition AtomicOutputApi.h:42
This concrete template class implements the AtomicOutputApi using a mutex to enforce the 'atomic-ness...
Definition AtomicOutput.h:34
AtomicOutput(Output &stream, Cpl::System::Mutex &lock)
The application is responsible for supplying the actual Output stream.
Definition AtomicOutput.h:82
bool isEos()
See Cpl::Io::IsEos.
Definition AtomicOutput.h:113
void flush()
See Cpl::Io::Output.
Definition AtomicOutput.h:106
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
Definition AtomicOutput.h:98
void close()
See Cpl::Io::Output.
Definition AtomicOutput.h:120
Output & m_stream
Underlying output stream.
Definition AtomicOutput.h:37
Cpl::System::Mutex & m_lock
Lock to provide the 'atomic' functionality.
Definition AtomicOutput.h:40
bool requestOutputs(CONTEXT &client, typename AtomicOutputApi< CONTEXT >::OutputsFunction_T clientsMethod)
See AtomicOutputApi.
Definition AtomicOutput.h:90
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
virtual bool write(char c)
Writes a single byte to the stream.
This concrete class provides a simple mechanism for providing mutex protection for a "scope block".
Definition Mutex.h:77
This mutex class defines the interface for a mutex that has "recursive" semantics.
Definition Mutex.h:33
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20