GM6000 Digital Heater Controller Branch: main
SDX-1330
AtomicOutputApi.h
Go to the documentation of this file.
1#ifndef Cpl_Io_AtomicOutputApi_h_
2#define Cpl_Io_AtomicOutputApi_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
17
18///
19namespace Cpl {
20///
21namespace Io {
22
23
24/** This abstract template class defines a interface for an Atomic outputs to a
25 stream. The AtomicOutputApi interface is intended to be used in an multi
26 threaded environment and provides a mechanism for many clients to write to
27 a single output stream in manner where each client's output is atomic with
28 respect to other clients.
29
30 The interface provides two paradigms:
31
32 1) An atomic output of a single a 'chunk' of data, i.e. each write()
33 call on the Output is an atomic operation.
34 2) A Callback mechanism that allows outputting many 'chunks'
35 a single atomic operation.
36
37 The template arg - CONTEXT - is the class that implements the callback
38 when requestOutputs() is called.
39 */
40template <class CONTEXT>
41class AtomicOutputApi : public Output
42{
43public:
44 /** Definition of the call-back method that is used by the client/context
45 to atomically publish many output operations. The callback is required
46 to return the OR'd return codes from all of the operations called on
47 the Output stream.
48 */
49 typedef bool (CONTEXT::* OutputsFunction_T)(Output&);
50
51
52public:
53 /** This method is used to output a series of output operations to the
54 stream as a single atomic operation. A callback mechanism is used and
55 all output operations performed in the callback are atomic with respect
56 to the Output Stream. This method returns false if a error occur on the
57 Output Stream; else true is returned.
58
59 NOTE: The callback client should keep the amount of work/duration of
60 callback to a MINIMUM. All other clients attempting to publish
61 to the same Output stream will be BLOCKED until this method
62 returns.
63 */
64 virtual bool requestOutputs( CONTEXT& client, OutputsFunction_T clientsMethod ) = 0;
65};
66
67}; // end namespaces
68};
69#endif // end header latch
This abstract template class defines a interface for an Atomic outputs to a stream.
Definition AtomicOutputApi.h:42
virtual bool requestOutputs(CONTEXT &client, OutputsFunction_T clientsMethod)=0
This method is used to output a series of output operations to the stream as a single atomic operatio...
bool(CONTEXT::* OutputsFunction_T)(Output &)
Definition of the call-back method that is used by the client/context to atomically publish many outp...
Definition AtomicOutputApi.h:49
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20