GM6000 Digital Heater Controller Branch: main
SDX-1330
SAP.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_SAP_h_
2#define Cpl_Itc_SAP_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/Itc/PostApi.h"
16
17
18///
19namespace Cpl {
20///
21namespace Itc {
22
23/** This concrete template class represents the interface to a ITC Service
24 Access Point (SAP). A SAP 'binds' a Request API with a mailbox interface.
25 In effect a Service is the 'fully-qualified' identifier for posting a message
26 to a specific Request API.
27 */
28template <class SERVER>
29class SAP : public PostApi
30{
31protected:
32 /// Reference to the instance that implements the request service
33 SERVER & m_api;
34
35 /// Reference to the associated post-message/mailbox interface
37
38public:
39 /** This constructor requires a reference to the
40 request API and its associated mailbox/post-message
41 API.
42 */
43 SAP( SERVER& api, PostApi& mbox );
44
45public:
46 /// Returns a reference to the associated Cpl::Itc::Request instance
47 SERVER & getServer() noexcept;
48
49
50public:
51 /// See PostApi
52 void post( Message& msg ) noexcept;
53
54 /// See PostApi
55 void postSync( Message& msg ) noexcept;
56};
57
58
59/////////////////////////////////////////////////////////////////////////////
60// IMPLEMENATION
61/////////////////////////////////////////////////////////////////////////////
62
63template <class SERVER>
64SAP<SERVER>::SAP( SERVER& api, PostApi& mbox )
65 :m_api( api ),
66 m_mbox( mbox )
67{
68}
69
70template <class SERVER>
71SERVER& SAP<SERVER>::getServer() noexcept
72{
73 return m_api;
74}
75
76template <class SERVER>
77void SAP<SERVER>::post( Message& msg ) noexcept
78{
79 m_mbox.post( msg );
80}
81
82template <class SERVER>
83void SAP<SERVER>::postSync( Message& msg ) noexcept
84{
85 m_mbox.postSync( msg );
86}
87
88}; // end namespaces
89};
90#endif // end header latch
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
virtual void post(Message &msg) noexcept=0
This operation is called by clients, which wish to send a message to the owner of this mailbox.
virtual void postSync(Message &msg) noexcept=0
This operation is called by clients which wish to send a message to the owner of this mailbox,...
This concrete template class represents the interface to a ITC Service Access Point (SAP).
Definition SAP.h:30
void post(Message &msg) noexcept
See PostApi
Definition SAP.h:77
SERVER & m_api
Reference to the instance that implements the request service.
Definition SAP.h:33
SERVER & getServer() noexcept
Returns a reference to the associated Cpl::Itc::Request instance.
Definition SAP.h:71
PostApi & m_mbox
Reference to the associated post-message/mailbox interface.
Definition SAP.h:36
void postSync(Message &msg) noexcept
See PostApi.
Definition SAP.h:83
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20