GM6000 Digital Heater Controller Branch: main
SDX-1330
ResponseMessage.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_ResponseMessage_h_
2#define Cpl_Itc_ResponseMessage_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
18
19
20///
21namespace Cpl {
22///
23namespace Itc {
24
25
26/** This template class represents a client response message, which is posted
27 to the client's mailbox after the corresponding server request message is
28 returned to the client via the server message returnToSender interface. The
29 purpose of this class is to provide a standard model for confirmed
30 asynchronous messages. The SERVER template argument is the type of the
31 server interface that is used by the corresponding server request message.
32 The CLIENT class type is the interface which is invoked by the response
33 message when the client thread invokes the process routine inherited from
34 the Message class.The CLIENT interface must contain a function named
35 "response", which returns nothing (void) and takes a single argument, which
36 is a reference to this template class type.
37 */
38template <class CLIENT, class SERVER, class PAYLOAD>
40{
41private:
42 /// Reference to the client interface whose "response" method will be called
43 CLIENT & m_client;
44
45 /// Return handler used to deliver the response
47
48 /// I contain the actual instantiated server request message!
50
51public:
52 /// Constructor
53 ResponseMessage( CLIENT& client, PostApi& clientsMbox, SERVER& server, PAYLOAD& payload );
54
55 /// Constructor
56 ResponseMessage( CLIENT& client, PostApi& clientsMbox, SAP<SERVER>& serverSap, PAYLOAD& payload );
57
58 /// Destructor
59 virtual ~ResponseMessage();
60
61
62public:
63 /// See Message
64 void process() noexcept;
65
66
67public:
68 /// Returns a reference to the contained server-request-message
70
71 /// Returns a reference the payload associated with this request/response
72 PAYLOAD& getPayload();
73};
74
75
76/////////////////////////////////////////////////////////////////////////////
77// IMPLEMENATION
78/////////////////////////////////////////////////////////////////////////////
79
80template <class CLIENT, class SERVER, class PAYLOAD>
81ResponseMessage<CLIENT, SERVER, PAYLOAD>::ResponseMessage( CLIENT& cli, PostApi& cmbox, SERVER& srv, PAYLOAD& payload )
82 :m_client( cli ),
83 m_rh( cmbox, *this ),
84 m_request( srv, payload, m_rh )
85{
86}
87
88template <class CLIENT, class SERVER, class PAYLOAD>
89ResponseMessage<CLIENT, SERVER, PAYLOAD>::ResponseMessage( CLIENT& cli, PostApi& cmbox, SAP<SERVER>& serverSap, PAYLOAD& payload )
90 :m_client( cli ),
91 m_rh( cmbox, *this ),
92 m_request( serverSap, payload, m_rh )
93{
94}
95
96template <class CLIENT, class SERVER, class PAYLOAD>
98{
99}
100
101template <class CLIENT, class SERVER, class PAYLOAD>
103{
104 m_client.response( *this );
105}
106
107template <class CLIENT, class SERVER, class PAYLOAD>
109{
110 return m_request;
111}
112
113template <class CLIENT, class SERVER, class PAYLOAD>
115{
116 return m_request.getPayload();
117}
118
119}; // end namespaces
120};
121#endif // end header latch
This class implements an asynchronous ReturnHandler.
Definition AsyncReturnHandler.h:33
This abstract class defines the operations for an ITC message.
Definition Message.h:25
This abstract class represents the interface used to send messages to a mailbox.
Definition PostApi.h:31
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
ResponseMessage(CLIENT &client, PostApi &clientsMbox, SERVER &server, PAYLOAD &payload)
Constructor.
Definition ResponseMessage.h:81
void process() noexcept
See Message.
Definition ResponseMessage.h:102
virtual ~ResponseMessage()
Destructor.
Definition ResponseMessage.h:97
PAYLOAD & getPayload()
Returns a reference the payload associated with this request/response.
Definition ResponseMessage.h:114
RequestMessage< SERVER, PAYLOAD > & getRequestMsg()
Returns a reference to the contained server-request-message.
Definition ResponseMessage.h:108
This concrete template class represents the interface to a ITC Service Access Point (SAP).
Definition SAP.h:30
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20