Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
PortInputSplit.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_PORTINPUTSPLIT_H
37#define IMT_BASE_DFF_ACTIVEPARTS_PORTINPUTSPLIT_H
38
39#include <array>
46
47namespace imt {
48namespace base {
49namespace dff {
50namespace activeparts {
51
55template<uint32_t NumberOfPortsToSplit>
56class PortInputSplit final : public ReceiverIfc,
58
59public:
60
64 PortInputSplit() = default;
65
69 void receive(uint16_t const protocolIdentifier, ::imt::base::core::serialization::SerializableIfc const* const pEventData, size_t const eventDataSizeBytes) const final {
70 for (uint_fast32_t i {0U}; i < m_numberOfRegisteredReceivers; i++) {
71 m_receiverDetails[i].m_pPortIn->receive(protocolIdentifier, pEventData, eventDataSizeBytes);
72 }
73 }
74
79 if (m_numberOfRegisteredReceivers <= 0U) {
80 return ::imt::base::dff::runtime::RuntimeCore::COREHANDLE_INVALID;
81 }
82 return m_receiverDetails[0U].m_pPortIn->getReceiveHandle();
83 }
84
89 if (m_numberOfRegisteredReceivers <= 0U) {
90 return ::imt::base::dff::runtime::RuntimePriority::Prio_lowest;
91 }
92 return m_receiverDetails[0U].m_receiverPriority;
93 }
94
100 bool split(ReceiverIfc const& portIn) {
101 if (m_numberOfRegisteredReceivers >= NumberOfPortsToSplit) {
102 ASSERT_DEBUG1(false, "number of receivers exceeds template parameter (PortInputSplit::split)");
103 // return before the end of function, since this is parameter check
104 return false;
105 }
106
108 ASSERT_DEBUG1(false, "invalid handle passed (PortInputSplit::split)");
109 // return before the end of function, since this is parameter check
110 return false;
111 }
112
113 // keep array sorted with descending priority: scan the array from end and shift values back until the correct position is found
114 uint32_t i {m_numberOfRegisteredReceivers};
115 ::imt::base::dff::runtime::RuntimePriority const currentPriority {portIn.getReceivePriority()};
116 while ((i >= 1U) && (currentPriority > m_receiverDetails[i - 1U].m_receiverPriority)) {
117 // note: low number is low priority, high number is high priority
118 m_receiverDetails[i] = m_receiverDetails[i - 1U];
119 i--;
120 }
121
122 // remember receiver handle (in worst case we now have an invalid receiver handle)
123 m_receiverDetails[i].m_pPortIn = &portIn;
124 m_receiverDetails[i].m_receiverPriority = currentPriority;
125 m_numberOfRegisteredReceivers++;
126
127 return true;
128 }
129
130#ifdef _UNITTEST
136 ReceiverIfc const* getPortInput(uint32_t index) {
137 if (index < NumberOfPortsToSplit) {
138 return m_receiverDetails[index].m_pPortIn;
139 }
140 return nullptr;
141 }
142#endif //_UNITTEST
143
144private:
145
146 // internal structure for a receivers
147 struct ReceiverDetails { // AXIVION Construct AutosarC++19_03-A9.6.1: type is not used for interfacing with hardware
148 ReceiverIfc const* m_pPortIn {nullptr};
150 }; // AXIVION Construct AutosarC++19_03-A2.7.3 / AutosarC++19_03-M11.0.1: no Doxygen required for internals / all members public is ok
151
152 uint32_t m_numberOfRegisteredReceivers {0U};
153 std::array<ReceiverDetails, NumberOfPortsToSplit> m_receiverDetails {};
154};
155
156} // namespace activeparts
157} // namespace dff
158} // namespace base
159} // namespace imt
160
161#endif // IMT_BASE_DFF_ACTIVEPARTS_PORTINPUTSPLIT_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.
Splits a message to multiple input ports.
::imt::base::dff::runtime::RuntimePriority getReceivePriority() const final
::imt::base::dff::runtime::RuntimeCore::CoreHandle getReceiveHandle() const final
void receive(uint16_t const protocolIdentifier, ::imt::base::core::serialization::SerializableIfc const *const pEventData, size_t const eventDataSizeBytes) const final
bool split(ReceiverIfc const &portIn)
Splits the message up to an input port.
Interface for any receiver to be called on received serialized data.s.
Definition ReceiverIfc.h:53
virtual ::imt::base::dff::runtime::RuntimeCore::CoreHandle getReceiveHandle() const =0
Get the handle of this input.
virtual ::imt::base::dff::runtime::RuntimePriority getReceivePriority() const =0
Get the priority of this input.
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