Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
ChannelOneToAny.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2//
3// ActiveParts (AP) and the corresponding Data Flow Framework (DFF) is invented and designed by Jakob Daescher.
4// ANY USE OF THIS CODE CONSTITUTES ACCEPTANCE OF THE TERMS OF THE COPYRIGHT NOTICE.
5// ===================================================================================================
6// COPYRIGHT NOTICE
7// ===================================================================================================
8// Copyright (C) 2005-2075, IMT Information Management Technology AG, 9470 Buchs, Switzerland
9// All rights reserved.
10// This code is proprietary software of IMT Information Management Technology AG (hereinafter: "IMT").
11// Proprietary software is computer software licensed under exclusive legal right of IMT.
12//
13// The licensee is given the irrevocable, perpetual, worldwide, non-exclusive right and license to use,
14// execute and reproduce the software in binary form within the licensed products.
15//
16// Redistribution and use in source forms, without modification, are permitted provided that the following conditions are met:
17// (1) Copying of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
18// (2) Copying of source code is only allowed for regulatory documentation and archiving purposes
19// (3) Redistributions in binary form must reproduce the above copyright notice,
20// this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
21//
22// IMT provide no reassurances that the source code provided does not infringe
23// any patent, copyright, or any other intellectual property rights of third parties.
24// IMT disclaim any liability to any recipient for claims brought against
25// recipient by any third party for infringement of that parties intellectual property rights.
26//
27// THIS SOFTWARE IS PROVIDED BY IMT AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
28// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29// IN NO EVENT SHALL IMT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
30// OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCURE-MENT OF SUBSTITUTE GOODS OR SERVICES;
31// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
32// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
33// IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34// ===================================================================================================
35
36#ifndef IMT_BASE_DFF_ACTIVEPARTS_CHANNELONETOANY_H
37#define IMT_BASE_DFF_ACTIVEPARTS_CHANNELONETOANY_H
38
39#include <array>
47
48namespace imt {
49namespace base {
50namespace dff {
51namespace activeparts {
52
57template<uint32_t NumberOfReceivers>
60
61public:
62
66 ChannelOneToAny() = default;
67
71 virtual ~ChannelOneToAny() = default;
72
76 void send(uint16_t const protocolIdentifier, ::imt::base::core::serialization::SerializableIfc const* const pEventData, size_t const eventDataSizeBytes) override {
77 for (uint_fast32_t i {0U}; i < m_numberOfRegisteredReceivers; i++) {
78 m_receiverDetails[i].m_pPortIn->receive(protocolIdentifier, pEventData, eventDataSizeBytes);
79 }
80 }
81
88 void connectPorts(PortOutput& portOut, ReceiverIfc const& portIn) {
89 if (m_numberOfRegisteredReceivers >= NumberOfReceivers) {
90 ASSERT_DEBUG1(false, "number of receivers exceeds template parameter");
91 // return before the end of function, since this is parameter check
92 return;
93 }
94
95 // set the callback implementation of send to this instance (only required once)
96 if (m_numberOfRegisteredReceivers == 0U) {
97 portOut.setChannel(*this);
98 }
99
100 connectPortIn(portIn);
101 }
102
103#ifdef _UNITTEST
111 if (index < NumberOfReceivers) {
112 handle = m_receiverDetails[index].m_pPortIn->getReceiveHandle();
113 }
114 return handle;
115 }
116#endif //_UNITTEST
117
118protected:
119 ChannelOneToAny(ChannelOneToAny const&) noexcept = delete;
120 ChannelOneToAny(ChannelOneToAny&&) noexcept = delete;
121 ChannelOneToAny& operator=(ChannelOneToAny const&) & noexcept = delete;
122 ChannelOneToAny& operator=(ChannelOneToAny&&) & noexcept = delete;
123
124private:
125
131 void connectPortIn(ReceiverIfc const& portIn) {
132 if (portIn.getReceiveHandle() == ::imt::base::dff::runtime::RuntimeCore::COREHANDLE_INVALID) {
133 ASSERT_DEBUG1(false, "invalid input port passed");
134 // return before the end of function, since this is parameter check
135 return;
136 }
137
138 // keep array sorted with descending priority: scan the array from end and shift values back until the correct position is found
139 uint32_t i {m_numberOfRegisteredReceivers};
140 ::imt::base::dff::runtime::RuntimePriority const currentPriority {portIn.getReceivePriority()};
141 while ((i >= 1U) && (currentPriority > m_receiverDetails[i - 1U].m_receiverPriority)) {
142 // note: low number is low priority, high number is high priority
143 m_receiverDetails[i] = m_receiverDetails[i - 1U];
144 i--;
145 }
146
147 // remember receiver handle (in worst case we now have an invalid receiver handle)
148 m_receiverDetails[i].m_pPortIn = &portIn;
149 m_receiverDetails[i].m_receiverPriority = currentPriority;
150 m_numberOfRegisteredReceivers++;
151 }
152
153 // internal structure for a single receiver
154 struct ReceiverDetails { // AXIVION Construct AutosarC++19_03-A9.6.1: type is not used for interfacing with hardware
155 ReceiverIfc const* m_pPortIn {nullptr};
157 }; // AXIVION Construct AutosarC++19_03-A2.7.3 / AutosarC++19_03-M11.0.1: no Doxygen required for internals / all members public is ok
158
159 // tracking of registered receivers
160 uint32_t m_numberOfRegisteredReceivers {0U};
161 std::array<ReceiverDetails, NumberOfReceivers> m_receiverDetails {};
162};
163} // namespace activeparts
164} // namespace dff
165} // namespace base
166} // namespace imt
167
168#endif // IMT_BASE_DFF_ACTIVEPARTS_CHANNELONETOANY_H
void ASSERT_DEBUG1(bool const condition, char_t const *const pMessage) noexcept
"Assert for debugging only" (ASSERT_DEBUG).
Definition Diagnostics.h:77
Base class for a not movable class that disables copy, assignment and move of instances.
Definition Nonmovable.h:51
Serialization is the process of translating data structures into a binary representation.
Interface of a channel to transmit data to a receiver.
Definition ChannelIfc.h:54
Send the message on a One-to-Any channel (multiple receivers).
ChannelOneToAny(ChannelOneToAny const &) noexcept=delete
ChannelOneToAny(ChannelOneToAny &&) noexcept=delete
ChannelOneToAny()=default
Creates a channel which is not connected.
virtual ~ChannelOneToAny()=default
Destructor.
void send(uint16_t const protocolIdentifier, ::imt::base::core::serialization::SerializableIfc const *const pEventData, size_t const eventDataSizeBytes) override
void connectPorts(PortOutput &portOut, ReceiverIfc const &portIn)
Connect output port with input port via this channel.
Messages can be sent on the output port.
Definition PortOutput.h:54
virtual void setChannel(ChannelIfc &channel)
Set the channel to transport the message.
Interface for any receiver to be called on received serialized data.s.
Definition ReceiverIfc.h:53
static constexpr CoreHandle COREHANDLE_INVALID
Constant which represents an invalid CoreHandle.
Definition RuntimeCore.h:69
int16_t CoreHandle
A CoreHandle is used to identify an executable with a unique number (similar to a phone number).
Definition RuntimeCore.h:64
RuntimePriority
Runtime executable priorities (=software priorities) The priorities start at 1 with lowest priority,...
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int16 uint16_t
Definition stdint.h:63
unsigned __int32 uint32_t
Definition stdint.h:64
uint32_t uint_fast32_t
Definition stdint.h:84