GM6000 Digital Heater Controller Branch: main
SDX-1330
TeeOutput.h
Go to the documentation of this file.
1#ifndef Cpl_Io_TeeOutput_h_
2#define Cpl_Io_TeeOutput_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/Output.h"
16#include "Cpl/Container/SList.h"
17
18
19///
20namespace Cpl {
21///
22namespace Io {
23
24
25
26/** This concrete class implements a Output stream that outputs
27 the data to MANY (or none) output streams. The write() methods will
28 return false when at least of the Output stream(s) had an error. There
29 are methods provided (firstFailed(), nextFailed()) which returns a list of
30 all currently failed Output streams. Once a stream has been marked as failed
31 it will not be added back to the list of "good/active" streams. The user
32 must explicitly delete the stream and then re-add it. NOTE: There is no
33 guaranty of order or 'atomicity' with respect to other streams when
34 writing to multiple streams.
35
36 NOTE: The implementation is NOT thread safe. The application must provide
37 its own locking/critical section logic if calling a TeeOutput instance
38 from multiple threads.
39 */
40class TeeOutput : public Output
41{
42private:
43 /// List of active writers
45
46 /// List of failed writers
48
49 /// my open/close state
50 bool m_opened;
51
52
53public:
54 /** Constructor. Starts off with NO output streams
55 */
57
58 /** Constructor. Starts off with ONE output stream
59 */
60 TeeOutput( Output& streamA );
61
62 /** Constructor. Starts off with TWO output streams
63 */
64 TeeOutput( Output& streamA, Output& streamB );
65
66
67public:
68 /** Adds a stream */
69 void add( Output& stream );
70
71 /** Removes a stream. Returns true if the stream was actually
72 removed (i.e. that it was in the list to start with). NOTE: If
73 the stream exists it will be deleted regardless if it is consider
74 good or failed.
75 */
76 bool remove( Output& stream );
77
78
79public:
80 /** Returns the first failed stream. If no failed streams exist 0 will
81 be returned.
82 */
84
85 /** Returns the next failed stream in the list. If there are no more
86 failed streams 0 will be returned.
87 */
88 Output* nextFailed( Output& currentFailedStream );
89
90 /** Removes the specified failed stream AND returns the next failed stream
91 in the list. If there are no more failed streams (or the specified stream
92 is not 'failed') 0 will be returned. This method allows the user to remove
93 the failed streams as he/she walks the failed list. NOTE: Do NOT call remove()
94 while walking the failed list, remove() can invalidate the link pointers of the
95 current failed stream object!!!
96 */
97 Output* removeAndGetNextFailed( Output& currentFailedStream );
98
99
100public:
101 /// Pull in overloaded methods from base class
103
104
105 /// See Cpl::Io::Output
106 bool write( const void* buffer, int maxBytes, int& bytesWritten );
107
108 /// See Cpl::Io::Output
109 void flush();
110
111 /// See Cpl::Io::IsEos
112 bool isEos();
113
114 /// See Cpl::Io::Output
115 void close();
116};
117
118}; // end namespaces
119};
120#endif // end header latch
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
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 implements a Output stream that outputs the data to MANY (or none) output streams...
Definition TeeOutput.h:41
Output * removeAndGetNextFailed(Output &currentFailedStream)
Removes the specified failed stream AND returns the next failed stream in the list.
TeeOutput(Output &streamA, Output &streamB)
Constructor.
bool remove(Output &stream)
Removes a stream.
void add(Output &stream)
Adds a stream.
void flush()
See Cpl::Io::Output.
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
TeeOutput(Output &streamA)
Constructor.
Output * firstFailed()
Returns the first failed stream.
void close()
See Cpl::Io::Output.
bool isEos()
See Cpl::Io::IsEos.
Output * nextFailed(Output &currentFailedStream)
Returns the next failed stream in the list.
TeeOutput()
Constructor.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20