4 * This file is part of BeRTOS.
6 * Bertos is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * As a special exception, you may use this file as part of a free software
21 * library without restriction. Specifically, if other files instantiate
22 * templates or use macros or inline functions from this file, or you compile
23 * this file and link it with other files to produce an executable, this
24 * file does not by itself cause the resulting executable to be covered by
25 * the GNU General Public License. This exception does not however
26 * invalidate any other reasons why the executable file might be covered by
27 * the GNU General Public License.
29 * Copyright 2010 Develer S.r.l. (http://www.develer.com/)
32 * \brief Bitarray module
34 * \author Daniele Basile <asterix@develer.com>
36 * $WIZ$ module_name = "bitarray"
39 #ifndef STRUCT_BITARRAY_H
40 #define STRUCT_BITARRAY_H
42 #include <cfg/compiler.h>
43 #include <cfg/macros.h>
44 #include <cfg/debug.h>
46 #include <cpu/types.h>
48 typedef struct BitArray
50 size_t size; /// Size in bytes of the bitarray
51 size_t bitarray_len; /// Number of bits used
52 uint8_t *array; /// Pointer to memory occupied by the bitarray
56 * Convenience macro to create a memory area for the BitArray.
57 * \param name Name of the variable.
58 * \param size Number of bits requested. It will be rounded to the nearest
61 #define BITARRAY_ALLOC(name, size) uint8_t name[DIV_ROUNDUP((size), 8)]
64 * Set one bit into the bit array.
65 * \param bitx BitArray context
66 * \param idx The bit to set
68 INLINE void bitarray_set(BitArray *bitx, int idx)
70 ASSERT((size_t)idx <= bitx->bitarray_len);
73 uint8_t bit = idx % 8;
75 bitx->array[page] |= BV(bit);
79 * Clear one bit in the bit array.
80 * \param bitx BitArray context
81 * \param idx The bit to clear
83 INLINE void bitarray_clear(BitArray *bitx, int idx)
85 ASSERT((size_t)idx <= bitx->bitarray_len);
88 uint8_t bit = idx % 8;
90 bitx->array[page] &= ~BV(bit);
94 * Set a range of bits.
96 * The range starts from \a idx (inclusive) and spans \a offset bits.
98 * \param bitx BitArray context
99 * \param idx Starting bit
100 * \param offset Number of bit to set
102 INLINE void bitarray_setRange(BitArray *bitx, int idx, int offset)
104 ASSERT((size_t)idx <= bitx->bitarray_len);
106 for (int i = idx; i < offset + idx; i++)
107 bitarray_set(bitx, i);
111 * Clear a range of bits.
113 * The range starts from \a idx (inclusive) and spans \a offset bits.
115 * \param bitx BitArray context
116 * \param idx Starting bit
117 * \param offset Number of bits to clear
119 INLINE void bitarray_clearRange(BitArray *bitx, int idx, int offset)
121 ASSERT((size_t)idx <= bitx->bitarray_len);
123 for (int i = idx; i < offset + idx; i++)
124 bitarray_clear(bitx, i);
130 * \param bitx BitArray context
131 * \param idx Bit to test
132 * \return True if bit is set, false otherwise.
134 INLINE bool bitarray_test(BitArray *bitx, int idx)
136 ASSERT((size_t)idx <= bitx->bitarray_len);
138 uint8_t bit = idx % 8;
140 return (bitx->array[page] & BV(bit));
144 * Check if the bitarray is full
146 * Only \a bitarray_len bits are tested.
148 * \param bitx BitArray to test
149 * \return True if \a bitx is full, false otherwise
151 INLINE bool bitarray_isFull(BitArray *bitx)
153 // test full bytes except the last one
154 for (size_t page = 0; page <= bitx->size - 2; page++)
156 if (!(bitx->array[page] == 0xff))
159 // test the last byte using the correct bitmask
160 uint8_t mask = BV(bitx->bitarray_len >> 3) - 1;
161 if (!(bitx->array[bitx->size - 1] & mask))
168 * Ugly!.. reformat it.
171 * Test if a range of bit is full.
173 * \param bitx BitArray context
174 * \param idx Starting bit
175 * \param offset Number of bits to test
176 * \return True if range is full, false otherwise
178 INLINE bool bitarray_isRangeFull(BitArray *bitx, int idx, int offset)
180 ASSERT((size_t)(idx + offset) <= bitx->bitarray_len);
182 for (int i = idx; i <= idx + offset; i++)
183 if (!bitarray_test(bitx, i))
190 * Ugly!.. reformat it.
193 * Test if a range of bit is empty.
195 * \param bitx BitArray context
196 * \param idx Starting bit
197 * \param offset Number of bits to test
198 * \return True if range is empty, false otherwise
200 INLINE bool bitarray_isRangeEmpty(BitArray *bitx, int idx, int offset)
202 ASSERT((size_t)(idx + offset) <= bitx->bitarray_len);
204 for (int i = idx; i <= idx + offset; i++)
205 if (bitarray_test(bitx, i))
212 * Print on debug serial a BitArray.
213 * \note This module does not use the logging module, so you
214 * can't decide the logging level.
215 * \param bitx BitArray to be printed.
217 INLINE void bitarray_dump(BitArray *bitx)
219 kprintf("bitarray size[%zu]bits on [%zu]bytes\n", bitx->bitarray_len, bitx->size);
223 int count = bitx->bitarray_len;
227 kprintf("%d", bitarray_test(bitx, i++));
230 kprintf("..%02x [%d]\n", bitx->array[(i / 8) - 1], i);
238 kprintf("..%02x [%d]\n", bitx->array[i / 8], i);
244 * The BitArray uses an external array for storage. You can use the macro
245 * BITARRAY_ALLOC to declare an appropriate memory size. Example usage:
247 * BITARRAY_ALLOC(bits_mem, 17);
249 * bitarray_init(&bits, 17, bits_mem, sizeof(bits_mem))
252 * \param bitx BitArray context
253 * \param bitarray_len Number of bits in the BitArray
254 * \param array Memory area for the BitArray
255 * \param size Size (in bytes) of the memory area \a array
257 INLINE void bitarray_init(BitArray *bitx, size_t bitarray_len, uint8_t *array, size_t size)
261 bitx->bitarray_len = bitarray_len;
265 int bitarray_testSetup(void);
266 int bitarray_testRun(void);
267 int bitarray_testTearDown(void);
269 #endif /* STRUCT_BITARRAY_H */