Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
BitUtil.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_CORE_UTIL_BITUTIL_H
37#define IMT_BASE_CORE_UTIL_BITUTIL_H
38
42
43// Mask template arguments are of type unsigned because of the IAR/R8C compiler. Otherwise this code would not compile!
44
45namespace imt {
46namespace base {
47namespace core {
48namespace util {
49
55
56public:
57
65 template<uint8_t Bit, typename T>
66 static bool isBitSet(T const data) noexcept {
67 static_assert(Bit < (sizeof(T) * CHAR_BIT), "Bit index out of range");
68 T const mask {static_cast<T>(0x01U) << Bit};
69 return (data & mask) != 0;
70 }
71
79 template<typename T>
80 static bool isBitSet(T const data, uint8_t const bit) noexcept {
81 T mask {0};
82 // Does Bit fit into the datatype T
83 if (bit < (sizeof(T) * CHAR_BIT)) {
84 mask = static_cast<T>(0x01U) << bit;
85 }
86 return (data & mask) != 0;
87 }
88
95 template<uint8_t Bit, typename T>
96 static void setBit(T& data) noexcept {
97 static_assert(Bit < (sizeof(T) * CHAR_BIT), "Bit index out of range");
98 data |= static_cast<T>(0x01U) << Bit;
99 }
100
107 template<typename T>
108 static void setBit(T& data, uint8_t const bit) noexcept {
109 ASSERT_DEBUG(bit < (sizeof(T) * CHAR_BIT));
110 data |= static_cast<T>(0x01U) << bit;
111 }
112
119 template<uint8_t Bit, typename T>
120 static void clearBit(T& data) noexcept {
121 static_assert(Bit < (sizeof(T) * CHAR_BIT), "Bit index out of range");
122 T const bitSelection {static_cast<T>(0x01U) << Bit};
123 data &= static_cast<T>(~bitSelection);
124 }
125
132 template<typename T>
133 static void clearBit(T& data, uint8_t const bit) noexcept {
134 ASSERT_DEBUG(bit < (sizeof(T) * CHAR_BIT));
135 T const bitSelection {static_cast<T>(0x01U << bit)};
136 data &= static_cast<T>(~bitSelection);
137 }
138
148 // AXIVION Next Line AutosarC++19_03-A3.9.1: Allowed usage, compatibility purposes
149 template<unsigned Mask, typename T>
150 static T filterBits(T const data) noexcept {
151 return static_cast<T>(data & Mask);
152 }
153
165 // AXIVION Next Line AutosarC++19_03-A3.9.1: Allowed usage, compatibility purposes
166 template<unsigned Mask, unsigned CheckValue, typename T>
167 static bool matchBits(T const data) noexcept {
168 // Value does not contain any bits which are not in the mask
169 static_assert((~Mask & CheckValue) == 0, "Value does not contain any bits which are not in the mask");
170 return filterBits<Mask, T>(data) == CheckValue;
171 }
172
182 // AXIVION Next Line AutosarC++19_03-A3.9.1: Allowed usage, compatibility purposes
183 template<unsigned Mask, typename T>
184 static void setBits(T& data, T const value) noexcept {
185 data |= Mask & value;
186 }
187
197 // AXIVION Next Line AutosarC++19_03-A3.9.1: Allowed usage, compatibility purposes
198 template<unsigned Mask, typename T>
199 static void clearBits(T& data, T const value) noexcept {
200 data &= ~(Mask & value);
201 }
202
211 // AXIVION Next Line AutosarC++19_03-A3.9.1: Allowed usage, compatibility purposes
212 template<unsigned Mask, typename T>
213 static void changeBits(T& data, T const value) noexcept {
214 clearBits<Mask, T>(data, ~value);
215 setBits<Mask, T>(data, value);
216 }
217
225 template<uint8_t Bit, typename T>
226 static void changeBit(T& data, bool const value) noexcept {
227 // Does Bit fit into the datatype T
228 static_assert(Bit < (sizeof(T) * CHAR_BIT), "Bit index out of range");
229 if (value) {
230 setBit<Bit, T>(data);
231 }
232 else {
233 clearBit<Bit, T>(data);
234 }
235 }
236
244 template<typename T>
245 static void changeBit(T& data, uint8_t const bit, bool const value) noexcept {
246 // Does Bit fit into the datatype T
247 ASSERT_DEBUG(bit < (sizeof(T) * CHAR_BIT));
248 if (value) {
249 setBit<T>(data, bit);
250 }
251 else {
252 clearBit<T>(data, bit);
253 }
254 }
255};
256
257} // namespace util
258} // namespace core
259} // namespace base
260} // namespace imt
261
262#endif // IMT_BASE_CORE_UTIL_BITUTIL_H
void ASSERT_DEBUG(bool const condition) noexcept
Definition Diagnostics.h:88
Base class for a static class that disables construction, copy, assignment and move of instances.
Definition StaticClass.h:48
Bit Utility class pure static class.
Definition BitUtil.h:54
static void changeBit(T &data, uint8_t const bit, bool const value) noexcept
Set or clear a single bit in a data value.
Definition BitUtil.h:245
static void clearBit(T &data, uint8_t const bit) noexcept
Clear one bit.
Definition BitUtil.h:133
static void setBits(T &data, T const value) noexcept
Set some bits.
Definition BitUtil.h:184
static void changeBits(T &data, T const value) noexcept
Change some bits.
Definition BitUtil.h:213
static void clearBits(T &data, T const value) noexcept
Clear some bits.
Definition BitUtil.h:199
static void setBit(T &data, uint8_t const bit) noexcept
Set one bit.
Definition BitUtil.h:108
static bool isBitSet(T const data) noexcept
Check if a single bit in a data value is set.
Definition BitUtil.h:66
static bool matchBits(T const data) noexcept
Check if a value is equal to another one, but only some bits have an influence on the result.
Definition BitUtil.h:167
static T filterBits(T const data) noexcept
Filter some bits out of a data value.
Definition BitUtil.h:150
static bool isBitSet(T const data, uint8_t const bit) noexcept
Check if a single bit in a data value is set.
Definition BitUtil.h:80
static void clearBit(T &data) noexcept
Clear one bit.
Definition BitUtil.h:120
static void changeBit(T &data, bool const value) noexcept
Set or clear a single bit in a data value.
Definition BitUtil.h:226
static void setBit(T &data) noexcept
Set one bit.
Definition BitUtil.h:96
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int8 uint8_t
Definition stdint.h:62