GM6000 Digital Heater Controller Branch: main
SDX-1330
AtomicRequest.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_AtomicRequest_h_
2#define Cpl_Itc_AtomicRequest_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
17#include "Cpl/Itc/SAP.h"
20
21///
22namespace Cpl {
23///
24namespace Itc {
25
26/** This concrete class define the 'Atomic' Message request that allows
27 a client to invoke multiple operation on a server/service as one
28 single atomic operation.
29
30 The server typically inherits this class and implements the 'ACCESS_API'.
31 The client is responsible for implementing the AtomicCallback interface.
32
33 TEMPLATE ARGS: ACCESS_API - API that the client uses to accomplish its
34 "Atomic Operation"
35 */
36template <class ACCESS_API>
37class AtomicRequest : public ACCESS_API
38{
39public:
40 /// SAP for this API
42
43
44public:
45 /// Payload for Message
46 class Payload
47 {
48 private:
49 /// Reference the client defined atomic operation
51
52 public:
53 /// Constructor
54 Payload( AtomicCallback<ACCESS_API>& clientToCallback ) noexcept:m_clientCb( clientToCallback ) {};
55
56 /// Returns the reference to the client atom
57 AtomicCallback<ACCESS_API>& getClient() noexcept { return m_clientCb; }
58 };
59
60 /// Message Type:
62
63
64public:
65 /// Request
66 virtual void request( ReqMsg& msg )
67 {
68 msg.getPayload().getClient().execute( *this );
69 msg.returnToSender();
70 }
71};
72
73
74
75///////////////////////////////////////////////////////////////////////////////
76/** This abstract class define response message types for a set of ITC services.
77 The response() method(s) are to be implemented by the 'client'
78
79 TEMPLATE ARGS: ACCESS_API - API that the client uses to accomplish its
80 "Atomic Operation"
81
82 NOTE: Typically the 'Atomic Request' is done synchronously. This interface
83 is provided for completeness for the edge case of doing the Atomic
84 Request asynchronously.
85 */
86template <class ACCESS_API>
88{
89public:
90 /// Response Message Type: Open
94
95
96public:
97 /// Response: OpenMsg
98 virtual void response( RspMsg& msg ) = 0;
99
100public:
101 /// Virtual destructor
102 virtual ~AtomicResponse() {}
103};
104
105
106}; // end namespaces
107};
108#endif // end header latch
This abstract class defines a call-back interface that clients use to issue multiple service requests...
Definition AtomicCallback.h:34
Payload for Message.
Definition AtomicRequest.h:47
AtomicCallback< ACCESS_API > & getClient() noexcept
Returns the reference to the client atom.
Definition AtomicRequest.h:57
Payload(AtomicCallback< ACCESS_API > &clientToCallback) noexcept
Constructor.
Definition AtomicRequest.h:54
This concrete class define the 'Atomic' Message request that allows a client to invoke multiple opera...
Definition AtomicRequest.h:38
Cpl::Itc::SAP< Cpl::Itc::AtomicRequest< ACCESS_API > > SAP
SAP for this API.
Definition AtomicRequest.h:41
virtual void request(ReqMsg &msg)
Request.
Definition AtomicRequest.h:66
RequestMessage< AtomicRequest, Payload > ReqMsg
Message Type:
Definition AtomicRequest.h:61
This abstract class define response message types for a set of ITC services.
Definition AtomicRequest.h:88
virtual ~AtomicResponse()
Virtual destructor.
Definition AtomicRequest.h:102
ResponseMessage< AtomicResponse< ACCESS_API >, AtomicRequest< ACCESS_API >, typename AtomicRequest< ACCESS_API >::Payload > RspMsg
Response Message Type: Open.
Definition AtomicRequest.h:93
virtual void response(RspMsg &msg)=0
Response: OpenMsg.
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
PAYLOAD & getPayload()
Returns the payload associated with this request.
Definition RequestMessage.h:94
This template class represents a client response message, which is posted to the client's mailbox aft...
Definition ResponseMessage.h:40
This concrete template class represents the interface to a ITC Service Access Point (SAP).
Definition SAP.h:30
void returnToSender() noexcept
This operation is invoked by the server when it has completed the operation implemented as a part of ...
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20