add another registry rpc (opnum 0x14). Have no idea what it's real name
[Samba.git] / source / lib / bitmap.c
blob8121c38bd5b1b0baa788b89faf7674b72f30bd82
1 /*
2 Unix SMB/CIFS implementation.
3 simple bitmap functions
4 Copyright (C) Andrew Tridgell 1992-1998
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
23 /* these functions provide a simple way to allocate integers from a
24 pool without repetition */
26 /****************************************************************************
27 allocate a bitmap of the specified size
28 ****************************************************************************/
29 struct bitmap *bitmap_allocate(int n)
31 struct bitmap *bm;
33 bm = (struct bitmap *)malloc(sizeof(*bm));
35 if (!bm) return NULL;
37 bm->n = n;
38 bm->b = (uint32 *)malloc(sizeof(bm->b[0])*(n+31)/32);
39 if (!bm->b) {
40 SAFE_FREE(bm);
41 return NULL;
44 memset(bm->b, 0, sizeof(bm->b[0])*(n+31)/32);
46 return bm;
49 /****************************************************************************
50 free a bitmap.
51 ****************************************************************************/
53 void bitmap_free(struct bitmap *bm)
55 if (!bm)
56 return;
58 SAFE_FREE(bm->b);
59 SAFE_FREE(bm);
62 /****************************************************************************
63 set a bit in a bitmap
64 ****************************************************************************/
65 BOOL bitmap_set(struct bitmap *bm, unsigned i)
67 if (i >= bm->n) {
68 DEBUG(0,("Setting invalid bitmap entry %d (of %d)\n",
69 i, bm->n));
70 return False;
72 bm->b[i/32] |= (1<<(i%32));
73 return True;
76 /****************************************************************************
77 clear a bit in a bitmap
78 ****************************************************************************/
79 BOOL bitmap_clear(struct bitmap *bm, unsigned i)
81 if (i >= bm->n) {
82 DEBUG(0,("clearing invalid bitmap entry %d (of %d)\n",
83 i, bm->n));
84 return False;
86 bm->b[i/32] &= ~(1<<(i%32));
87 return True;
90 /****************************************************************************
91 query a bit in a bitmap
92 ****************************************************************************/
93 BOOL bitmap_query(struct bitmap *bm, unsigned i)
95 if (i >= bm->n) return False;
96 if (bm->b[i/32] & (1<<(i%32))) {
97 return True;
99 return False;
102 /****************************************************************************
103 find a zero bit in a bitmap starting at the specified offset, with
104 wraparound
105 ****************************************************************************/
106 int bitmap_find(struct bitmap *bm, unsigned ofs)
108 int i, j;
110 if (ofs > bm->n) ofs = 0;
112 i = ofs;
113 while (i < bm->n) {
114 if (~(bm->b[i/32])) {
115 j = i;
116 do {
117 if (!bitmap_query(bm, j)) return j;
118 j++;
119 } while (j & 31 && j < bm->n);
121 i += 32;
122 i &= ~31;
125 i = 0;
126 while (i < ofs) {
127 if (~(bm->b[i/32])) {
128 j = i;
129 do {
130 if (!bitmap_query(bm, j)) return j;
131 j++;
132 } while (j & 31 && j < bm->n);
134 i += 32;
135 i &= ~31;
138 return -1;