blob: 2415a81410618dc914a06f80c5a36afc2607ca2b [file] [log] [blame]
Sylvain Munaut12ba7782014-06-16 10:13:40 +02001#pragma once
Harald Welteec8b4502010-02-20 20:34:29 +01002
3/* bit vector utility routines */
4
5/* (C) 2009 by Harald Welte <laforge@gnumonks.org>
6 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
Harald Welteba6988b2011-08-17 12:46:48 +020025/*! \defgroup bitvec Bit vectors
26 * @{
27 */
28
29/*! \file bitvec.h
30 * \brief Osmocom bit vector abstraction
Jacob Erlbeck5f349be2015-12-21 16:04:03 +010031 *
32 * These functions assume a MSB (most significant bit) first layout of the
33 * bits, so that for instance the 5 bit number abcde (a is MSB) can be
34 * embedded into a byte sequence like in xxxxxxab cdexxxxx. The bit count
35 * starts with the MSB, so the bits in a byte are numbered (MSB) 01234567 (LSB).
36 * Note that there are other incompatible encodings, like it is used
37 * for the EGPRS RLC data block headers (there the bits are numbered from LSB
38 * to MSB).
Harald Welteba6988b2011-08-17 12:46:48 +020039 */
40
Harald Weltecd623eb2011-05-29 15:37:38 +020041#include <stdint.h>
Harald Welteec8b4502010-02-20 20:34:29 +010042
Harald Welteba6988b2011-08-17 12:46:48 +020043/*! \brief A single GSM bit
44 *
45 * In GSM mac blocks, every bit can be 0 or 1, or L or H. L/H are
Harald Welteec8b4502010-02-20 20:34:29 +010046 * defined relative to the 0x2b padding pattern */
47enum bit_value {
Harald Welteba6988b2011-08-17 12:46:48 +020048 ZERO = 0, /*!< \brief A zero (0) bit */
49 ONE = 1, /*!< \brief A one (1) bit */
50 L = 2, /*!< \brief A CSN.1 "L" bit */
51 H = 3, /*!< \brief A CSN.1 "H" bit */
Harald Welteec8b4502010-02-20 20:34:29 +010052};
53
Harald Welteba6988b2011-08-17 12:46:48 +020054/*! \brief structure describing a bit vector */
Harald Welteec8b4502010-02-20 20:34:29 +010055struct bitvec {
Holger Hans Peter Freytherc8c33092014-12-28 18:22:48 +010056 unsigned int cur_bit; /*!< \brief cursor to the next unused bit */
Harald Welteba6988b2011-08-17 12:46:48 +020057 unsigned int data_len; /*!< \brief length of data array in bytes */
58 uint8_t *data; /*!< \brief pointer to data array */
Harald Welteec8b4502010-02-20 20:34:29 +010059};
60
Harald Welted9abf012010-03-06 11:28:49 +010061enum bit_value bitvec_get_bit_pos(const struct bitvec *bv, unsigned int bitnr);
Andreas.Eversberg0ebd6882010-05-09 09:36:54 +000062enum bit_value bitvec_get_bit_pos_high(const struct bitvec *bv,
63 unsigned int bitnr);
Harald Welted9abf012010-03-06 11:28:49 +010064unsigned int bitvec_get_nth_set_bit(const struct bitvec *bv, unsigned int n);
Harald Welteec8b4502010-02-20 20:34:29 +010065int bitvec_set_bit_pos(struct bitvec *bv, unsigned int bitnum,
66 enum bit_value bit);
Harald Welteec8b4502010-02-20 20:34:29 +010067int bitvec_set_bit(struct bitvec *bv, enum bit_value bit);
Andreas.Eversberg0ebd6882010-05-09 09:36:54 +000068int bitvec_get_bit_high(struct bitvec *bv);
Maxe49af082016-01-22 16:46:56 +010069int bitvec_set_bits(struct bitvec *bv, enum bit_value *bits, unsigned int count);
70int bitvec_set_uint(struct bitvec *bv, uint32_t in, unsigned int count);
71int bitvec_get_uint(struct bitvec *bv, unsigned int num_bits);
Pablo Neira Ayuso36bdf2c2011-03-28 19:24:19 +020072int bitvec_find_bit_pos(const struct bitvec *bv, unsigned int n, enum bit_value val);
Harald Welteec8b4502010-02-20 20:34:29 +010073int bitvec_spare_padding(struct bitvec *bv, unsigned int up_to_bit);
Maxe49af082016-01-22 16:46:56 +010074int bitvec_get_bytes(struct bitvec *bv, uint8_t *bytes, unsigned int count);
75int bitvec_set_bytes(struct bitvec *bv, const uint8_t *bytes, unsigned int count);
Harald Welteec8b4502010-02-20 20:34:29 +010076
Sylvain Munautdca7d2c2012-04-18 21:53:23 +020077/*! @} */