blob: 3138226075b7bd70310dbcaac19730ebcf98b705 [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
31 */
32
Harald Weltecd623eb2011-05-29 15:37:38 +020033#include <stdint.h>
Harald Welteec8b4502010-02-20 20:34:29 +010034
Harald Welteba6988b2011-08-17 12:46:48 +020035/*! \brief A single GSM bit
36 *
37 * 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 +010038 * defined relative to the 0x2b padding pattern */
39enum bit_value {
Harald Welteba6988b2011-08-17 12:46:48 +020040 ZERO = 0, /*!< \brief A zero (0) bit */
41 ONE = 1, /*!< \brief A one (1) bit */
42 L = 2, /*!< \brief A CSN.1 "L" bit */
43 H = 3, /*!< \brief A CSN.1 "H" bit */
Harald Welteec8b4502010-02-20 20:34:29 +010044};
45
Harald Welteba6988b2011-08-17 12:46:48 +020046/*! \brief structure describing a bit vector */
Harald Welteec8b4502010-02-20 20:34:29 +010047struct bitvec {
Harald Welteba6988b2011-08-17 12:46:48 +020048 unsigned int cur_bit; /*!< \brief curser to the next unused bit */
49 unsigned int data_len; /*!< \brief length of data array in bytes */
50 uint8_t *data; /*!< \brief pointer to data array */
Harald Welteec8b4502010-02-20 20:34:29 +010051};
52
Harald Welted9abf012010-03-06 11:28:49 +010053enum bit_value bitvec_get_bit_pos(const struct bitvec *bv, unsigned int bitnr);
Andreas.Eversberg0ebd6882010-05-09 09:36:54 +000054enum bit_value bitvec_get_bit_pos_high(const struct bitvec *bv,
55 unsigned int bitnr);
Harald Welted9abf012010-03-06 11:28:49 +010056unsigned int bitvec_get_nth_set_bit(const struct bitvec *bv, unsigned int n);
Harald Welteec8b4502010-02-20 20:34:29 +010057int bitvec_set_bit_pos(struct bitvec *bv, unsigned int bitnum,
58 enum bit_value bit);
Harald Welteec8b4502010-02-20 20:34:29 +010059int bitvec_set_bit(struct bitvec *bv, enum bit_value bit);
Andreas.Eversberg0ebd6882010-05-09 09:36:54 +000060int bitvec_get_bit_high(struct bitvec *bv);
Harald Welteec8b4502010-02-20 20:34:29 +010061int bitvec_set_bits(struct bitvec *bv, enum bit_value *bits, int count);
Harald Welteec8b4502010-02-20 20:34:29 +010062int bitvec_set_uint(struct bitvec *bv, unsigned int in, int count);
Andreas.Eversberg0ebd6882010-05-09 09:36:54 +000063int bitvec_get_uint(struct bitvec *bv, int num_bits);
Pablo Neira Ayuso36bdf2c2011-03-28 19:24:19 +020064int bitvec_find_bit_pos(const struct bitvec *bv, unsigned int n, enum bit_value val);
Harald Welteec8b4502010-02-20 20:34:29 +010065int bitvec_spare_padding(struct bitvec *bv, unsigned int up_to_bit);
66
Sylvain Munautdca7d2c2012-04-18 21:53:23 +020067/*! @} */