blob: ac5f201fc5da4a3698b3df255287de44dcb9ad0c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#include "alloc.h"
#include <qpid/dispatch/bitmask.h>
#include <assert.h>
#include <stdint.h>
#include <stdlib.h>
#include <sys/types.h>
#define QD_BITMASK_LONGS 16
#define QD_BITMASK_BITS (QD_BITMASK_LONGS * 64)
struct qd_bitmask_t {
uint64_t array[QD_BITMASK_LONGS];
int first_set;
};
ALLOC_DECLARE(qd_bitmask_t);
ALLOC_DEFINE(qd_bitmask_t);
#define MASK_INDEX(num) (num / 64)
#define MASK_ONEHOT(num) (((uint64_t) 1) << (num % 64))
#define FIRST_NONE -1
#define FIRST_UNKNOWN -2
int qd_bitmask_width()
{
return QD_BITMASK_BITS;
}
qd_bitmask_t *qd_bitmask(int initial)
{
qd_bitmask_t *b = new_qd_bitmask_t();
if (initial)
qd_bitmask_set_all(b);
else
qd_bitmask_clear_all(b);
return b;
}
void qd_bitmask_free(qd_bitmask_t *b)
{
if (!b) return;
free_qd_bitmask_t(b);
}
void qd_bitmask_set_all(qd_bitmask_t *b)
{
for (int i = 0; i < QD_BITMASK_LONGS; i++)
b->array[i] = 0xFFFFFFFFFFFFFFFF;
b->first_set = 0;
}
void qd_bitmask_clear_all(qd_bitmask_t *b)
{
for (int i = 0; i < QD_BITMASK_LONGS; i++)
b->array[i] = 0;
b->first_set = FIRST_NONE;
}
void qd_bitmask_set_bit(qd_bitmask_t *b, int bitnum)
{
assert(bitnum < QD_BITMASK_BITS);
b->array[MASK_INDEX(bitnum)] |= MASK_ONEHOT(bitnum);
if (b->first_set > bitnum || b->first_set < 0)
b->first_set = bitnum;
}
void qd_bitmask_clear_bit(qd_bitmask_t *b, int bitnum)
{
assert(bitnum < QD_BITMASK_BITS);
b->array[MASK_INDEX(bitnum)] &= ~(MASK_ONEHOT(bitnum));
if (b->first_set == bitnum)
b->first_set = FIRST_UNKNOWN;
}
int qd_bitmask_value(qd_bitmask_t *b, int bitnum)
{
return (b->array[MASK_INDEX(bitnum)] & MASK_ONEHOT(bitnum)) ? 1 : 0;
}
int qd_bitmask_first_set(qd_bitmask_t *b, int *bitnum)
{
if (b->first_set == FIRST_UNKNOWN) {
b->first_set = FIRST_NONE;
for (int i = 0; i < QD_BITMASK_LONGS; i++)
if (b->array[i]) {
for (int j = 0; j < 64; j++)
if ((((uint64_t) 1) << j) & b->array[i]) {
b->first_set = i * 64 + j;
break;
}
break;
}
}
if (b->first_set == FIRST_NONE)
return 0;
*bitnum = b->first_set;
return 1;
}