GM6000 Digital Heater Controller Branch: main
SDX-1330
RequestMessage.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_RequestMessage_h_
2#define Cpl_Itc_RequestMessage_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/Itc/SAP.h"
17
18
19
20///
21namespace Cpl {
22///
23namespace Itc {
24
25/** This template class represents a service request message to a particular server.
26 The SERVER argument of the template is the abstract interface of the server which
27 services this message. This is the interface that the message uses to invoke
28 the message operation. By definition, the SERVER must have a member function
29 named "request" that returns nothing (void) and has a signature whose argument
30 is a reference to the message defined by this template.
31 */
32template <class SERVER, class PAYLOAD>
34{
35private:
36 /// Reference to the server interface whose 'request' will be called
37 SERVER & m_srv;
38
39 /// Reference to the request payload
40 PAYLOAD& m_payload;
41
42public:
43 /// Constructor
44 RequestMessage( SERVER& srv, PAYLOAD& payload, ReturnHandler& returnHandler );
45
46 /// Constructor
47 RequestMessage( SAP<SERVER>& sapsrv, PAYLOAD& payload, ReturnHandler& returnHandler );
48
49 /// Destructor
50 virtual ~RequestMessage();
51
52public:
53 /// See Cpl::Itc::Message
54 void process() noexcept;
55
56public:
57 /// Returns the payload associated with this request
58 PAYLOAD & getPayload();
59};
60
61
62/////////////////////////////////////////////////////////////////////////////
63// IMPLEMENATION
64/////////////////////////////////////////////////////////////////////////////
65
66template <class SERVER, class PAYLOAD>
67RequestMessage<SERVER, PAYLOAD>::RequestMessage( SERVER& srv, PAYLOAD& payload, ReturnHandler& returnHandler )
68 :ServiceMessage( returnHandler ),
69 m_srv( srv ),
70 m_payload( payload )
71{
72}
73
74template <class SERVER, class PAYLOAD>
76 :ServiceMessage( returnHandler ),
77 m_srv( sapsrv.getServer() ),
78 m_payload( payload )
79{
80}
81
82template <class SERVER, class PAYLOAD>
84{
85}
86
87template <class SERVER, class PAYLOAD>
89{
90 m_srv.request( *this );
91}
92
93template <class SERVER, class PAYLOAD>
95{
96 return m_payload;
97}
98
99}; // end namespaces
100};
101#endif // end header latch
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
virtual ~RequestMessage()
Destructor.
Definition RequestMessage.h:83
PAYLOAD & getPayload()
Returns the payload associated with this request.
Definition RequestMessage.h:94
void process() noexcept
See Cpl::Itc::Message.
Definition RequestMessage.h:88
RequestMessage(SERVER &srv, PAYLOAD &payload, ReturnHandler &returnHandler)
Constructor.
Definition RequestMessage.h:67
This abstract class represents the action that is executed by a server thread in response to the serv...
Definition ReturnHandler.h:27
This concrete template class represents the interface to a ITC Service Access Point (SAP).
Definition SAP.h:30
This class represents a defined message, which is posted to a mailbox-server as a request.
Definition ServiceMessage.h:28
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20