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 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
|
/*-
* Copyright (c) 2006 Verdens Gang AS
* Copyright (c) 2006-2011 Varnish Software AS
* All rights reserved.
*
* Author: Poul-Henning Kamp <phk@phk.freebsd.dk>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* Implementation of a binary heap API
*
* See also:
* http://portal.acm.org/citation.cfm?doid=1785414.1785434
* (or: http://queue.acm.org/detail.cfm?id=1814327)
*/
#include "config.h"
#include <errno.h>
#include <limits.h>
#include <stdint.h>
#include <stdlib.h>
#include <unistd.h>
#include "binary_heap.h"
#include "vas.h"
/* Parameters --------------------------------------------------------*/
/*
* The number of elements in a row has to be a compromise between
* wasted space and number of memory allocations.
* With 64k objects per row, there will be at least 5...10 seconds
* between row additions on a very busy server.
* At the same time, the worst case amount of wasted memory is kept
* at a reasonable 1 MB -- two rows on 64bit system.
* Finally, but without practical significance: 16 bits should be
* easier for the compiler to optimize.
*/
#define ROW_SHIFT 16
#undef PARANOIA
/* Private definitions -----------------------------------------------*/
#define ROOT_IDX 1
#define ROW_WIDTH (1 << ROW_SHIFT)
/*lint -emacro(572, ROW) shift 0 >> by 16 */
/*lint -emacro(835, ROW) 0 left of >> */
/*lint -emacro(778, ROW) const >> evaluates to zero */
#define ROW(b, n) ((b)->array[(n) >> ROW_SHIFT])
/*lint -emacro(835, A) 0 left of & */
#define A(b, n) ROW(b, n)[(n) & (ROW_WIDTH - 1)]
struct binheap {
unsigned magic;
#define BINHEAP_MAGIC 0xf581581aU /* from /dev/random */
void *priv;
binheap_cmp_t *cmp;
binheap_update_t *update;
void ***array;
unsigned rows;
unsigned length;
unsigned next;
unsigned page_size;
unsigned page_mask;
unsigned page_shift;
};
#define VM_AWARE
#ifdef VM_AWARE
static unsigned
parent(const struct binheap *bh, unsigned u)
{
unsigned po;
unsigned v;
assert(u != UINT_MAX);
po = u & bh->page_mask;
if (u < bh->page_size || po > 3) {
v = (u & ~bh->page_mask) | (po >> 1);
} else if (po < 2) {
v = (u - bh->page_size) >> bh->page_shift;
v += v & ~(bh->page_mask >> 1);
v |= bh->page_size / 2;
} else {
v = u - 2;
}
return (v);
}
static void
child(const struct binheap *bh, unsigned u, unsigned *a, unsigned *b)
{
uintmax_t uu;
if (u > bh->page_mask && (u & (bh->page_mask - 1)) == 0) {
/* First two elements are magical except on the first page */
*a = *b = u + 2;
} else if (u & (bh->page_size >> 1)) {
/* The bottom row is even more magical */
*a = (u & ~bh->page_mask) >> 1;
*a |= u & (bh->page_mask >> 1);
*a += 1;
uu = (uintmax_t)*a << bh->page_shift;
*a = uu;
if (*a == uu) {
*b = *a + 1;
} else {
/*
* An unsigned is not big enough: clamp instead
* of truncating. We do not support adding
* more than UINT_MAX elements anyway, so this
* is without consequence.
*/
*a = UINT_MAX;
*b = UINT_MAX;
}
} else {
/* The rest is as usual, only inside the page */
*a = u + (u & bh->page_mask);
*b = *a + 1;
}
#ifdef PARANOIA
assert(*a > 0);
assert(*b > 0);
if (*a != UINT_MAX) {
assert(parent(bh, *a) == u);
assert(parent(bh, *b) == u);
}
#endif
}
#else
static unsigned
parent(const struct binheap *bh, unsigned u)
{
(void)bh;
return (u / 2);
}
static void
child(const struct binheap *bh, unsigned u, unsigned *a, unsigned *b)
{
(void)bh;
*a = u * 2;
*b = *a + 1;
}
#endif
/* Implementation ----------------------------------------------------*/
static void
binheap_addrow(struct binheap *bh)
{
unsigned u;
/* First make sure we have space for another row */
if (&ROW(bh, bh->length) >= bh->array + bh->rows) {
u = bh->rows * 2;
bh->array = realloc(bh->array, sizeof(*bh->array) * u);
assert(bh->array != NULL);
/* NULL out new pointers */
while (bh->rows < u)
bh->array[bh->rows++] = NULL;
}
assert(ROW(bh, bh->length) == NULL);
ROW(bh, bh->length) = malloc(sizeof(**bh->array) * ROW_WIDTH);
assert(ROW(bh, bh->length));
bh->length += ROW_WIDTH;
}
struct binheap *
binheap_new(void *priv, binheap_cmp_t *cmp_f, binheap_update_t *update_f)
{
struct binheap *bh;
unsigned u;
bh = calloc(sizeof *bh, 1);
if (bh == NULL)
return (bh);
bh->priv = priv;
bh->page_size = (unsigned)getpagesize() / sizeof (void *);
bh->page_mask = bh->page_size - 1;
AZ(bh->page_size & bh->page_mask); /* power of two */
for (u = 1; (1U << u) != bh->page_size; u++)
;
bh->page_shift = u;
assert(bh->page_size <= (sizeof(**bh->array) * ROW_WIDTH));
bh->cmp = cmp_f;
bh->update = update_f;
bh->next = ROOT_IDX;
bh->rows = 16; /* A tiny-ish number */
bh->array = calloc(sizeof *bh->array, bh->rows);
assert(bh->array != NULL);
binheap_addrow(bh);
A(bh, ROOT_IDX) = NULL;
bh->magic = BINHEAP_MAGIC;
return (bh);
}
static void
binheap_update(const struct binheap *bh, unsigned u)
{
assert(bh != NULL);
assert(bh->magic == BINHEAP_MAGIC);
assert(u < bh->next);
assert(A(bh, u) != NULL);
if (bh->update != NULL)
bh->update(bh->priv, A(bh, u), u);
}
static void
binhead_swap(const struct binheap *bh, unsigned u, unsigned v)
{
void *p;
assert(bh != NULL);
assert(bh->magic == BINHEAP_MAGIC);
assert(u < bh->next);
assert(A(bh, u) != NULL);
assert(v < bh->next);
assert(A(bh, v) != NULL);
p = A(bh, u);
A(bh, u) = A(bh, v);
A(bh, v) = p;
binheap_update(bh, u);
binheap_update(bh, v);
}
static unsigned
binheap_trickleup(const struct binheap *bh, unsigned u)
{
unsigned v;
assert(bh != NULL); assert(bh->magic == BINHEAP_MAGIC);
assert(u < bh->next);
assert(A(bh, u) != NULL);
while (u > ROOT_IDX) {
assert(u < bh->next);
assert(A(bh, u) != NULL);
v = parent(bh, u);
assert(v < u);
assert(v < bh->next);
assert(A(bh, v) != NULL);
if (!bh->cmp(bh->priv, A(bh, u), A(bh, v)))
break;
binhead_swap(bh, u, v);
u = v;
}
return (u);
}
static unsigned
binheap_trickledown(const struct binheap *bh, unsigned u)
{
unsigned v1, v2;
assert(bh != NULL);
assert(bh->magic == BINHEAP_MAGIC);
assert(u < bh->next);
assert(A(bh, u) != NULL);
while (1) {
assert(u < bh->next);
assert(A(bh, u) != NULL);
child(bh, u, &v1, &v2);
assert(v1 > 0);
assert(v2 > 0);
assert(v1 <= v2);
if (v1 >= bh->next)
return (u);
assert(A(bh, v1) != NULL);
if (v1 != v2 && v2 < bh->next) {
assert(A(bh, v2) != NULL);
if (bh->cmp(bh->priv, A(bh, v2), A(bh, v1)))
v1 = v2;
}
assert(v1 < bh->next);
assert(A(bh, v1) != NULL);
if (bh->cmp(bh->priv, A(bh, u), A(bh, v1)))
return (u);
binhead_swap(bh, u, v1);
u = v1;
}
}
void
binheap_insert(struct binheap *bh, void *p)
{
unsigned u;
assert(bh != NULL);
assert(bh->magic == BINHEAP_MAGIC);
assert(bh->length >= bh->next);
if (bh->length == bh->next)
binheap_addrow(bh);
assert(bh->length > bh->next);
u = bh->next++;
A(bh, u) = p;
binheap_update(bh, u);
(void)binheap_trickleup(bh, u);
assert(u < bh->next);
assert(A(bh, u) != NULL);
}
#ifdef PARANOIA
static void
chk(const struct binheap *bh)
{
unsigned u, v;
for (u = 2; u < bh->next; u++) {
v = parent(bh, u);
AZ(bh->cmp(bh->priv, A(bh, u), A(bh, v)));
}
}
#endif
void *
binheap_root(const struct binheap *bh)
{
assert(bh != NULL);
assert(bh->magic == BINHEAP_MAGIC);
#ifdef PARANOIA
chk(bh);
#endif
return (A(bh, ROOT_IDX));
}
/*
* It may seem counter-intuitive that we delete by replacement with
* the tail object. "That's almost certain to not belong there, in
* particular when we delete the root ?" is the typical reaction.
*
* If we tried to trickle up into the empty position, we would,
* eventually, end up with a hole in the bottom row, at which point
* we would move the tail object there.
* But there is no guarantee that the tail object would not need to
* trickle up from that position, in fact, it might be the new root
* of this half of the subtree.
* The total number of operations is guaranteed to be at least
* N{height} downward selections, because we have to get the hole
* all the way down, but in addition to that, we may get up to
* N{height}-1 upward trickles.
*
* When we fill the hole with the tail object, the worst case is
* that it trickles all the way up to of this half-tree, or down
* to become the tail object again.
*
* In other words worst case is N{height} up or downward trickles.
* But there is a decent chance that it does not make it all the way.
*/
void
binheap_delete(struct binheap *bh, unsigned idx)
{
assert(bh != NULL);
assert(bh->magic == BINHEAP_MAGIC);
assert(bh->next > ROOT_IDX);
assert(idx < bh->next);
assert(idx > 0);
assert(A(bh, idx) != NULL);
bh->update(bh->priv, A(bh, idx), BINHEAP_NOIDX);
if (idx == --bh->next) {
A(bh, bh->next) = NULL;
return;
}
A(bh, idx) = A(bh, bh->next);
A(bh, bh->next) = NULL;
binheap_update(bh, idx);
idx = binheap_trickleup(bh, idx);
assert(idx < bh->next);
assert(idx > 0);
assert(A(bh, idx) != NULL);
idx = binheap_trickledown(bh, idx);
assert(idx < bh->next);
assert(idx > 0);
assert(A(bh, idx) != NULL);
/*
* We keep a hysteresis of one full row before we start to
* return space to the OS to avoid silly behaviour around
* row boundaries.
*/
if (bh->next + 2 * ROW_WIDTH <= bh->length) {
free(ROW(bh, bh->length - 1));
ROW(bh, bh->length - 1) = NULL;
bh->length -= ROW_WIDTH;
}
}
/*
* Move an item up/down after changing its key value
*/
void
binheap_reorder(const struct binheap *bh, unsigned idx)
{
assert(bh != NULL);
assert(bh->magic == BINHEAP_MAGIC);
assert(bh->next > ROOT_IDX);
assert(idx < bh->next);
assert(idx > 0);
assert(A(bh, idx) != NULL);
idx = binheap_trickleup(bh, idx);
assert(idx < bh->next);
assert(idx > 0);
assert(A(bh, idx) != NULL);
idx = binheap_trickledown(bh, idx);
assert(idx < bh->next);
assert(idx > 0);
assert(A(bh, idx) != NULL);
}
#ifdef TEST_DRIVER
#include <stdio.h>
#include "miniobj.h"
/* Test driver -------------------------------------------------------*/
static void
vasfail(const char *func, const char *file, int line,
const char *cond, int err, int xxx)
{
fprintf(stderr, "PANIC: %s %s %d %s %d %d\n",
func, file, line, cond, err, xxx);
abort();
}
vas_f *VAS_Fail = vasfail;
struct foo {
unsigned magic;
#define FOO_MAGIC 0x23239823
unsigned idx;
unsigned key;
unsigned n;
};
#if 1
#define M 31011091 /* Number of operations */
#define N 17313102 /* Number of items */
#else
#define M 3401 /* Number of operations */
#define N 1131 /* Number of items */
#endif
#define R -1 /* Random modulus */
struct foo *ff[N];
static int
cmp(void *priv, void *a, void *b)
{
struct foo *fa, *fb;
CAST_OBJ_NOTNULL(fa, a, FOO_MAGIC);
CAST_OBJ_NOTNULL(fb, b, FOO_MAGIC);
return (fa->key < fb->key);
}
void
update(void *priv, void *a, unsigned u)
{
struct foo *fa;
CAST_OBJ_NOTNULL(fa, a, FOO_MAGIC);
fa->idx = u;
}
void
chk2(struct binheap *bh)
{
unsigned u, v;
struct foo *fa, *fb;
for (u = 2; u < bh->next; u++) {
v = parent(bh, u);
fa = A(bh, u);
fb = A(bh, v);
assert(fa->key >= fb->key);
}
}
int
main(int argc, char **argv)
{
struct binheap *bh;
unsigned u, v, lr, n;
struct foo *fp;
if (0) {
srandomdev();
u = random();
printf("Seed %u\n", u);
srandom(u);
}
bh = binheap_new(NULL, cmp, update);
for (n = 2; n; n += n) {
child(bh, n - 1, &u, &v);
child(bh, n, &u, &v);
child(bh, n + 1, &u, &v);
}
while (1) {
/* First insert our N elements */
for (u = 0; u < N; u++) {
lr = random() % R;
ALLOC_OBJ(ff[u], FOO_MAGIC);
assert(ff[u] != NULL);
ff[u]->key = lr;
ff[u]->n = u;
binheap_insert(bh, ff[u]);
fp = binheap_root(bh);
assert(fp->idx == 1);
assert(fp->key <= lr);
}
fprintf(stderr, "%d inserts OK\n", N);
/* For M cycles, pick the root, insert new */
for (u = 0; u < M; u++) {
fp = binheap_root(bh);
CHECK_OBJ_NOTNULL(fp, FOO_MAGIC);
assert(fp->idx == 1);
/*
* It cannot possibly be larger than the last
* value we added
*/
assert(fp->key <= lr);
binheap_delete(bh, fp->idx);
n = fp->n;
ALLOC_OBJ(ff[n], FOO_MAGIC);
assert(ff[n] != NULL);
FREE_OBJ(fp);
fp = ff[n];
fp->n = n;
lr = random() % R;
fp->key = lr;
binheap_insert(bh, fp);
}
fprintf(stderr, "%d replacements OK\n", M);
/* The remove everything */
lr = 0;
for (u = 0; u < N; u++) {
fp = binheap_root(bh);
CHECK_OBJ_NOTNULL(fp, FOO_MAGIC);
assert(fp->idx == 1);
assert(fp->key >= lr);
lr = fp->key;
binheap_delete(bh, fp->idx);
ff[fp->n] = NULL;
FREE_OBJ(fp);
}
fprintf(stderr, "%d removes OK\n", N);
for (u = 0; u < M; u++) {
v = random() % N;
if (ff[v] != NULL) {
CHECK_OBJ_NOTNULL(ff[v], FOO_MAGIC);
AN(ff[v]->idx);
if (ff[v]->key & 1) {
binheap_delete(bh, ff[v]->idx);
assert(ff[v]->idx == BINHEAP_NOIDX);
FREE_OBJ(ff[v]);
ff[v] = NULL;
} else {
ff[v]->key = random() % R;
binheap_reorder(bh, ff[v]->idx);
}
} else {
ALLOC_OBJ(ff[v], FOO_MAGIC);
assert(ff[v] != NULL);
ff[v]->key = random() % R;
binheap_insert(bh, ff[v]);
CHECK_OBJ_NOTNULL(ff[v], FOO_MAGIC);
AN(ff[v]->idx);
}
if (0)
chk2(bh);
}
fprintf(stderr, "%d updates OK\n", M);
}
return (0);
}
#endif
|