Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RemoteObjectTemplate.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_REMOTEOBJECTTEMPLATE_H
4#define IMT_BASE_LIB_REMOTING_REMOTEOBJECTTEMPLATE_H
5
10
11namespace imt {
12namespace base {
13namespace lib {
14namespace remoting {
15
63template<class ProtocolType, uint16_t PROTOCOL_ID>
65
66public:
67
72
80 explicit RemoteObjectTemplate(RemotingSendServiceIfc* const pRemotingSendService,
81 RemotingServiceIfc* const pRemotingReceiveService = nullptr,
83 RemoteObjectAbs {static_cast<int32_t>(PROTOCOL_ID), pRemotingSendService, pRemotingReceiveService},
84 m_pPortOut {portOut},
85 m_pDataToSend {nullptr} {
86 }
87
92 if (m_pPortOut == nullptr) {
93 ASSERT_DEBUG1(false, "Output port not set, did you forget to pass the port in the constructor?");
94 return;
95 }
96
97 ProtocolType const message {buffer};
98 m_pPortOut->write(PROTOCOL_ID, &message, static_cast<size_t>(buffer.getBufferPos()));
99 }
100
105 if (m_pDataToSend != nullptr) {
106 m_pDataToSend->serialize(buffer);
107 }
108 else {
109 // did you forget to set the pointer of the data to send?
110 ASSERT_DEBUG(false);
111 }
112 }
113
118 void setDataToSend(ProtocolType const* const protocolData) {
119 // Because remoting is invoked via send() without parameters, the data to be sent needs to be set
120 m_pDataToSend = protocolData;
121 }
122
123private:
124
126 // Pointer to the protocol which contains the values which have to be sent
127 ProtocolType const* m_pDataToSend; // AXIVION Line AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
128};
129
130} // namespace remoting
131} // namespace lib
132} // namespace base
133} // namespace imt
134
135#endif // IMT_BASE_LIB_REMOTING_REMOTEOBJECTTEMPLATE_H
void ASSERT_DEBUG1(bool const condition, char_t const *const pMessage) noexcept
"Assert for debugging only" (ASSERT_DEBUG).
Definition Diagnostics.h:77
void ASSERT_DEBUG(bool const condition) noexcept
Definition Diagnostics.h:88
Deserializes various data types from the given byte buffer.
Interface to write a serializable object to another object.
virtual void write(uint16_t const protocolIdentifier, ::imt::base::core::serialization::SerializableIfc const *const pEventData, size_t const eventDataSizeBytes)=0
Write object.
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 directly to a ...
void deserialize(::imt::base::core::serialization::Deserializer &buffer) final
void serialize(::imt::base::core::serialization::Serializer &buffer) const final
void setDataToSend(ProtocolType const *const protocolData)
Set the reference to the data which is serialized.
RemoteObjectTemplate(RemotingSendServiceIfc *const pRemotingSendService, RemotingServiceIfc *const pRemotingReceiveService=nullptr, ::imt::base::core::serialization::SerializableSenderIfc *const portOut=nullptr)
Constructor.
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