1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
/*
mmorph, MULTEXT morphology tool
Version 2.3, October 1995
Copyright (c) 1994,1995 ISSCO/SUISSETRA, Geneva, Switzerland
Dominique Petitpierre, <petitp@divsun.unige.ch>
*/
/*
bitmap.c
handle arbitary length bit maps
Dominique Petitpierre, ISSCO Summer 1994
*/
#include "bitmap.h"
#include "mymalloc.h"
long
next_bit(bitmap, from_position)
s_bitmap *bitmap;
long from_position;
{
register long pos;
/* TODO skip zero chunks */
pos = from_position;
/* there is a sentinel bit at the end of the bitmap */
while (!TEST_BIT(bitmap->bits[WORD_OFFSET(pos)], pos))
pos++;
if (pos < bitmap->size)
return (pos);
else
return (-1);
}
void
unset_bit(bitmap, pos)
s_bitmap *bitmap;
long pos;
{
#ifdef DEBUG
if (pos < 0 || pos > bitmap->size) /* allow for sentinel */
fatal_error("bit position is %d, bitmap size=%d", pos, bitmap->size);
#endif
/* beware: bit position not checked */
UNSET_BIT(bitmap->bits[WORD_OFFSET(pos)], pos);
}
void
set_bit(bitmap, pos)
s_bitmap *bitmap;
long pos;
{
#ifdef DEBUG
if (pos < 0 || pos > bitmap->size) /* allow for sentinel */
fatal_error("bit position is %d, bitmap size=%d", pos, bitmap->size);
#endif
/* beware: bit position not checked */
SET_BIT(bitmap->bits[WORD_OFFSET(pos)], pos);
}
int /* boolean */
test_bit(bitmap, pos)
s_bitmap *bitmap;
long pos;
{
#ifdef DEBUG
if (pos < 0 || pos > bitmap->size) /* allow for sentinel */
fatal_error("bit position is %d, bitmap size=%d", pos, bitmap->size);
#endif
/* beware: bit position not checked */
return (TEST_BIT(bitmap->bits[WORD_OFFSET(pos)], pos));
}
s_bitmap *
new_bitmap(size)
long size;
{
s_bitmap *bitmap;
MY_MALLOC(bitmap, s_bitmap);
MY_CALLOC(bitmap->bits, size / BITS(WORD_TYPE) + 1, WORD_TYPE);
bitmap->size = size;
/* add sentinel bit */
set_bit(bitmap, size);
return (bitmap);
}
void
free_bitmap(bitmap)
s_bitmap *bitmap;
{
if (bitmap->bits != NULL)
MY_FREE(bitmap->bits);
MY_FREE(bitmap);
}
/* return a boolean value */
int
has_unique_bit(word)
WORD_TYPE word;
{
/* could be improved by considering the bytes composing the word */
if (word == NO_BITS)
return (0);
else {
register WORD_TYPE w;
w = word;
/* shift until a bit appears in position 1 */
while (!(w & FIRST_BIT))
w >>= 1;
return (w == FIRST_BIT);
}
}
int /* boolean */
set_if_not_set(bitmap, pos)
s_bitmap *bitmap;
long pos;
{
#ifdef DEBUG
if (pos < 0 || pos > bitmap->size) /* allow for sentinel */
fatal_error("bit position is %d, bitmap size=%d", pos, bitmap->size);
#endif
/* beware: bit position not checked */
if (TEST_BIT(bitmap->bits[WORD_OFFSET(pos)], pos))
return (0);
else {
SET_BIT(bitmap->bits[WORD_OFFSET(pos)], pos);
return (1);
}
}
/*
bitmap equivalent of b1 & b2
assume that the sizes are identical
*/
int
test_and(bitmap1, bitmap2)
s_bitmap *bitmap1;
s_bitmap *bitmap2;
{
register WORD_TYPE *bits1;
register WORD_TYPE *bits2;
register WORD_TYPE *last_word;
bits1 = bitmap1->bits;
bits2 = bitmap2->bits;
last_word = bitmap1->bits + bitmap1->size / BITS(WORD_TYPE);
while (bits1 < last_word)
if (*bits1++ & *bits2++)
return (1);
return (*bits1 & *bits2 & FULL_SET(bitmap1->size & MODULO_MASK)
!= NO_BITS);
}
void
empty_bitmap(bitmap)
s_bitmap *bitmap;
{
register WORD_TYPE *bits;
register WORD_TYPE *last_word;
bits = bitmap->bits;
last_word = bits + bitmap->size / BITS(WORD_TYPE) + 1;
while (bits < last_word)
*bits++ = NO_BITS;
set_bit(bitmap, bitmap->size); /* sentinel */
}
void
fill_bitmap(bitmap)
s_bitmap *bitmap;
{
register WORD_TYPE *bits;
register WORD_TYPE *last_word;
bits = bitmap->bits;
last_word = bits + bitmap->size / BITS(WORD_TYPE) + 1;
while (bits < last_word)
*bits++ = ALL_BITS;
}
/*
bitmap equivalent of b1 |= b2
assume that the sizes are identical
*/
void
assign_or(bitmap1, bitmap2)
s_bitmap *bitmap1;
s_bitmap *bitmap2;
{
register WORD_TYPE *bits1;
register WORD_TYPE *bits2;
register WORD_TYPE *last_word;
bits1 = bitmap1->bits;
bits2 = bitmap2->bits;
last_word = bits1 + bitmap1->size / BITS(WORD_TYPE) + 1;
while (bits1 < last_word)
*bits1++ |= *bits2++;
}
/*
bitmap equivalent of b1 &= b2
assume that the sizes are identical
*/
void
assign_and(bitmap1, bitmap2)
s_bitmap *bitmap1;
s_bitmap *bitmap2;
{
register WORD_TYPE *bits1;
register WORD_TYPE *bits2;
register WORD_TYPE *last_word;
bits1 = bitmap1->bits;
bits2 = bitmap2->bits;
last_word = bitmap1->bits + bitmap1->size / BITS(WORD_TYPE) + 1;
while (bits1 < last_word)
*bits1++ &= *bits2++;
}
/*
bitmap equivalent of b1 = ~ b1
*/
void
negate_bitmap(bitmap)
s_bitmap *bitmap;
{
register WORD_TYPE *bits;
register WORD_TYPE *last_word;
bits = bitmap->bits;
last_word = bitmap->bits + bitmap->size / BITS(WORD_TYPE) + 1;
while (bits < last_word) {
*bits = ~(*bits);
bits++;
}
/* restore the sentinel bit */
set_bit(bitmap, bitmap->size);
}
|