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 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
|
/*
** Bitmap library
**
** Written by David Gerdes 12 November 1992
** US Army Construction Engineering Research Laboratories
**
**
** This library provides basic support for the creation and manipulation
** of two dimensional bitmap arrays.
**
** struct BM *
** BM_create (x, y) Create bitmap of specified dimensions
**
** BM_set_mode (mode, size) Specify Mode and data size in bits.
** Affects all further calls to BM_create()
** Mode can be BM_FLAT or BM_SPARSE
** Size can only be 1 currently.
**
** BM_destroy (map) Destroy bitmap and free memory
**
** BM_set (map, x, y, val) Set array position to val [TRUE/FALSE]
**
** BM_get (map, x, y) Return value at array position
**
**
** BM_file_write (fp, map) Write bitmap to file
**
** struct BM *
** BM_file_read (fp) Create bitmap and load from file
**
** BM_get_map_size (map) returns size in bytes that bitmap is
** taking up. For diagnosis use.
*/
#include <stdio.h>
#include <stdlib.h>
#include <grass/linkm.h>
#include <grass/bitmap.h>
#define BM_col_to_byte(x) ((x) >> 3) /* x / 8 */
#define BM_col_to_bit(x) ((x)&7) /* x % 8 */
static int Mode = BM_FLAT;
static int Size = 1;
/*!
* \brief Create bitmap of dimension x/y and return structure token.
*
* Bitmap is initialized to all zeros
*
* \param x x dimension
* \param y y dimension
*
* \return pointer to struct BM
* \return NULL on error
*/
struct BM *BM_create(int x, int y)
{
struct BM *map;
if (Mode == BM_SPARSE)
return BM_create_sparse(x, y);
if (NULL == (map = (struct BM *)malloc(sizeof(struct BM))))
return (NULL);
map->bytes = (x + 7) / 8;
if (NULL ==
(map->data = (unsigned char *)calloc(map->bytes * y, sizeof(char)))) {
free(map);
return (NULL);
}
map->rows = y;
map->cols = x;
map->sparse = 0;
return map;
}
/*!
* \brief Destroy bitmap and free all associated memory
*
* \param map
* \return int returns 0
*/
int BM_destroy(struct BM *map)
{
if (map->sparse)
return BM_destroy_sparse(map);
free(map->data);
free(map);
return 0;
}
/*
** Caller can specify type of data structure to use for bitmap, as
** well as the size of the data values. Currently since this is
** the 'bitmap' library, size can ONLY have value 1.
** Size is number of bits of storage per cell.
**
** Mode:
** BM_FLAT Your basic packed bitmap, eight values are stored per byte
** Thus you get a 1:8 compression over using char arrays
** and a 1:32 compression over using CELL arrays.
**
**
** BM_SPARSE Linked array of values. Much more efficient for large
** very sparse arrays. Slower access, especially for writing,
** but can save several orders of magnitude of memory on large
** bitmaps since size of FLAT bitmap is O(M*N)
**
**
** Returns 0 or negative on error;
** If error it will print a warning message to stderr and continue
** continue by running but will not change the option in error.
*/
/*!
* \brief
*
* Specify the type of data structure to use for bitmap.
* 'mode' can be either BM_FLAT or BM_SPARSE:
*
* BM_FLAT is a basic packed bitmap - eight values stored per byte
* thus creating a 1:8 compression over using char arrays and a
* 1:32 compression over using CELL arrays.
*
* BM_SPARSE is a linked array of values. This is much more efficient
* for large, very sparse arrays. It is slower to access, especially
* for writing, but can save several orders of magnitude of memory on
* large bitmaps.
*
* NOTE: At this time 'size' must be passed a value of 1
*
* returns 0 on success or -1 on error
*
* \param mode
* \param size
* \return int
*/
int BM_set_mode(int mode, int size)
{
int ret = 0;
switch (mode) {
case BM_FLAT:
case BM_SPARSE:
Mode = mode;
break;
default:
fprintf(stderr, "BM_set_mode: Unknown mode: %d\n", mode);
ret--;
}
if (size != 1) {
fprintf(stderr, "BM_set_mode: Bad size: %d\n", size);
ret--;
}
else
Size = size;
return ret;
}
/*!
* \brief
*
* Sets bitmap value to 'val' at location 'x' 'y'
*
* Returns 0 on success
*
* \param map
* \param x
* \param y
* \param val
* \return int
*/
int BM_set(struct BM *map, int x, int y, int val)
{
unsigned char byte;
if (x < 0 || x >= map->cols || y < 0 || y >= map->rows)
return 0;
if (map->sparse)
return BM_set_sparse(map, x, y, val);
byte = 0x01 << BM_col_to_bit(x);
if (val)
map->data[BM_col_to_byte(x) + y * map->bytes] |= byte;
else
map->data[BM_col_to_byte(x) + y * map->bytes] &= ~byte;
return 0;
}
/*!
* \brief
*
* Gets 'val' from the bitmap
*
* Returns 0 or 1 on success or -1 on error
*
* \param map
* \param x
* \param y
* \return int
*/
int BM_get(struct BM *map, int x, int y)
{
unsigned char byte;
if (x < 0 || x >= map->cols || y < 0 || y >= map->rows)
return -1;
if (map->sparse)
return BM_get_sparse(map, x, y);
byte = map->data[BM_col_to_byte(x) + y * map->bytes];
return byte >> BM_col_to_bit(x) & 0x01;
}
/*!
* \brief
*
* Returns size in bytes that bitmap is taking up.
*
* \param map
* \return int
*/
size_t BM_get_map_size(struct BM *map)
{
if (map->sparse)
return BM_get_map_size_sparse(map);
return (size_t)map->bytes * map->rows;
}
/*!
* \brief
*
* Write bitmap out to file
*
* Expects open file pointer 'fp' and existing map structure.
* Caller is responsible to open and close 'fp'.
*
* Returns 0 or -1 on error
*
* \param fp
* \param map
* \return int
*/
int BM_file_write(FILE *fp, struct BM *map)
{
char c;
int i;
if (map->sparse)
return BM_file_write_sparse(fp, map);
c = BM_MAGIC;
fwrite(&c, sizeof(char), sizeof(char), fp);
fwrite(BM_TEXT, BM_TEXT_LEN, sizeof(char), fp);
c = BM_FLAT;
fwrite(&c, sizeof(char), sizeof(char), fp);
fwrite(&(map->rows), sizeof(map->rows), sizeof(char), fp);
fwrite(&(map->cols), sizeof(map->cols), sizeof(char), fp);
for (i = 0; i < map->rows; i++)
if (map->bytes !=
fwrite(&(map->data[i * map->bytes]), sizeof(char), map->bytes, fp))
return -1;
fflush(fp);
return 0;
}
/*!
* \brief
*
* Create map structure and load it from file
*
* 'fp' should previously been created by <b>BM_file_write()</b>
*
* Returns struct BM * or NULL on error
*
* \param fp
* \return struct BM
*/
struct BM *BM_file_read(FILE *fp)
{
struct BM *map;
char c;
char buf[BM_TEXT_LEN + 1];
int i, y, n;
struct BMlink *p = NULL, *p2;
int cnt;
if (NULL == (map = (struct BM *)malloc(sizeof(struct BM))))
return (NULL);
if (fread(&c, sizeof(char), sizeof(char), fp) != sizeof(char)) {
free(map);
return NULL;
}
if (c != BM_MAGIC) {
free(map);
return NULL;
}
if (fread(buf, BM_TEXT_LEN, sizeof(char), fp) != sizeof(char)) {
free(map);
return NULL;
}
if (fread(&c, sizeof(char), sizeof(char), fp) != sizeof(char)) {
free(map);
return NULL;
}
map->sparse = c;
if (fread(&(map->rows), sizeof(map->rows), sizeof(char), fp) !=
sizeof(char)) {
free(map);
return NULL;
}
if (fread(&(map->cols), sizeof(map->cols), sizeof(char), fp) !=
sizeof(char)) {
free(map);
return NULL;
}
map->bytes = (map->cols + 7) / 8;
if (map->sparse == BM_SPARSE)
goto readsparse;
if (NULL == (map->data = (unsigned char *)malloc(map->bytes * map->rows))) {
free(map);
return (NULL);
}
for (i = 0; i < map->rows; i++)
if (map->bytes !=
fread(&(map->data[i * map->bytes]), sizeof(char), map->bytes, fp)) {
free(map->data);
free(map);
return NULL;
}
return map;
readsparse:
link_set_chunk_size(500);
map->token = link_init(sizeof(struct BMlink));
if (NULL == (map->data = (unsigned char *)malloc(sizeof(struct BMlink *) *
map->rows))) {
free(map);
return (NULL);
}
for (y = 0; y < map->rows; y++) {
/* first get number of links */
if (fread(&i, sizeof(i), sizeof(char), fp) != sizeof(char)) {
free(map->data);
free(map);
return NULL;
}
cnt = i;
/* then read them in */
for (i = 0; i < cnt; i++) {
p2 = (struct BMlink *)link_new(map->token);
if (i == 0) {
((struct BMlink **)(map->data))[y] = p2;
p = p2;
}
else {
p->next = p2;
p = p2;
}
if (fread(&n, sizeof(n), sizeof(char), fp) != sizeof(char)) {
free(map->data);
free(map);
return NULL;
}
p->count = n;
if (fread(&n, sizeof(n), sizeof(char), fp) != sizeof(char)) {
free(map->data);
free(map);
return NULL;
}
p->val = n;
p->next = NULL;
}
}
return map;
}
|