2016-11-17 03:19:05 -04:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
simple bitmask class
|
|
|
|
*/
|
|
|
|
|
2017-05-05 00:13:14 -03:00
|
|
|
#pragma once
|
|
|
|
|
2018-11-02 18:43:08 -03:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2019-04-16 01:48:16 -03:00
|
|
|
#include <AP_InternalError/AP_InternalError.h>
|
|
|
|
|
2019-04-11 09:12:26 -03:00
|
|
|
template<uint16_t num_bits>
|
2016-11-17 03:19:05 -04:00
|
|
|
class Bitmask {
|
|
|
|
public:
|
2019-04-11 09:12:26 -03:00
|
|
|
Bitmask() :
|
2017-08-31 13:21:16 -03:00
|
|
|
numbits(num_bits),
|
|
|
|
numwords((num_bits+31)/32) {
|
|
|
|
clearall();
|
2016-11-17 03:19:05 -04:00
|
|
|
}
|
2019-04-11 09:12:26 -03:00
|
|
|
|
|
|
|
Bitmask &operator=(const Bitmask&other) {
|
|
|
|
memcpy(bits, other.bits, sizeof(bits[0])*other.numwords);
|
|
|
|
return *this;
|
2016-11-17 03:19:05 -04:00
|
|
|
}
|
|
|
|
|
2022-04-29 08:50:19 -03:00
|
|
|
bool operator==(const Bitmask&other) {
|
|
|
|
if (other.numbits != numbits) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return memcmp(bits, other.bits, sizeof(bits[0])*numwords) == 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const Bitmask&other) {
|
|
|
|
return !(*this == other);
|
|
|
|
}
|
|
|
|
|
2018-11-02 18:43:08 -03:00
|
|
|
Bitmask(const Bitmask &other) = delete;
|
|
|
|
|
2016-11-17 03:19:05 -04:00
|
|
|
// set given bitnumber
|
|
|
|
void set(uint16_t bit) {
|
2017-08-31 13:21:16 -03:00
|
|
|
// ignore an invalid bit number
|
|
|
|
if (bit >= numbits) {
|
2020-04-29 21:40:45 -03:00
|
|
|
INTERNAL_ERROR(AP_InternalError::error_t::bitmask_range);
|
2017-08-31 13:21:16 -03:00
|
|
|
return;
|
|
|
|
}
|
2016-11-17 03:19:05 -04:00
|
|
|
uint16_t word = bit/32;
|
|
|
|
uint8_t ofs = bit & 0x1f;
|
|
|
|
bits[word] |= (1U << ofs);
|
|
|
|
}
|
|
|
|
|
2017-08-23 01:57:15 -03:00
|
|
|
// set all bits
|
|
|
|
void setall(void) {
|
2017-08-31 13:21:16 -03:00
|
|
|
// set all words to 111... except the last one.
|
|
|
|
for (uint16_t i=0; i<numwords-1; i++) {
|
2017-08-23 01:57:15 -03:00
|
|
|
bits[i] = 0xffffffff;
|
|
|
|
}
|
2017-08-31 13:21:16 -03:00
|
|
|
// set most of the last word to 111.., leaving out-of-range bits to be 0
|
|
|
|
uint16_t num_valid_bits = numbits % 32;
|
|
|
|
bits[numwords-1] = (1 << num_valid_bits) - 1;
|
2017-08-23 01:57:15 -03:00
|
|
|
}
|
|
|
|
|
2016-11-17 03:19:05 -04:00
|
|
|
// clear given bitnumber
|
|
|
|
void clear(uint16_t bit) {
|
|
|
|
uint16_t word = bit/32;
|
|
|
|
uint8_t ofs = bit & 0x1f;
|
|
|
|
bits[word] &= ~(1U << ofs);
|
|
|
|
}
|
|
|
|
|
2022-10-09 21:37:30 -03:00
|
|
|
// set given bitnumber to on/off
|
|
|
|
void setonoff(uint16_t bit, bool onoff) {
|
|
|
|
if (onoff) {
|
|
|
|
set(bit);
|
|
|
|
} else {
|
|
|
|
clear(bit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-17 03:19:05 -04:00
|
|
|
// clear all bits
|
|
|
|
void clearall(void) {
|
2017-08-31 13:21:16 -03:00
|
|
|
memset(bits, 0, numwords*sizeof(bits[0]));
|
2016-11-17 03:19:05 -04:00
|
|
|
}
|
2017-08-23 01:58:31 -03:00
|
|
|
|
2016-11-17 03:19:05 -04:00
|
|
|
// return true if given bitnumber is set
|
2017-08-31 02:59:16 -03:00
|
|
|
bool get(uint16_t bit) const {
|
2016-11-17 03:19:05 -04:00
|
|
|
uint16_t word = bit/32;
|
|
|
|
uint8_t ofs = bit & 0x1f;
|
2019-04-16 01:48:16 -03:00
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
|
|
|
if (bit >= numbits) {
|
2020-04-29 21:40:45 -03:00
|
|
|
INTERNAL_ERROR(AP_InternalError::error_t::bitmask_range);
|
2019-04-16 01:48:16 -03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
2016-11-17 03:19:05 -04:00
|
|
|
return (bits[word] & (1U << ofs)) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// return true if all bits are clear
|
2017-08-31 02:59:16 -03:00
|
|
|
bool empty(void) const {
|
2016-11-17 03:19:05 -04:00
|
|
|
for (uint16_t i=0; i<numwords; i++) {
|
|
|
|
if (bits[i] != 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2017-08-23 01:57:15 -03:00
|
|
|
|
|
|
|
// return number of bits set
|
2017-08-31 02:59:16 -03:00
|
|
|
uint16_t count() const {
|
2017-08-23 01:57:15 -03:00
|
|
|
uint16_t sum = 0;
|
|
|
|
for (uint16_t i=0; i<numwords; i++) {
|
|
|
|
if (sizeof(bits[i]) <= sizeof(int)) {
|
|
|
|
sum += __builtin_popcount(bits[i]);
|
|
|
|
} else if (sizeof(bits[i]) <= sizeof(long)) {
|
|
|
|
sum += __builtin_popcountl(bits[i]);
|
|
|
|
} else {
|
|
|
|
sum += __builtin_popcountll(bits[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sum;
|
|
|
|
}
|
|
|
|
|
2018-08-08 02:19:55 -03:00
|
|
|
// return first bit set, or -1 if none set
|
|
|
|
int16_t first_set() const {
|
|
|
|
for (uint16_t i=0; i<numwords; i++) {
|
|
|
|
if (bits[i] == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-12-06 18:51:50 -04:00
|
|
|
int fs;
|
|
|
|
if (sizeof(bits[i]) <= sizeof(int)) {
|
|
|
|
fs = __builtin_ffs(bits[i]);
|
|
|
|
} else if (sizeof(bits[i]) <= sizeof(long)) {
|
|
|
|
fs = __builtin_ffsl(bits[i]);
|
|
|
|
} else {
|
|
|
|
fs = __builtin_ffsll(bits[i]);
|
|
|
|
}
|
|
|
|
return i*32 + fs - 1;
|
2018-08-08 02:19:55 -03:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-08-31 13:21:16 -03:00
|
|
|
// return number of bits available
|
2017-08-31 02:59:16 -03:00
|
|
|
uint16_t size() const {
|
2017-08-31 13:21:16 -03:00
|
|
|
return numbits;
|
2017-08-23 01:57:15 -03:00
|
|
|
}
|
|
|
|
|
2016-11-17 03:19:05 -04:00
|
|
|
private:
|
2018-11-02 18:43:08 -03:00
|
|
|
uint16_t numbits;
|
|
|
|
uint16_t numwords;
|
2019-04-11 09:12:26 -03:00
|
|
|
uint32_t bits[(num_bits+31)/32];
|
2016-11-17 03:19:05 -04:00
|
|
|
};
|