Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RuntimePools.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_RUNTIME_RUNTIME_POOLS_H
37#define IMT_BASE_DFF_RUNTIME_RUNTIME_POOLS_H
38
44
45#ifdef RUNTIME_STATISTICS
48#endif // RUNTIME_STATISTICS
52
53namespace imt {
54namespace base {
55namespace dff {
56namespace runtime {
57
58// Runtime limited to max. 32 interrupts (32bit ARM system optimized scheduler & core)
59static_assert(::imt::base::dff::runtime::RuntimePriorityLimits::MAX <= 32U, "Runtime limited to max. 32 interrupts");
60// keep priority values within range
62
63// Maximum number of executables limited to int16_max
64static_assert(::imt::base::dff::runtime::EXECUTABLES_MAX > 0, "Number of executables out of range");
65static_assert(::imt::base::dff::runtime::EXECUTABLES_MAX <= INT16_MAX, "Number of executables out of range");
66
67// Ensure TIMEPOOL_SIZE is within range (limited to int16_max), because TimerHandle is an int16_t
68static_assert(::imt::base::dff::runtime::TIMEPOOL_SIZE > 0, "Timer pool size out of range");
69static_assert(::imt::base::dff::runtime::TIMEPOOL_SIZE <= INT16_MAX, "Timer pool size out of range");
70
71#ifdef USE_BUFFERPOOL
72// Maximum number of buffer items limited to int16_maxe
73static_assert(::imt::base::dff::runtime::BUFFERPOOL_SIZE > 0, "Buffer pool size out of range");
74static_assert(::imt::base::dff::runtime::BUFFERPOOL_SIZE <= INT16_MAX, "Buffer pool size out of range");
75#endif
76
83public:
84
89 static TimerPoolAllocator s_timerAllocator; // AXIVION Line AutosarC++19_03-M11.0.1: is public because RuntimePools is a static class
90
91#ifdef USE_BUFFERPOOL
95 using BufferPoolAllocator = core::util::PoolAllocator<BufferItem>;
96 static BufferPoolAllocator s_bufferAllocator; // AXIVION Line AutosarC++19_03-M11.0.1: is public because RuntimePools is a static class
97
101 using BufferPointerNode = core::util::ListNode<BufferItem*>;
102
106 using BufferPointerAllocator = core::util::PoolAllocator<BufferPointerNode>;
107 // AXIVION Next Line AutosarC++19_03-M11.0.1: Allowe definition, compatibility purposes
108 static BufferPointerAllocator s_bufferPointerAllocator;
109
113 using BufferPointerList = core::util::LinkedList<BufferPointerNode>; // AXIVION Line AutosarC++19_03-A14.7.1: false positive: all functions are disabled who require m_pPrev when using single-linked-node
114
118 using BufferPointerIterator = core::util::LinkedList<BufferPointerNode>::Iterator; // AXIVION Line AutosarC++19_03-A14.7.1: false positive: all functions are disabled who require m_pPrev when using iterator for single-linked-nodes
119
120#endif // USE_BUFFERPOOL
121
122#ifdef RUNTIME_STATISTICS
126 static RuntimeStatisticsExecutables* getRuntimeStatisticsExecutables();
130 static size_t getExecutionStatisticsSize();
131 static RuntimeStatisticsEvents s_eventStatistics;
132#endif // RUNTIME_STATISTICS
133
140 static ExecutableIfc* getExecutable(int16_t const index);
141
147 template<typename T>
148 static T* getExecutableInfo(int16_t const index) noexcept {
149 return static_cast<T*>(getExecutableInfo(index)); // AXIVION Line AutosarC++19_03-M5.2.8: desired construct
150 }
151
158 static void registerExecutable(int16_t const index, ExecutableIfc& executable);
159
166
167#ifdef _UNITTEST
171 static void cleanPools();
172#endif // _UNITTEST
173
174private:
175
176 static void* getExecutableInfo(int16_t const index);
177
178// AXIVION File Style AutosarC++19_03-A18.1.1: replacing of C-arrays currently not done due to risks for compatibility reasons
179#ifdef RUNTIME_STATISTICS
180 static RuntimeStatisticsExecutables s_executionStatistics[imt::base::dff::runtime::EXECUTABLES_MAX];
181#endif // RUNTIME_STATISTICS
182 static RuntimeTimer::TimeItem s_timerPool[imt::base::dff::runtime::TIMEPOOL_SIZE];
183#ifdef USE_BUFFERPOOL
184 static BufferItem s_bufferPool[imt::base::dff::runtime::BUFFERPOOL_SIZE];
185 static BufferPointerNode s_bufferPointerPool[imt::base::dff::runtime::BUFFERPOOL_SIZE];
186#endif
187 static ::imt::base::dff::runtime::ExecutableIfc* s_executablePool[imt::base::dff::runtime::EXECUTABLES_MAX];
188};
189
190} // namespace runtime
191} // namespace dff
192} // namespace base
193} // namespace imt
194
195#endif // IMT_BASE_DFF_RUNTIME_RUNTIME_POOLS_H
Base class for a static class that disables construction, copy, assignment and move of instances.
Definition StaticClass.h:48
fixed size pool allocator
Interface of an executable which is called by the runtime once an event has to be processed.
Runtime executable for binary user specific allocation.
static T * getExecutableInfo(int16_t const index) noexcept
Gets the executable information.
static int16_t getExecutionPoolSize()
Gets the number of allocated executables.
static TimerPoolAllocator s_timerAllocator
static void registerExecutable(int16_t const index, ExecutableIfc &executable)
Register executable in this pool.
static ExecutableIfc * getExecutable(int16_t const index)
Gets the executable at index.
static constexpr uint_fast8_t MAX
Highest priority.
Holds the data for the event usage statistics.
Holds the data for the executable execution statistics.
This is a application specific file which is used to configure Imt.Base.Core.Math.
__int16 int16_t
Definition stdint.h:59
#define INT16_MAX
Definition stdint.h:108
uint8_t uint_fast8_t
Definition stdint.h:82
Node used for LinkedList class.
Definition LinkedList.h:65