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 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406
|
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
* All Rights Reserved.
*/
#include <stdint.h>
#include <stdio.h>
#include "platform_defs.h"
#include "avl64.h"
#define CERT ASSERT
#ifdef AVL_DEBUG
static void
avl64_checknode(
avl64tree_desc_t *tree,
avl64node_t *np)
{
avl64node_t *back = np->avl_back;
avl64node_t *forw = np->avl_forw;
avl64node_t *nextino = np->avl_nextino;
int bal = np->avl_balance;
ASSERT(bal != AVL_BALANCE || (!back && !forw) || (back && forw));
ASSERT(bal != AVL_FORW || forw);
ASSERT(bal != AVL_BACK || back);
if (forw) {
ASSERT(AVL_START(tree, np) < AVL_START(tree, forw));
ASSERT(np->avl_forw->avl_parent == np);
ASSERT(back || bal == AVL_FORW);
} else {
ASSERT(bal != AVL_FORW);
ASSERT(bal == AVL_BALANCE || back);
ASSERT(bal == AVL_BACK || !back);
}
if (back) {
ASSERT(AVL_START(tree, np) > AVL_START(tree, back));
ASSERT(np->avl_back->avl_parent == np);
ASSERT(forw || bal == AVL_BACK);
} else {
ASSERT(bal != AVL_BACK);
ASSERT(bal == AVL_BALANCE || forw);
ASSERT(bal == AVL_FORW || !forw);
}
if (nextino == NULL)
ASSERT(forw == NULL);
else
ASSERT(AVL_END(tree, np) <= AVL_START(tree, nextino));
}
static void
avl64_checktree(
avl64tree_desc_t *tree,
avl64node_t *root)
{
avl64node_t *nlast, *nnext, *np;
uint64_t offset = 0;
uint64_t end;
nlast = nnext = root;
ASSERT(!nnext || nnext->avl_parent == NULL);
while (nnext) {
avl64_checknode(tree, nnext);
end = AVL_END(tree, nnext);
if (end <= offset) {
if ((np = nnext->avl_forw) && np != nlast) {
nlast = nnext;
nnext = np;
} else {
nlast = nnext;
nnext = nnext->avl_parent;
}
continue;
}
nlast = nnext;
if (np = nnext->avl_back) {
if (AVL_END(tree, np) > offset) {
nnext = np;
continue;
}
}
np = nnext;
nnext = nnext->avl_forw;
if (!nnext)
nnext = np->avl_parent;
offset = end;
}
}
#else /* ! AVL_DEBUG */
#define avl64_checktree(t,x)
#endif /* AVL_DEBUG */
/*
* Reset balance for np up through tree.
* ``direction'' is the way that np's balance
* is headed after the deletion of one of its children --
* e.g., deleting a avl_forw child sends avl_balance toward AVL_BACK.
* Called only when deleting a node from the tree.
*/
static void
retreat(
avl64tree_desc_t *tree,
avl64node_t *np,
int direction)
{
avl64node_t **rootp = &tree->avl_root;
avl64node_t *parent;
avl64node_t *child;
avl64node_t *tmp;
int bal;
do {
ASSERT(direction == AVL_BACK || direction == AVL_FORW);
if (np->avl_balance == AVL_BALANCE) {
np->avl_balance = direction;
return;
}
parent = np->avl_parent;
/*
* If balance is being restored, no local node
* reorganization is necessary, but may be at
* a higher node. Reset direction and continue.
*/
if (direction != np->avl_balance) {
np->avl_balance = AVL_BALANCE;
if (parent) {
if (parent->avl_forw == np)
direction = AVL_BACK;
else
direction = AVL_FORW;
np = parent;
continue;
}
return;
}
/*
* Imbalance. If a avl_forw node was removed, direction
* (and, by reduction, np->avl_balance) is/was AVL_BACK.
*/
if (np->avl_balance == AVL_BACK) {
ASSERT(direction == AVL_BACK);
child = np->avl_back;
bal = child->avl_balance;
if (bal != AVL_FORW) /* single LL */ {
/*
* np gets pushed down to lesser child's
* avl_forw branch.
*
* np-> -D +B
* / \ / \
* child-> B deleted A -D
* / \ /
* A C C
cmn_err(CE_CONT, "!LL delete b 0x%x c 0x%x\n",
np, child);
*/
np->avl_back = child->avl_forw;
if (child->avl_forw)
child->avl_forw->avl_parent = np;
child->avl_forw = np;
if (parent) {
if (parent->avl_forw == np) {
parent->avl_forw = child;
direction = AVL_BACK;
} else {
ASSERT(parent->avl_back == np);
parent->avl_back = child;
direction = AVL_FORW;
}
} else {
ASSERT(*rootp == np);
*rootp = child;
}
np->avl_parent = child;
child->avl_parent = parent;
if (bal == AVL_BALANCE) {
np->avl_balance = AVL_BACK;
child->avl_balance = AVL_FORW;
return;
} else {
np->avl_balance = AVL_BALANCE;
child->avl_balance = AVL_BALANCE;
np = parent;
avl64_checktree(tree, *rootp);
continue;
}
}
/* child->avl_balance == AVL_FORW double LR rotation
*
* child's avl_forw node gets promoted up, along with
* its avl_forw subtree
*
* np-> -G C
* / \ / \
* child-> +B H -B G
* / \ \ / / \
* A +C deleted A D H
* \
* D
cmn_err(CE_CONT, "!LR delete b 0x%x c 0x%x t 0x%x\n",
np, child, child->avl_forw);
*/
tmp = child->avl_forw;
bal = tmp->avl_balance;
child->avl_forw = tmp->avl_back;
if (tmp->avl_back)
tmp->avl_back->avl_parent = child;
tmp->avl_back = child;
child->avl_parent = tmp;
np->avl_back = tmp->avl_forw;
if (tmp->avl_forw)
tmp->avl_forw->avl_parent = np;
tmp->avl_forw = np;
if (bal == AVL_FORW)
child->avl_balance = AVL_BACK;
else
child->avl_balance = AVL_BALANCE;
if (bal == AVL_BACK)
np->avl_balance = AVL_FORW;
else
np->avl_balance = AVL_BALANCE;
goto next;
}
ASSERT(np->avl_balance == AVL_FORW && direction == AVL_FORW);
child = np->avl_forw;
bal = child->avl_balance;
if (bal != AVL_BACK) /* single RR */ {
/*
* np gets pushed down to greater child's
* avl_back branch.
*
* np-> +B -D
* / \ / \
* deleted D <-child +B E
* / \ \
* C E C
cmn_err(CE_CONT, "!RR delete b 0x%x c 0x%x\n",
np, child);
*/
np->avl_forw = child->avl_back;
if (child->avl_back)
child->avl_back->avl_parent = np;
child->avl_back = np;
if (parent) {
if (parent->avl_forw == np) {
parent->avl_forw = child;
direction = AVL_BACK;
} else {
ASSERT(parent->avl_back == np);
parent->avl_back = child;
direction = AVL_FORW;
}
} else {
ASSERT(*rootp == np);
*rootp = child;
}
np->avl_parent = child;
child->avl_parent = parent;
if (bal == AVL_BALANCE) {
np->avl_balance = AVL_FORW;
child->avl_balance = AVL_BACK;
return;
} else {
np->avl_balance = AVL_BALANCE;
child->avl_balance = AVL_BALANCE;
np = parent;
avl64_checktree(tree, *rootp);
continue;
}
}
/* child->avl_balance == AVL_BACK double RL rotation
cmn_err(CE_CONT, "!RL delete b 0x%x c 0x%x t 0x%x\n",
np, child, child->avl_back);
*/
tmp = child->avl_back;
bal = tmp->avl_balance;
child->avl_back = tmp->avl_forw;
if (tmp->avl_forw)
tmp->avl_forw->avl_parent = child;
tmp->avl_forw = child;
child->avl_parent = tmp;
np->avl_forw = tmp->avl_back;
if (tmp->avl_back)
tmp->avl_back->avl_parent = np;
tmp->avl_back = np;
if (bal == AVL_BACK)
child->avl_balance = AVL_FORW;
else
child->avl_balance = AVL_BALANCE;
if (bal == AVL_FORW)
np->avl_balance = AVL_BACK;
else
np->avl_balance = AVL_BALANCE;
next:
np->avl_parent = tmp;
tmp->avl_balance = AVL_BALANCE;
tmp->avl_parent = parent;
if (parent) {
if (parent->avl_forw == np) {
parent->avl_forw = tmp;
direction = AVL_BACK;
} else {
ASSERT(parent->avl_back == np);
parent->avl_back = tmp;
direction = AVL_FORW;
}
} else {
ASSERT(*rootp == np);
*rootp = tmp;
return;
}
np = parent;
avl64_checktree(tree, *rootp);
} while (np);
}
/*
* Remove node from tree.
* avl_delete does the local tree manipulations,
* calls retreat() to rebalance tree up to its root.
*/
void
avl64_delete(
avl64tree_desc_t *tree,
avl64node_t *np)
{
avl64node_t *forw = np->avl_forw;
avl64node_t *back = np->avl_back;
avl64node_t *parent = np->avl_parent;
avl64node_t *nnext;
if (np->avl_back) {
/*
* a left child exits, then greatest left descendent's nextino
* is pointing to np; make it point to np->nextino.
*/
nnext = np->avl_back;
while (nnext) {
if (!nnext->avl_forw)
break; /* can't find anything bigger */
nnext = nnext->avl_forw;
}
} else
if (np->avl_parent) {
/*
* find nearest ancestor with lesser value. That ancestor's
* nextino is pointing to np; make it point to np->nextino
*/
nnext = np->avl_parent;
while (nnext) {
if (AVL_END(tree, nnext) <= AVL_END(tree, np))
break;
nnext = nnext->avl_parent;
}
} else
nnext = NULL;
if (nnext) {
ASSERT(nnext->avl_nextino == np);
nnext->avl_nextino = np->avl_nextino;
/*
* Something preceeds np; np cannot be firstino.
*/
ASSERT(tree->avl_firstino != np);
}
else {
/*
* Nothing preceeding np; after deletion, np's nextino
* is firstino of tree.
*/
ASSERT(tree->avl_firstino == np);
tree->avl_firstino = np->avl_nextino;
}
/*
* Degenerate cases...
*/
if (forw == NULL) {
forw = back;
goto attach;
}
if (back == NULL) {
attach:
if (forw)
forw->avl_parent = parent;
if (parent) {
if (parent->avl_forw == np) {
parent->avl_forw = forw;
retreat(tree, parent, AVL_BACK);
} else {
ASSERT(parent->avl_back == np);
parent->avl_back = forw;
retreat(tree, parent, AVL_FORW);
}
} else {
ASSERT(tree->avl_root == np);
tree->avl_root = forw;
}
avl64_checktree(tree, tree->avl_root);
return;
}
/*
* Harder case: children on both sides.
* If back's avl_forw pointer is null, just have back
* inherit np's avl_forw tree, remove np from the tree
* and adjust balance counters starting at back.
*
* np-> xI xH (befor retreat())
* / \ / \
* back-> H J G J
* / / \ / \
* G ? ? ? ?
* / \
* ? ?
*/
if ((forw = back->avl_forw) == NULL) {
/*
* AVL_FORW retreat below will set back's
* balance to AVL_BACK.
*/
back->avl_balance = np->avl_balance;
back->avl_forw = forw = np->avl_forw;
forw->avl_parent = back;
back->avl_parent = parent;
if (parent) {
if (parent->avl_forw == np)
parent->avl_forw = back;
else {
ASSERT(parent->avl_back == np);
parent->avl_back = back;
}
} else {
ASSERT(tree->avl_root == np);
tree->avl_root = back;
}
/*
* back is taking np's place in the tree, and
* has therefore lost a avl_back node (itself).
*/
retreat(tree, back, AVL_FORW);
avl64_checktree(tree, tree->avl_root);
return;
}
/*
* Hardest case: children on both sides, and back's
* avl_forw pointer isn't null. Find the immediately
* inferior buffer by following back's avl_forw line
* to the end, then have it inherit np's avl_forw tree.
*
* np-> xI xH
* / \ / \
* G J back-> G J (before retreat())
* / \ / \
* F ?... F ?1
* / \
* ? H <-forw
* /
* ?1
*/
while ((back = forw->avl_forw))
forw = back;
/*
* Will be adjusted by retreat() below.
*/
forw->avl_balance = np->avl_balance;
/*
* forw inherits np's avl_forw...
*/
forw->avl_forw = np->avl_forw;
np->avl_forw->avl_parent = forw;
/*
* ... forw's parent gets forw's avl_back...
*/
back = forw->avl_parent;
back->avl_forw = forw->avl_back;
if (forw->avl_back)
forw->avl_back->avl_parent = back;
/*
* ... forw gets np's avl_back...
*/
forw->avl_back = np->avl_back;
np->avl_back->avl_parent = forw;
/*
* ... and forw gets np's parent.
*/
forw->avl_parent = parent;
if (parent) {
if (parent->avl_forw == np)
parent->avl_forw = forw;
else
parent->avl_back = forw;
} else {
ASSERT(tree->avl_root == np);
tree->avl_root = forw;
}
/*
* What used to be forw's parent is the starting
* point for rebalancing. It has lost a avl_forw node.
*/
retreat(tree, back, AVL_BACK);
avl64_checktree(tree, tree->avl_root);
}
/*
* avl_findanyrange:
*
* Given range r [start, end), find any range which is contained in r.
* if checklen is non-zero, then only ranges of non-zero length are
* considered in finding a match.
*/
avl64node_t *
avl64_findanyrange(
avl64tree_desc_t *tree,
uint64_t start,
uint64_t end,
int checklen)
{
avl64node_t *np = tree->avl_root;
/* np = avl64_findadjacent(tree, start, AVL_SUCCEED); */
while (np) {
if (start < AVL_START(tree, np)) {
if (np->avl_back) {
np = np->avl_back;
continue;
}
/* if we were to add node with start, would
* have a growth of AVL_BACK
*/
/* if succeeding node is needed, this is it.
*/
break;
}
if (start >= AVL_END(tree, np)) {
if (np->avl_forw) {
np = np->avl_forw;
continue;
}
/* if we were to add node with start, would
* have a growth of AVL_FORW;
*/
/* we are looking for a succeeding node;
* this is nextino.
*/
np = np->avl_nextino;
break;
}
/* AVL_START(tree, np) <= start < AVL_END(tree, np) */
break;
}
if (np) {
if (checklen == AVL_INCLUDE_ZEROLEN) {
if (end <= AVL_START(tree, np)) {
/* something follows start, but is
* is entierly after the range (end)
*/
return(NULL);
}
/* np may stradle [start, end) */
return(np);
}
/*
* find non-zero length region
*/
while (np && (AVL_END(tree, np) - AVL_START(tree, np) == 0)
&& (AVL_START(tree, np) < end))
np = np->avl_nextino;
if ((np == NULL) || (AVL_START(tree, np) >= end))
return NULL;
return(np);
}
/*
* nothing succeeds start, all existing ranges are before start.
*/
return NULL;
}
/*
* Returns a pointer to range which contains value.
*/
avl64node_t *
avl64_findrange(
avl64tree_desc_t *tree,
uint64_t value)
{
avl64node_t *np = tree->avl_root;
while (np) {
if (value < AVL_START(tree, np)) {
np = np->avl_back;
continue;
}
if (value >= AVL_END(tree, np)) {
np = np->avl_forw;
continue;
}
ASSERT(AVL_START(tree, np) <= value &&
value < AVL_END(tree, np));
return np;
}
return NULL;
}
/*
* Returns a pointer to node which contains exact value.
*/
avl64node_t *
avl64_find(
avl64tree_desc_t *tree,
uint64_t value)
{
avl64node_t *np = tree->avl_root;
uint64_t nvalue;
while (np) {
nvalue = AVL_START(tree, np);
if (value < nvalue) {
np = np->avl_back;
continue;
}
if (value == nvalue) {
return np;
}
np = np->avl_forw;
}
return NULL;
}
/*
* Balance buffer AVL tree after attaching a new node to root.
* Called only by avl_insert.
*/
static void
avl64_balance(
avl64node_t **rootp,
avl64node_t *np,
int growth)
{
/*
* At this point, np points to the node to which
* a new node has been attached. All that remains is to
* propagate avl_balance up the tree.
*/
for ( ; ; ) {
avl64node_t *parent = np->avl_parent;
avl64node_t *child;
CERT(growth == AVL_BACK || growth == AVL_FORW);
/*
* If the buffer was already balanced, set avl_balance
* to the new direction. Continue if there is a
* parent after setting growth to reflect np's
* relation to its parent.
*/
if (np->avl_balance == AVL_BALANCE) {
np->avl_balance = growth;
if (parent) {
if (parent->avl_forw == np)
growth = AVL_FORW;
else {
ASSERT(parent->avl_back == np);
growth = AVL_BACK;
}
np = parent;
continue;
}
break;
}
if (growth != np->avl_balance) {
/*
* Subtree is now balanced -- no net effect
* in the size of the subtree, so leave.
*/
np->avl_balance = AVL_BALANCE;
break;
}
if (growth == AVL_BACK) {
child = np->avl_back;
CERT(np->avl_balance == AVL_BACK && child);
if (child->avl_balance == AVL_BACK) { /* single LL */
/*
* ``A'' just got inserted;
* np points to ``E'', child to ``C'',
* and it is already AVL_BACK --
* child will get promoted to top of subtree.
np-> -E C
/ \ / \
child-> -C F -B E
/ \ / / \
-B D A D F
/
A
Note that child->avl_parent and
avl_balance get set in common code.
*/
np->avl_parent = child;
np->avl_balance = AVL_BALANCE;
np->avl_back = child->avl_forw;
if (child->avl_forw)
child->avl_forw->avl_parent = np;
child->avl_forw = np;
} else {
/*
* double LR
*
* child's avl_forw node gets promoted to
* the top of the subtree.
np-> -E C
/ \ / \
child-> +B F -B E
/ \ / / \
A +C A D F
\
D
*/
avl64node_t *tmp = child->avl_forw;
CERT(child->avl_balance == AVL_FORW && tmp);
child->avl_forw = tmp->avl_back;
if (tmp->avl_back)
tmp->avl_back->avl_parent = child;
tmp->avl_back = child;
child->avl_parent = tmp;
np->avl_back = tmp->avl_forw;
if (tmp->avl_forw)
tmp->avl_forw->avl_parent = np;
tmp->avl_forw = np;
np->avl_parent = tmp;
if (tmp->avl_balance == AVL_BACK)
np->avl_balance = AVL_FORW;
else
np->avl_balance = AVL_BALANCE;
if (tmp->avl_balance == AVL_FORW)
child->avl_balance = AVL_BACK;
else
child->avl_balance = AVL_BALANCE;
/*
* Set child to point to tmp since it is
* now the top of the subtree, and will
* get attached to the subtree parent in
* the common code below.
*/
child = tmp;
}
} else /* growth == AVL_BACK */ {
/*
* This code is the mirror image of AVL_FORW above.
*/
child = np->avl_forw;
CERT(np->avl_balance == AVL_FORW && child);
if (child->avl_balance == AVL_FORW) { /* single RR */
np->avl_parent = child;
np->avl_balance = AVL_BALANCE;
np->avl_forw = child->avl_back;
if (child->avl_back)
child->avl_back->avl_parent = np;
child->avl_back = np;
} else {
/*
* double RL
*/
avl64node_t *tmp = child->avl_back;
ASSERT(child->avl_balance == AVL_BACK && tmp);
child->avl_back = tmp->avl_forw;
if (tmp->avl_forw)
tmp->avl_forw->avl_parent = child;
tmp->avl_forw = child;
child->avl_parent = tmp;
np->avl_forw = tmp->avl_back;
if (tmp->avl_back)
tmp->avl_back->avl_parent = np;
tmp->avl_back = np;
np->avl_parent = tmp;
if (tmp->avl_balance == AVL_FORW)
np->avl_balance = AVL_BACK;
else
np->avl_balance = AVL_BALANCE;
if (tmp->avl_balance == AVL_BACK)
child->avl_balance = AVL_FORW;
else
child->avl_balance = AVL_BALANCE;
child = tmp;
}
}
child->avl_parent = parent;
child->avl_balance = AVL_BALANCE;
if (parent) {
if (parent->avl_back == np)
parent->avl_back = child;
else
parent->avl_forw = child;
} else {
ASSERT(*rootp == np);
*rootp = child;
}
break;
}
}
static
avl64node_t *
avl64_insert_find_growth(
avl64tree_desc_t *tree,
uint64_t start, /* range start at start, */
uint64_t end, /* exclusive */
int *growthp) /* OUT */
{
avl64node_t *root = tree->avl_root;
avl64node_t *np;
np = root;
ASSERT(np); /* caller ensures that there is atleast one node in tree */
for ( ; ; ) {
CERT(np->avl_parent || root == np);
CERT(!np->avl_parent || root != np);
CERT(!(np->avl_back) || np->avl_back->avl_parent == np);
CERT(!(np->avl_forw) || np->avl_forw->avl_parent == np);
CERT(np->avl_balance != AVL_FORW || np->avl_forw);
CERT(np->avl_balance != AVL_BACK || np->avl_back);
CERT(np->avl_balance != AVL_BALANCE ||
np->avl_back == NULL || np->avl_forw);
CERT(np->avl_balance != AVL_BALANCE ||
np->avl_forw == NULL || np->avl_back);
if (AVL_START(tree, np) >= end) {
if (np->avl_back) {
np = np->avl_back;
continue;
}
*growthp = AVL_BACK;
break;
}
if (AVL_END(tree, np) <= start) {
if (np->avl_forw) {
np = np->avl_forw;
continue;
}
*growthp = AVL_FORW;
break;
}
/* found exact match -- let caller decide if it is an error */
return(NULL);
}
return(np);
}
static void
avl64_insert_grow(
avl64tree_desc_t *tree,
avl64node_t *parent,
avl64node_t *newnode,
int growth)
{
avl64node_t *nnext;
uint64_t start = AVL_START(tree, newnode);
if (growth == AVL_BACK) {
parent->avl_back = newnode;
/*
* we are growing to the left; previous in-order to newnode is
* closest ancestor with lesser value. Before this
* insertion, this ancestor will be pointing to
* newnode's parent. After insertion, next in-order to newnode
* is the parent.
*/
newnode->avl_nextino = parent;
nnext = parent;
while (nnext) {
if (AVL_END(tree, nnext) <= start)
break;
nnext = nnext->avl_parent;
}
if (nnext) {
/*
* nnext will be null if newnode is
* the least element, and hence very first in the list.
*/
ASSERT(nnext->avl_nextino == parent);
nnext->avl_nextino = newnode;
}
}
else {
parent->avl_forw = newnode;
newnode->avl_nextino = parent->avl_nextino;
parent->avl_nextino = newnode;
}
}
avl64node_t *
avl64_insert(
avl64tree_desc_t *tree,
avl64node_t *newnode)
{
avl64node_t *np;
uint64_t start = AVL_START(tree, newnode);
uint64_t end = AVL_END(tree, newnode);
int growth;
ASSERT(newnode);
/*
* Clean all pointers for sanity; some will be reset as necessary.
*/
newnode->avl_nextino = NULL;
newnode->avl_parent = NULL;
newnode->avl_forw = NULL;
newnode->avl_back = NULL;
newnode->avl_balance = AVL_BALANCE;
if ((np = tree->avl_root) == NULL) { /* degenerate case... */
tree->avl_root = newnode;
tree->avl_firstino = newnode;
return newnode;
}
if ((np = avl64_insert_find_growth(tree, start, end, &growth))
== NULL) {
if (start != end) { /* non-zero length range */
fprintf(stderr,
_("avl_insert: Warning! duplicate range [%llu,%llu]\n"),
(unsigned long long)start,
(unsigned long long)end);
}
return(NULL);
}
avl64_insert_grow(tree, np, newnode, growth);
if (growth == AVL_BACK) {
/*
* Growing to left. if np was firstino, newnode will be firstino
*/
if (tree->avl_firstino == np)
tree->avl_firstino = newnode;
}
#ifdef notneeded
else
if (growth == AVL_FORW)
/*
* Cannot possibly be firstino; there is somebody to our left.
*/
;
#endif
newnode->avl_parent = np;
CERT(np->avl_forw == newnode || np->avl_back == newnode);
avl64_balance(&tree->avl_root, np, growth);
avl64_checktree(tree, tree->avl_root);
return newnode;
}
/*
*
* avl64_insert_immediate(tree, afterp, newnode):
* insert newnode immediately into tree immediately after afterp.
* after insertion, newnode is right child of afterp.
*/
void
avl64_insert_immediate(
avl64tree_desc_t *tree,
avl64node_t *afterp,
avl64node_t *newnode)
{
/*
* Clean all pointers for sanity; some will be reset as necessary.
*/
newnode->avl_nextino = NULL;
newnode->avl_parent = NULL;
newnode->avl_forw = NULL;
newnode->avl_back = NULL;
newnode->avl_balance = AVL_BALANCE;
if (afterp == NULL) {
tree->avl_root = newnode;
tree->avl_firstino = newnode;
return;
}
ASSERT(afterp->avl_forw == NULL);
avl64_insert_grow(tree, afterp, newnode, AVL_FORW); /* grow to right */
CERT(afterp->avl_forw == newnode);
avl64_balance(&tree->avl_root, afterp, AVL_FORW);
avl64_checktree(tree, tree->avl_root);
}
/*
* Returns first in order node
*/
avl64node_t *
avl64_firstino(avl64node_t *root)
{
avl64node_t *np;
if ((np = root) == NULL)
return NULL;
while (np->avl_back)
np = np->avl_back;
return np;
}
/*
* Returns last in order node
*/
avl64node_t *
avl64_lastino(avl64node_t *root)
{
avl64node_t *np;
if ((np = root) == NULL)
return NULL;
while (np->avl_forw)
np = np->avl_forw;
return np;
}
void
avl64_init_tree(avl64tree_desc_t *tree, avl64ops_t *ops)
{
tree->avl_root = NULL;
tree->avl_firstino = NULL;
tree->avl_ops = ops;
}
#ifdef AVL_DEBUG
static void
avl64_printnode(avl64tree_desc_t *tree, avl64node_t *np, int nl)
{
printf("[%d-%d]%c", AVL_START(tree, np),
(AVL_END(tree, np) - 1), nl ? '\n' : ' ');
}
#endif
#ifdef STAND_ALONE_DEBUG
struct avl_debug_node {
avl64node_t avl_node;
xfs_off_t avl_start;
unsigned int avl_size;
}
avl64ops_t avl_debug_ops = {
avl_debug_start,
avl_debug_end,
}
static uint64_t
avl64_debug_start(avl64node_t *node)
{
return (uint64_t)(struct avl_debug_node *)node->avl_start;
}
static uint64_t
avl64_debug_end(avl64node_t *node)
{
return (uint64_t)
((struct avl_debug_node *)node->avl_start +
(struct avl_debug_node *)node->avl_size);
}
avl_debug_node freenodes[100];
avl_debug_node *freehead = &freenodes[0];
static avl64node_t *
alloc_avl64_debug_node()
{
freehead->avl_balance = AVL_BALANCE;
freehead->avl_parent = freehead->avl_forw = freehead->avl_back = NULL;
return(freehead++);
}
static void
avl64_print(avl64tree_desc_t *tree, avl64node_t *root, int depth)
{
int i;
if (!root)
return;
if (root->avl_forw)
avl64_print(tree, root->avl_forw, depth+5);
for (i = 0; i < depth; i++)
putchar((int) ' ');
avl64_printnode(tree, root,1);
if (root->avl_back)
avl64_print(tree, root->avl_back, depth+5);
}
main()
{
int i, j;
avl64node_t *np;
avl64tree_desc_t tree;
char linebuf[256], cmd[256];
avl64_init_tree(&tree, &avl_debug_ops);
for (i = 100; i > 0; i = i - 10)
{
np = alloc__debug_avlnode();
ASSERT(np);
np->avl_start = i;
np->avl_size = 10;
avl64_insert(&tree, np);
}
avl64_print(&tree, tree.avl_root, 0);
for (np = tree.avl_firstino; np != NULL; np = np->avl_nextino)
avl64_printnode(&tree, np, 0);
printf("\n");
while (1) {
printf(_("Command [fpdir] : "));
fgets(linebuf, 256, stdin);
if (feof(stdin)) break;
cmd[0] = NULL;
if (sscanf(linebuf, "%[fpdir]%d", cmd, &i) != 2)
continue;
switch (cmd[0]) {
case 'd':
case 'f':
printf(_("end of range ? "));
fgets(linebuf, 256, stdin);
j = atoi(linebuf);
if (i == j) j = i+1;
np = avl64_findinrange(&tree,i,j);
if (np) {
avl64_printnode(&tree, np, 1);
if (cmd[0] == 'd')
avl64_delete(&tree, np);
} else
printf(_("Cannot find %d\n"), i);
break;
case 'p':
avl64_print(&tree, tree.avl_root, 0);
for (np = tree.avl_firstino;
np != NULL; np = np->avl_nextino)
avl64_printnode(&tree, np, 0);
printf("\n");
break;
case 'i':
np = alloc_avlnode();
ASSERT(np);
np->avl_start = i;
printf(_("size of range ? "));
fgets(linebuf, 256, stdin);
j = atoi(linebuf);
np->avl_size = j;
avl64_insert(&tree, np);
break;
case 'r': {
avl64node_t *b, *e, *t;
int checklen;
printf(_("End of range ? "));
fgets(linebuf, 256, stdin);
j = atoi(linebuf);
printf(_("checklen 0/1 ? "));
fgets(linebuf, 256, stdin);
checklen = atoi(linebuf);
b = avl64_findanyrange(&tree, i, j, checklen);
if (b) {
printf(_("Found something\n"));
t = b;
while (t) {
if (t != b &&
AVL_START(&tree, t) >= j)
break;
avl64_printnode(&tree, t, 0);
t = t->avl_nextino;
}
printf("\n");
}
}
}
}
}
#endif
/*
* Given a tree, find value; will find return range enclosing value,
* or range immediately succeeding value,
* or range immediately preceeding value.
*/
avl64node_t *
avl64_findadjacent(
avl64tree_desc_t *tree,
uint64_t value,
int dir)
{
avl64node_t *np = tree->avl_root;
while (np) {
if (value < AVL_START(tree, np)) {
if (np->avl_back) {
np = np->avl_back;
continue;
}
/* if we were to add node with value, would
* have a growth of AVL_BACK
*/
if (dir == AVL_SUCCEED) {
/* if succeeding node is needed, this is it.
*/
return(np);
}
if (dir == AVL_PRECEED) {
/*
* find nearest ancestor with lesser value.
*/
np = np->avl_parent;
while (np) {
if (AVL_END(tree, np) <= value)
break;
np = np->avl_parent;
}
return(np);
}
ASSERT(dir == AVL_SUCCEED || dir == AVL_PRECEED);
break;
}
if (value >= AVL_END(tree, np)) {
if (np->avl_forw) {
np = np->avl_forw;
continue;
}
/* if we were to add node with value, would
* have a growth of AVL_FORW;
*/
if (dir == AVL_SUCCEED) {
/* we are looking for a succeeding node;
* this is nextino.
*/
return(np->avl_nextino);
}
if (dir == AVL_PRECEED) {
/* looking for a preceeding node; this is it. */
return(np);
}
ASSERT(dir == AVL_SUCCEED || dir == AVL_PRECEED);
}
/* AVL_START(tree, np) <= value < AVL_END(tree, np) */
return(np);
}
return NULL;
}
/*
* avl_findranges:
*
* Given range r [start, end), find all ranges in tree which are contained
* in r. At return, startp and endp point to first and last of
* a chain of elements which describe the contained ranges. Elements
* in startp ... endp are in sort order, and can be accessed by
* using avl_nextino.
*/
void
avl64_findranges(
avl64tree_desc_t *tree,
uint64_t start,
uint64_t end,
avl64node_t **startp,
avl64node_t **endp)
{
avl64node_t *np;
np = avl64_findadjacent(tree, start, AVL_SUCCEED);
if (np == NULL /* nothing succeding start */
|| (np && (end <= AVL_START(tree, np))))
/* something follows start,
but... is entirely after end */
{
*startp = NULL;
*endp = NULL;
return;
}
*startp = np;
/* see if end is in this region itself */
if (end <= AVL_END(tree, np) ||
np->avl_nextino == NULL ||
(np->avl_nextino &&
(end <= AVL_START(tree, np->avl_nextino)))) {
*endp = np;
return;
}
/* have to munge for end */
/*
* note: have to look for (end - 1), since
* findadjacent will look for exact value, and does not
* care about the fact that end is actually one more
* than the value actually being looked for; thus feed it one less.
*/
*endp = avl64_findadjacent(tree, (end-1), AVL_PRECEED);
ASSERT(*endp);
}
|