Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RemoteObjectCallbackTemplate.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_LIB_REMOTING_REMOTEOBJECTCALLBACKTEMPLATE_H
4#define IMT_BASE_LIB_REMOTING_REMOTEOBJECTCALLBACKTEMPLATE_H
5
6#include <functional>
9
10namespace imt {
11namespace base {
12namespace lib {
13namespace remoting {
14
21template<class ProtocolType, uint16_t PROTOCOL_ID>
23
24public:
25
31 RemoteObjectCallbackTemplate(RemotingSendServiceIfc* const pRemotingSendService, std::function<ProtocolType const&()> sendCallback) :
32 RemoteObjectCallbackTemplate {pRemotingSendService, sendCallback, nullptr, {}} {
33 }
34
40 RemoteObjectCallbackTemplate(RemotingServiceIfc* const pRemotingReceiveService, std::function<void(ProtocolType const&)> receiveCallback) :
41 RemoteObjectCallbackTemplate {nullptr, {}, pRemotingReceiveService, receiveCallback} {
42 }
43
51 RemoteObjectCallbackTemplate(RemotingSendServiceIfc* const pRemotingSendService, std::function<ProtocolType const&()> sendCallback,
52 RemotingServiceIfc* const pRemotingReceiveService, std::function<void(ProtocolType const&)> receiveCallback) :
53 RemoteObjectAbs {static_cast<int32_t>(PROTOCOL_ID), pRemotingSendService, pRemotingReceiveService},
54 m_sendCallback {std::move(sendCallback)},
55 m_receiveCallback {std::move(receiveCallback)} {
56 }
57
62 ProtocolType const message {buffer};
63 if (m_receiveCallback) {
64 m_receiveCallback(message);
65 }
66 }
67
72 if (m_sendCallback) {
73 ProtocolType const& messageToSend {m_sendCallback()};
74 messageToSend.serialize(buffer);
75 }
76 }
77
78private:
79
80 std::function<ProtocolType const&()> m_sendCallback;
81 std::function<void(ProtocolType const&)> m_receiveCallback;
82};
83
84} // namespace remoting
85} // namespace lib
86} // namespace base
87} // namespace imt
88
89#endif // IMT_BASE_LIB_REMOTING_REMOTEOBJECTCALLBACKTEMPLATE_H
Deserializes various data types from the given byte buffer.
Serializes various data types into the given byte buffer.
Definition Serializer.h:58
Provides an abstract base class for all remote object implementations.
Defines a remote object template to serialize and deserialize a protocol and send them to a callback ...
RemoteObjectCallbackTemplate(RemotingServiceIfc *const pRemotingReceiveService, std::function< void(ProtocolType const &)> receiveCallback)
Constructor for Rx only.
void deserialize(::imt::base::core::serialization::Deserializer &buffer) final
void serialize(::imt::base::core::serialization::Serializer &buffer) const final
RemoteObjectCallbackTemplate(RemotingSendServiceIfc *const pRemotingSendService, std::function< ProtocolType const &()> sendCallback)
Constructor for Tx only.
RemoteObjectCallbackTemplate(RemotingSendServiceIfc *const pRemotingSendService, std::function< ProtocolType const &()> sendCallback, RemotingServiceIfc *const pRemotingReceiveService, std::function< void(ProtocolType const &)> receiveCallback)
Constructor for bi-directional communication.
Interface for the remoting sending service (allows remote objects to initiate the send by themselves)...
Interface for the RemotingService.
This is a application specific file which is used to configure Imt.Base.Core.Math.
__int32 int32_t
Definition stdint.h:60