Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RemotingSendService.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_REMOTINGSENDSERVICE_H
4#define IMT_BASE_LIB_REMOTING_REMOTINGSENDSERVICE_H
5
12
13namespace imt {
14namespace base {
15namespace lib {
16namespace remoting {
17
18// AXIVION Next Line AutosarC++19_03-A16.0.1: required construct
19#if defined(_MSC_VER) && (_MSC_VER <= 1929)
20// AXIVION Next Line AutosarC++19_03-A16.0.1 / AutosarC++19_03-A16.7.1: Allowed usage
21#pragma warning(push)
22// AXIVION Next Line AutosarC++19_03-A16.0.1 / AutosarC++19_03-A16.7.1: Allowed usage
23#pragma warning(disable : 4250)
24#endif // defined(_MSC_VER) && (_MSC_VER <= 1929)
25// AXIVION Previous Line AutosarC++19_03-A2.7.2: required construct, showing endif match
26
30// AXIVION Next Codeline AutosarC++19_03-M10.1.1: Allowed construct, virtual inheritance used intentionally
31// AXIVION Next Codeline AutosarC++19_03-M10.1.2: Allowed construct, virtual inheritance used intentionally
32// AXIVION Next Construct AutosarC++19_03-M3.4.1: No definition in primary file to separate concerns.
34
35public:
36
42 // AXIVION Next Codeline AutosarC++19_03-A18.1.1: use C-style array for compatibility
43 RemotingSendService(uint8_t pSendBuffer[], uint32_t const bufferSize);
44
49
53 bool send(int32_t const remoteObjectId) final;
54
59 void setDataSender(DataSenderIfc& dataSender);
60
66
70 bool isRemoteObjectAdded(RemoteObjectIfc const& remoteObject) const final;
71
75 bool isRemoteObjectAdded(int32_t const remoteObjectId) const final;
76
80 bool add(RemoteObjectIfc& remoteObject) final;
81
85 bool removeObject(RemoteObjectIfc& remoteObject) final;
86
87private:
88
98 virtual void onSetRemoteObjectId(::imt::base::core::serialization::Serializer& sendSerializer, int32_t const remoteObjectId) const;
99
100 ::imt::base::core::serialization::Serializer m_sendSerializer;
101 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
102 DataSenderIfc* m_pDataSender;
103};
104
105// AXIVION Next Line AutosarC++19_03-A16.0.1: required construct
106#if defined(_MSC_VER) && (_MSC_VER <= 1929)
107// AXIVION Next Line AutosarC++19_03-A16.0.1 / AutosarC++19_03-A16.7.1: Allowed usage
108#pragma warning(pop)
109#endif // defined(_MSC_VER) && (_MSC_VER <= 1929)
110// AXIVION Previous Line AutosarC++19_03-A2.7.2: required construct, showing endif match
111
112} // namespace remoting
113} // namespace lib
114} // namespace base
115} // namespace imt
116
117#endif // IMT_BASE_LIB_REMOTING_REMOTINGSENDSERVICE_H
Inteface for a sender that can be called to send byte data.
Classes that implement this interface provide a generic mechanism to exchange data with a remoting pe...
Service for remote objects to send data to another remote object.
bool send(int32_t const remoteObjectId) final
DataSenderIfc * getDataSender()
Gets the DataSender.
bool isRemoteObjectAdded(RemoteObjectIfc const &remoteObject) const final
void setDataSender(DataSenderIfc &dataSender)
Sets the DataSender.
RemotingSendService(uint8_t pSendBuffer[], uint32_t const bufferSize)
Constructor.
bool add(RemoteObjectIfc &remoteObject) final
bool removeObject(RemoteObjectIfc &remoteObject) final
Interface for the remoting sending service (allows remote objects to initiate the send by themselves)...
Provides the base Class for RemotingSendService and RemotingReceiveService, which implements the Remo...
This is a application specific file which is used to configure Imt.Base.Core.Math.
__int32 int32_t
Definition stdint.h:60
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62