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
|
//===- OnDiskHashMappedTrie.cpp -------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "llvm/CAS/OnDiskHashMappedTrie.h"
#include "HashMappedTrieIndexGenerator.h"
#include "llvm/ADT/ScopeExit.h"
#include "llvm/ADT/StringMap.h"
#include "llvm/CAS/MappedFileRegionBumpPtr.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;
using namespace llvm::cas;
#if LLVM_ENABLE_ONDISK_CAS
static_assert(sizeof(size_t) == sizeof(uint64_t), "64-bit only");
static_assert(sizeof(std::atomic<int64_t>) == sizeof(uint64_t),
"Requires lock-free 64-bit atomics");
//===----------------------------------------------------------------------===//
// Generic database data structures.
//===----------------------------------------------------------------------===//
namespace {
using MappedFileRegion = MappedFileRegionBumpPtr::RegionT;
/// Generic handle for a table.
///
/// Probably we want some table kinds for pointing at multiple tables.
/// - Probably a tree or trie type makes sense.
/// - Or a deque. Linear search is okay as long as there aren't many tables in
/// a file.
///
/// Generic table header layout:
/// - 2-bytes: TableKind
/// - 2-bytes: TableNameSize
/// - 4-bytes: TableNameRelOffset (relative to header)
class TableHandle {
public:
enum class TableKind : uint16_t {
HashMappedTrie = 1,
DataAllocator = 2,
};
struct Header {
TableKind Kind;
uint16_t NameSize;
int32_t NameRelOffset; // Relative to Header.
};
explicit operator bool() const { return H; }
const Header &getHeader() const { return *H; }
MappedFileRegion &getRegion() const { return *Region; }
template <class T> static void check() {
static_assert(
std::is_same<decltype(T::Header::GenericHeader), Header>::value,
"T::GenericHeader should be of type TableHandle::Header");
static_assert(offsetof(typename T::Header, GenericHeader) == 0,
"T::GenericHeader must be the head of T::Header");
}
template <class T> bool is() const { return T::Kind == H->Kind; }
template <class T> T dyn_cast() const {
check<T>();
if (is<T>())
return T(*Region, *reinterpret_cast<typename T::Header *>(H));
return T();
}
template <class T> T cast() const {
assert(is<T>());
return dyn_cast<T>();
}
StringRef getName() const {
auto *Begin = reinterpret_cast<const char *>(H) + H->NameRelOffset;
return StringRef(Begin, H->NameSize);
}
TableHandle() = default;
TableHandle(MappedFileRegion &Region, Header &H) : Region(&Region), H(&H) {}
TableHandle(MappedFileRegion &Region, intptr_t HeaderOffset)
: TableHandle(Region,
*reinterpret_cast<Header *>(Region.data() + HeaderOffset)) {
}
private:
MappedFileRegion *Region = nullptr;
Header *H = nullptr;
};
/// Encapsulate a database file, which:
/// - Sets/checks magic.
/// - Sets/checks version.
/// - Points at an arbitrary root table (can be changed later using a lock-free
/// algorithm).
/// - Sets up a BumpPtr for allocation.
///
/// Top-level layout:
/// - 8-bytes: Magic
/// - 8-bytes: Version
/// - 8-bytes: RootTable (16-bits: Kind; 48-bits: Offset)
/// - 8-bytes: BumpPtr
class DatabaseFile {
public:
static constexpr uint64_t getMagic() { return 0x00FFDA7ABA53FF00ULL; }
static constexpr uint64_t getVersion() { return 1ULL; }
struct Header {
uint64_t Magic;
uint64_t Version;
std::atomic<int64_t> RootTableOffset;
std::atomic<int64_t> BumpPtr;
};
const Header &getHeader() { return *H; }
MappedFileRegionBumpPtr &getAlloc() { return Alloc; }
MappedFileRegion &getRegion() { return Alloc.getRegion(); }
/// Add a table.
///
/// TODO: Allow lazy construction via getOrCreate()-style API.
void addTable(TableHandle Table);
/// Find a table. May return null.
std::optional<TableHandle> findTable(StringRef Name);
static Expected<DatabaseFile>
create(const Twine &Path, uint64_t Capacity,
function_ref<Error(DatabaseFile &)> NewDBConstructor);
size_t size() const { return Alloc.size(); }
private:
static Expected<DatabaseFile>
get(std::unique_ptr<MappedFileRegionBumpPtr> Alloc) {
if (Error E = validate(Alloc->getRegion()))
return std::move(E);
return DatabaseFile(std::move(Alloc));
}
static Error validate(MappedFileRegion &Region);
DatabaseFile(MappedFileRegionBumpPtr &Alloc)
: H(reinterpret_cast<Header *>(Alloc.data())), Alloc(Alloc) {}
DatabaseFile(std::unique_ptr<MappedFileRegionBumpPtr> Alloc)
: DatabaseFile(*Alloc) {
OwnedAlloc = std::move(Alloc);
}
Header *H = nullptr;
MappedFileRegionBumpPtr &Alloc;
std::unique_ptr<MappedFileRegionBumpPtr> OwnedAlloc;
};
} // end anonymous namespace
Expected<DatabaseFile>
DatabaseFile::create(const Twine &Path, uint64_t Capacity,
function_ref<Error(DatabaseFile &)> NewDBConstructor) {
// Constructor for if the file doesn't exist.
auto NewFileConstructor = [&](MappedFileRegionBumpPtr &Alloc) -> Error {
assert(Alloc.capacity() >= sizeof(Header));
(void)new (Alloc.data()) Header{getMagic(), getVersion(), {0}, {0}};
Alloc.initializeBumpPtr(offsetof(Header, BumpPtr));
DatabaseFile DB(Alloc);
return NewDBConstructor(DB);
};
// Get or create the file.
MappedFileRegionBumpPtr Alloc;
if (Error E = MappedFileRegionBumpPtr::create(Path, Capacity,
offsetof(Header, BumpPtr),
NewFileConstructor)
.moveInto(Alloc))
return std::move(E);
return DatabaseFile::get(
std::make_unique<MappedFileRegionBumpPtr>(std::move(Alloc)));
}
void DatabaseFile::addTable(TableHandle Table) {
assert(Table);
assert(&Table.getRegion() == &getRegion());
int64_t ExistingRootOffset = 0;
const int64_t NewOffset =
reinterpret_cast<const char *>(&Table.getHeader()) - getRegion().data();
if (H->RootTableOffset.compare_exchange_strong(ExistingRootOffset, NewOffset))
return;
// Silently ignore attempts to set the root to itself.
if (ExistingRootOffset == NewOffset)
return;
// FIXME: Fix the API so that having the same name is not an error. Instead,
// the colliding table should just be used as-is and the client can decide
// what to do with the new one.
//
// TODO: Add support for creating a chain or tree of tables (more than one at
// all!) to avoid this error.
TableHandle Root(getRegion(), ExistingRootOffset);
if (Root.getName() == Table.getName())
report_fatal_error(
createStringError(make_error_code(std::errc::not_supported),
"table name collision '" + Table.getName() + "'"));
else
report_fatal_error(
createStringError(make_error_code(std::errc::not_supported),
"cannot add new table '" + Table.getName() +
"'"
" to existing root '" +
Root.getName() + "'"));
}
std::optional<TableHandle> DatabaseFile::findTable(StringRef Name) {
int64_t RootTableOffset = H->RootTableOffset.load();
if (!RootTableOffset)
return std::nullopt;
TableHandle Root(getRegion(), RootTableOffset);
if (Root.getName() == Name)
return Root;
// TODO: Once multiple tables are supported, need to walk to find them.
return std::nullopt;
}
Error DatabaseFile::validate(MappedFileRegion &Region) {
if (Region.size() < sizeof(Header))
return createStringError(std::errc::invalid_argument,
"database: missing header");
// Check the magic and version.
auto *H = reinterpret_cast<Header *>(Region.data());
if (H->Magic != getMagic())
return createStringError(std::errc::invalid_argument,
"database: bad magic");
if (H->Version != getVersion())
return createStringError(std::errc::invalid_argument,
"database: wrong version");
// Check the bump-ptr, which should point past the header.
if (H->BumpPtr.load() < (int64_t)sizeof(Header))
return createStringError(std::errc::invalid_argument,
"database: corrupt bump-ptr");
return Error::success();
}
//===----------------------------------------------------------------------===//
// HashMappedTrie data structures.
//===----------------------------------------------------------------------===//
namespace {
class SubtrieHandle;
class SubtrieSlotValue {
public:
explicit operator bool() const { return !isEmpty(); }
bool isEmpty() const { return !Offset; }
bool isData() const { return Offset > 0; }
bool isSubtrie() const { return Offset < 0; }
int64_t asData() const {
assert(isData());
return Offset;
}
int64_t asSubtrie() const {
assert(isSubtrie());
return -Offset;
}
FileOffset asSubtrieFileOffset() const { return FileOffset(asSubtrie()); }
FileOffset asDataFileOffset() const { return FileOffset(asData()); }
int64_t getRawOffset() const { return Offset; }
static SubtrieSlotValue getDataOffset(int64_t Offset) {
return SubtrieSlotValue(Offset);
}
static SubtrieSlotValue getSubtrieOffset(int64_t Offset) {
return SubtrieSlotValue(-Offset);
}
static SubtrieSlotValue getDataOffset(FileOffset Offset) {
return getDataOffset(Offset.get());
}
static SubtrieSlotValue getSubtrieOffset(FileOffset Offset) {
return getDataOffset(Offset.get());
}
static SubtrieSlotValue getFromSlot(std::atomic<int64_t> &Slot) {
return SubtrieSlotValue(Slot.load());
}
SubtrieSlotValue() = default;
private:
friend class SubtrieHandle;
explicit SubtrieSlotValue(int64_t Offset) : Offset(Offset) {}
int64_t Offset = 0;
};
class HashMappedTrieHandle;
/// Subtrie layout:
/// - 2-bytes: StartBit
/// - 1-bytes: NumBits=lg(num-slots)
/// - 1-bytes: NumUnusedBits=lg(num-slots-unused)
/// - 4-bytes: 0-pad
/// - <slots>
class SubtrieHandle {
public:
struct Header {
/// The bit this subtrie starts on.
uint16_t StartBit;
/// The number of bits this subtrie handles. It has 2^NumBits slots.
uint8_t NumBits;
/// The number of extra bits this allocation *could* handle, due to
/// over-allocation. It has 2^NumUnusedBits unused slots.
uint8_t NumUnusedBits;
/// 0-pad to 8B.
uint32_t ZeroPad4B;
};
/// Slot storage:
/// - zero: Empty
/// - positive: RecordOffset
/// - negative: SubtrieOffset
using SlotT = std::atomic<int64_t>;
static int64_t getSlotsSize(uint32_t NumBits) {
return sizeof(int64_t) * (1u << NumBits);
}
static int64_t getSize(uint32_t NumBits) {
return sizeof(SubtrieHandle::Header) + getSlotsSize(NumBits);
}
int64_t getSize() const { return getSize(H->NumBits); }
SubtrieSlotValue load(size_t I) const {
return SubtrieSlotValue(Slots[I].load());
}
void store(size_t I, SubtrieSlotValue V) {
return Slots[I].store(V.getRawOffset());
}
void printHash(raw_ostream &OS, ArrayRef<uint8_t> Bytes) const;
void print(raw_ostream &OS, HashMappedTrieHandle Trie,
SmallVectorImpl<int64_t> &Records,
std::optional<std::string> Prefix = std::nullopt) const;
/// Return None on success, or the existing offset on failure.
bool compare_exchange_strong(size_t I, SubtrieSlotValue &Expected,
SubtrieSlotValue New) {
return Slots[I].compare_exchange_strong(Expected.Offset, New.Offset);
}
/// Sink \p V from \p I in this subtrie down to \p NewI in a new subtrie with
/// \p NumSubtrieBits.
///
/// \p UnusedSubtrie maintains a 1-item "free" list of unused subtries. If a
/// new subtrie is created that isn't used because of a lost race, then it If
/// it's already valid, it should be used instead of allocating a new one.
/// should be returned as an out parameter to be passed back in the future.
/// If it's already valid, it should be used instead of allocating a new one.
///
/// Returns the subtrie that now lives at \p I.
SubtrieHandle sink(size_t I, SubtrieSlotValue V,
MappedFileRegionBumpPtr &Alloc, size_t NumSubtrieBits,
SubtrieHandle &UnusedSubtrie, size_t NewI);
/// Only safe if the subtrie is empty.
void reinitialize(uint32_t StartBit, uint32_t NumBits);
SubtrieSlotValue getOffset() const {
return SubtrieSlotValue::getSubtrieOffset(
reinterpret_cast<const char *>(H) - Region->data());
}
FileOffset getFileOffset() const { return getOffset().asSubtrieFileOffset(); }
explicit operator bool() const { return H; }
Header &getHeader() const { return *H; }
uint32_t getStartBit() const { return H->StartBit; }
uint32_t getNumBits() const { return H->NumBits; }
uint32_t getNumUnusedBits() const { return H->NumUnusedBits; }
static SubtrieHandle create(MappedFileRegionBumpPtr &Alloc, uint32_t StartBit,
uint32_t NumBits, uint32_t NumUnusedBits = 0);
static SubtrieHandle getFromFileOffset(MappedFileRegion &Region,
FileOffset Offset) {
return SubtrieHandle(Region, SubtrieSlotValue::getSubtrieOffset(Offset));
}
SubtrieHandle() = default;
SubtrieHandle(MappedFileRegion &Region, Header &H)
: Region(&Region), H(&H), Slots(getSlots(H)) {}
SubtrieHandle(MappedFileRegion &Region, SubtrieSlotValue Offset)
: SubtrieHandle(Region, *reinterpret_cast<Header *>(
Region.data() + Offset.asSubtrie())) {}
private:
MappedFileRegion *Region = nullptr;
Header *H = nullptr;
MutableArrayRef<SlotT> Slots;
static MutableArrayRef<SlotT> getSlots(Header &H) {
return MutableArrayRef(reinterpret_cast<SlotT *>(&H + 1), 1u << H.NumBits);
}
};
/// Handle for a HashMappedTrie table.
///
/// HashMappedTrie table layout:
/// - [8-bytes: Generic table header]
/// - 1-byte: NumSubtrieBits
/// - 1-byte: Flags (not used yet)
/// - 2-bytes: NumHashBits
/// - 4-bytes: RecordDataSize (in bytes)
/// - 8-bytes: RootTrieOffset
/// - 8-bytes: AllocatorOffset (reserved for implementing free lists)
/// - <name> '\0'
///
/// Record layout:
/// - <data>
/// - <hash>
class HashMappedTrieHandle {
public:
static constexpr TableHandle::TableKind Kind =
TableHandle::TableKind::HashMappedTrie;
struct Header {
TableHandle::Header GenericHeader;
uint8_t NumSubtrieBits;
uint8_t Flags; // None used yet.
uint16_t NumHashBits;
uint32_t RecordDataSize;
std::atomic<int64_t> RootTrieOffset;
std::atomic<int64_t> AllocatorOffset;
};
operator TableHandle() const {
if (!H)
return TableHandle();
return TableHandle(*Region, H->GenericHeader);
}
struct RecordData {
OnDiskHashMappedTrie::ValueProxy Proxy;
SubtrieSlotValue Offset;
FileOffset getFileOffset() const { return Offset.asDataFileOffset(); }
};
enum Limits : size_t {
/// Seems like 65528 hash bits ought to be enough.
MaxNumHashBytes = UINT16_MAX >> 3,
MaxNumHashBits = MaxNumHashBytes << 3,
/// 2^16 bits in a trie is 65536 slots. This restricts us to a 16-bit
/// index. This many slots is suspicously large anyway.
MaxNumRootBits = 16,
/// 2^10 bits in a trie is 1024 slots. This many slots seems suspiciously
/// large for subtries.
MaxNumSubtrieBits = 10,
};
static constexpr size_t getNumHashBytes(size_t NumHashBits) {
assert(NumHashBits % 8 == 0);
return NumHashBits / 8;
}
static constexpr size_t getRecordSize(size_t RecordDataSize,
size_t NumHashBits) {
return RecordDataSize + getNumHashBytes(NumHashBits);
}
RecordData getRecord(SubtrieSlotValue Offset);
RecordData createRecord(MappedFileRegionBumpPtr &Alloc,
ArrayRef<uint8_t> Hash);
explicit operator bool() const { return H; }
const Header &getHeader() const { return *H; }
SubtrieHandle getRoot() const;
SubtrieHandle getOrCreateRoot(MappedFileRegionBumpPtr &Alloc);
MappedFileRegion &getRegion() const { return *Region; }
size_t getFlags() const { return H->Flags; }
uint64_t getNumSubtrieBits() const { return H->NumSubtrieBits; }
uint64_t getNumHashBits() const { return H->NumHashBits; }
size_t getNumHashBytes() const { return getNumHashBytes(H->NumHashBits); }
size_t getRecordDataSize() const { return H->RecordDataSize; }
size_t getRecordSize() const {
return getRecordSize(H->RecordDataSize, H->NumHashBits);
}
IndexGenerator getIndexGen(SubtrieHandle Root, ArrayRef<uint8_t> Hash) {
assert(Root.getStartBit() == 0);
assert(getNumHashBytes() == Hash.size());
assert(getNumHashBits() == Hash.size() * 8);
return IndexGenerator{Root.getNumBits(), getNumSubtrieBits(), Hash};
}
static HashMappedTrieHandle
create(MappedFileRegionBumpPtr &Alloc, StringRef Name,
std::optional<uint64_t> NumRootBits, uint64_t NumSubtrieBits,
uint64_t NumHashBits, uint64_t RecordDataSize);
void
print(raw_ostream &OS,
function_ref<void(ArrayRef<char>)> PrintRecordData = nullptr) const;
HashMappedTrieHandle() = default;
HashMappedTrieHandle(MappedFileRegion &Region, Header &H)
: Region(&Region), H(&H) {}
HashMappedTrieHandle(MappedFileRegion &Region, intptr_t HeaderOffset)
: HashMappedTrieHandle(
Region, *reinterpret_cast<Header *>(Region.data() + HeaderOffset)) {
}
private:
MappedFileRegion *Region = nullptr;
Header *H = nullptr;
};
} // end anonymous namespace
struct OnDiskHashMappedTrie::ImplType {
DatabaseFile File;
HashMappedTrieHandle Trie;
};
SubtrieHandle SubtrieHandle::create(MappedFileRegionBumpPtr &Alloc,
uint32_t StartBit, uint32_t NumBits,
uint32_t NumUnusedBits) {
assert(StartBit <= HashMappedTrieHandle::MaxNumHashBits);
assert(NumBits <= UINT8_MAX);
assert(NumUnusedBits <= UINT8_MAX);
assert(NumBits + NumUnusedBits <= HashMappedTrieHandle::MaxNumRootBits);
void *Mem = Alloc.allocate(getSize(NumBits + NumUnusedBits));
auto *H =
new (Mem) SubtrieHandle::Header{(uint16_t)StartBit, (uint8_t)NumBits,
(uint8_t)NumUnusedBits, /*ZeroPad4B=*/0};
SubtrieHandle S(Alloc.getRegion(), *H);
for (auto I = S.Slots.begin(), E = S.Slots.end(); I != E; ++I)
new (I) SlotT(0);
return S;
}
SubtrieHandle HashMappedTrieHandle::getRoot() const {
if (int64_t Root = H->RootTrieOffset)
return SubtrieHandle(getRegion(), SubtrieSlotValue::getSubtrieOffset(Root));
return SubtrieHandle();
}
SubtrieHandle
HashMappedTrieHandle::getOrCreateRoot(MappedFileRegionBumpPtr &Alloc) {
assert(&Alloc.getRegion() == &getRegion());
if (SubtrieHandle Root = getRoot())
return Root;
int64_t Race = 0;
SubtrieHandle LazyRoot = SubtrieHandle::create(Alloc, 0, H->NumSubtrieBits);
if (H->RootTrieOffset.compare_exchange_strong(
Race, LazyRoot.getOffset().asSubtrie()))
return LazyRoot;
// There was a race. Return the other root.
//
// TODO: Avoid leaking the lazy root by storing it in an allocator.
return SubtrieHandle(getRegion(), SubtrieSlotValue::getSubtrieOffset(Race));
}
HashMappedTrieHandle
HashMappedTrieHandle::create(MappedFileRegionBumpPtr &Alloc, StringRef Name,
std::optional<uint64_t> NumRootBits,
uint64_t NumSubtrieBits, uint64_t NumHashBits,
uint64_t RecordDataSize) {
// Allocate.
intptr_t Offset = Alloc.allocateOffset(sizeof(Header) + Name.size() + 1);
// Construct the header and the name.
assert(Name.size() <= UINT16_MAX && "Expected smaller table name");
assert(NumSubtrieBits <= UINT8_MAX && "Expected valid subtrie bits");
assert(NumHashBits <= UINT16_MAX && "Expected valid hash size");
assert(RecordDataSize <= UINT32_MAX && "Expected smaller table name");
auto *H = new (Alloc.getRegion().data() + Offset)
Header{{TableHandle::TableKind::HashMappedTrie, (uint16_t)Name.size(),
(uint32_t)sizeof(Header)},
(uint8_t)NumSubtrieBits,
/*Flags=*/0,
(uint16_t)NumHashBits,
(uint32_t)RecordDataSize,
/*RootTrieOffset=*/{0},
/*AllocatorOffset=*/{0}};
char *NameStorage = reinterpret_cast<char *>(H + 1);
llvm::copy(Name, NameStorage);
NameStorage[Name.size()] = 0;
// Construct a root trie, if requested.
HashMappedTrieHandle Trie(Alloc.getRegion(), *H);
if (NumRootBits)
H->RootTrieOffset =
SubtrieHandle::create(Alloc, 0, *NumRootBits).getOffset().asSubtrie();
return Trie;
}
HashMappedTrieHandle::RecordData
HashMappedTrieHandle::getRecord(SubtrieSlotValue Offset) {
char *Begin = Region->data() + Offset.asData();
OnDiskHashMappedTrie::ValueProxy Proxy;
Proxy.Data = MutableArrayRef(Begin, getRecordDataSize());
Proxy.Hash = ArrayRef(reinterpret_cast<const uint8_t *>(Proxy.Data.end()),
getNumHashBytes());
return RecordData{Proxy, Offset};
}
HashMappedTrieHandle::RecordData
HashMappedTrieHandle::createRecord(MappedFileRegionBumpPtr &Alloc,
ArrayRef<uint8_t> Hash) {
assert(&Alloc.getRegion() == Region);
assert(Hash.size() == getNumHashBytes());
RecordData Record = getRecord(
SubtrieSlotValue::getDataOffset(Alloc.allocateOffset(getRecordSize())));
llvm::copy(Hash, const_cast<uint8_t *>(Record.Proxy.Hash.begin()));
return Record;
}
OnDiskHashMappedTrie::const_pointer
OnDiskHashMappedTrie::recoverFromHashPointer(
const uint8_t *HashBeginPtr) const {
// Record hashes occur immediately after data. Compute the beginning of the
// record and check for overflow.
const uintptr_t HashBegin = reinterpret_cast<uintptr_t>(HashBeginPtr);
const uintptr_t RecordBegin = HashBegin - Impl->Trie.getRecordSize();
if (HashBegin < RecordBegin)
return const_pointer();
// Check that it'll be a positive offset.
const uintptr_t FileBegin =
reinterpret_cast<uintptr_t>(Impl->File.getRegion().data());
if (RecordBegin < FileBegin)
return const_pointer();
// Good enough to form an offset. Continue checking there.
return recoverFromFileOffset(FileOffset(RecordBegin - FileBegin));
}
OnDiskHashMappedTrie::const_pointer
OnDiskHashMappedTrie::recoverFromFileOffset(FileOffset Offset) const {
// Check alignment.
if (!isAligned(MappedFileRegionBumpPtr::getAlign(), Offset.get()))
return const_pointer();
// Check bounds.
//
// Note: There's no potential overflow when using \c uint64_t because Offset
// is in \c [0,INT64_MAX] and the record size is in \c [0,UINT32_MAX].
assert(Offset.get() >= 0 && "Expected FileOffset constructor guarantee this");
if ((uint64_t)Offset.get() + Impl->Trie.getRecordSize() >
Impl->File.getAlloc().size())
return const_pointer();
// Looks okay...
HashMappedTrieHandle::RecordData D =
Impl->Trie.getRecord(SubtrieSlotValue::getDataOffset(Offset));
return const_pointer(D.getFileOffset(), D.Proxy);
}
OnDiskHashMappedTrie::const_pointer
OnDiskHashMappedTrie::find(ArrayRef<uint8_t> Hash) const {
HashMappedTrieHandle Trie = Impl->Trie;
assert(Hash.size() == Trie.getNumHashBytes() && "Invalid hash");
SubtrieHandle S = Trie.getRoot();
if (!S)
return const_pointer();
IndexGenerator IndexGen = Trie.getIndexGen(S, Hash);
size_t Index = IndexGen.next();
for (;;) {
// Try to set the content.
SubtrieSlotValue V = S.load(Index);
if (!V)
return const_pointer(S.getFileOffset(),
HintT(this, Index, *IndexGen.StartBit));
// Check for an exact match.
if (V.isData()) {
HashMappedTrieHandle::RecordData D = Trie.getRecord(V);
return D.Proxy.Hash == Hash
? const_pointer(D.getFileOffset(), D.Proxy)
: const_pointer(S.getFileOffset(),
HintT(this, Index, *IndexGen.StartBit));
}
Index = IndexGen.next();
S = SubtrieHandle(Trie.getRegion(), V);
}
}
/// Only safe if the subtrie is empty.
void SubtrieHandle::reinitialize(uint32_t StartBit, uint32_t NumBits) {
assert(StartBit > H->StartBit);
assert(NumBits <= H->NumBits);
// Ideally would also assert that all slots are empty, but that's expensive.
H->StartBit = StartBit;
H->NumBits = NumBits;
}
OnDiskHashMappedTrie::pointer
OnDiskHashMappedTrie::insertLazy(const_pointer Hint, ArrayRef<uint8_t> Hash,
LazyInsertOnConstructCB OnConstruct,
LazyInsertOnLeakCB OnLeak) {
HashMappedTrieHandle Trie = Impl->Trie;
assert(Hash.size() == Trie.getNumHashBytes() && "Invalid hash");
MappedFileRegionBumpPtr &Alloc = Impl->File.getAlloc();
SubtrieHandle S = Trie.getOrCreateRoot(Alloc);
IndexGenerator IndexGen = Trie.getIndexGen(S, Hash);
size_t Index;
if (std::optional<HintT> H = Hint.getHint(*this)) {
S = SubtrieHandle::getFromFileOffset(Trie.getRegion(), Hint.getOffset());
Index = IndexGen.hint(H->I, H->B);
} else {
Index = IndexGen.next();
}
// FIXME: Add non-assertion based checks for data corruption that would
// otherwise cause infinite loops in release builds, instead calling
// report_fatal_error().
//
// Two loops are possible:
// - All bits used up in the IndexGenerator because subtries are somehow
// linked in a cycle. Could confirm that each subtrie's start-bit
// follows from the start-bit and num-bits of its parent. Could also check
// that the generator doesn't run out of bits.
// - Existing data matches tail of Hash but not the head (stored in an
// invalid spot). Probably a cheap way to check this too, but needs
// thought.
std::optional<HashMappedTrieHandle::RecordData> NewRecord;
SubtrieHandle UnusedSubtrie;
for (;;) {
SubtrieSlotValue Existing = S.load(Index);
// Try to set it, if it's empty.
if (!Existing) {
if (!NewRecord) {
NewRecord = Trie.createRecord(Alloc, Hash);
if (OnConstruct)
OnConstruct(NewRecord->Offset.asDataFileOffset(), NewRecord->Proxy);
}
if (S.compare_exchange_strong(Index, Existing, NewRecord->Offset))
return pointer(NewRecord->Offset.asDataFileOffset(), NewRecord->Proxy);
// Race means that Existing is no longer empty; fall through...
}
if (Existing.isSubtrie()) {
S = SubtrieHandle(Trie.getRegion(), Existing);
Index = IndexGen.next();
continue;
}
// Check for an exact match.
HashMappedTrieHandle::RecordData ExistingRecord = Trie.getRecord(Existing);
if (ExistingRecord.Proxy.Hash == Hash) {
if (NewRecord && OnLeak)
OnLeak(NewRecord->Offset.asDataFileOffset(), NewRecord->Proxy,
ExistingRecord.Offset.asDataFileOffset(), ExistingRecord.Proxy);
return pointer(ExistingRecord.Offset.asDataFileOffset(),
ExistingRecord.Proxy);
}
// Sink the existing content as long as the indexes match.
for (;;) {
size_t NextIndex = IndexGen.next();
size_t NewIndexForExistingContent =
IndexGen.getCollidingBits(ExistingRecord.Proxy.Hash);
S = S.sink(Index, Existing, Alloc, IndexGen.getNumBits(), UnusedSubtrie,
NewIndexForExistingContent);
Index = NextIndex;
// Found the difference.
if (NextIndex != NewIndexForExistingContent)
break;
}
}
}
SubtrieHandle SubtrieHandle::sink(size_t I, SubtrieSlotValue V,
MappedFileRegionBumpPtr &Alloc,
size_t NumSubtrieBits,
SubtrieHandle &UnusedSubtrie, size_t NewI) {
SubtrieHandle NewS;
if (UnusedSubtrie) {
// Steal UnusedSubtrie and initialize it.
std::swap(NewS, UnusedSubtrie);
NewS.reinitialize(getStartBit() + getNumBits(), NumSubtrieBits);
} else {
// Allocate a new, empty subtrie.
NewS = SubtrieHandle::create(Alloc, getStartBit() + getNumBits(),
NumSubtrieBits);
}
NewS.store(NewI, V);
if (compare_exchange_strong(I, V, NewS.getOffset()))
return NewS; // Success!
// Raced.
assert(V.isSubtrie() && "Expected racing sink() to add a subtrie");
// Wipe out the new slot so NewS can be reused and set the out parameter.
NewS.store(NewI, SubtrieSlotValue());
UnusedSubtrie = NewS;
// Return the subtrie added by the concurrent sink() call.
return SubtrieHandle(Alloc.getRegion(), V);
}
void OnDiskHashMappedTrie::print(
raw_ostream &OS, function_ref<void(ArrayRef<char>)> PrintRecordData) const {
Impl->Trie.print(OS, PrintRecordData);
}
static void printHexDigit(raw_ostream &OS, uint8_t Digit) {
if (Digit < 10)
OS << char(Digit + '0');
else
OS << char(Digit - 10 + 'a');
}
static void printHexDigits(raw_ostream &OS, ArrayRef<uint8_t> Bytes,
size_t StartBit, size_t NumBits) {
assert(StartBit % 4 == 0);
assert(NumBits % 4 == 0);
for (size_t I = StartBit, E = StartBit + NumBits; I != E; I += 4) {
uint8_t HexPair = Bytes[I / 8];
uint8_t HexDigit = I % 8 == 0 ? HexPair >> 4 : HexPair & 0xf;
printHexDigit(OS, HexDigit);
}
}
void HashMappedTrieHandle::print(
raw_ostream &OS, function_ref<void(ArrayRef<char>)> PrintRecordData) const {
OS << "hash-num-bits=" << getNumHashBits()
<< " hash-size=" << getNumHashBytes()
<< " record-data-size=" << getRecordDataSize() << "\n";
SubtrieHandle Root = getRoot();
SmallVector<int64_t> Records;
if (Root)
Root.print(OS, *this, Records);
if (Records.empty())
return;
llvm::sort(Records);
OS << "records\n";
for (int64_t Offset : Records) {
OS << "- addr=" << (void *)Offset << " ";
HashMappedTrieHandle Trie = *this;
HashMappedTrieHandle::RecordData Record =
Trie.getRecord(SubtrieSlotValue::getDataOffset(Offset));
if (PrintRecordData) {
PrintRecordData(Record.Proxy.Data);
} else {
OS << "bytes=";
ArrayRef<uint8_t> Data(
reinterpret_cast<const uint8_t *>(Record.Proxy.Data.data()),
Record.Proxy.Data.size());
printHexDigits(OS, Data, 0, Data.size() * 8);
}
OS << "\n";
}
}
static void printBits(raw_ostream &OS, ArrayRef<uint8_t> Bytes, size_t StartBit,
size_t NumBits) {
assert(StartBit + NumBits <= Bytes.size() * 8u);
for (size_t I = StartBit, E = StartBit + NumBits; I != E; ++I) {
uint8_t Byte = Bytes[I / 8];
size_t ByteOffset = I % 8;
if (size_t ByteShift = 8 - ByteOffset - 1)
Byte >>= ByteShift;
OS << (Byte & 0x1 ? '1' : '0');
}
}
void SubtrieHandle::printHash(raw_ostream &OS, ArrayRef<uint8_t> Bytes) const {
// afb[1c:00*01110*0]def
size_t EndBit = getStartBit() + getNumBits();
size_t HashEndBit = Bytes.size() * 8u;
size_t FirstBinaryBit = getStartBit() & ~0x3u;
printHexDigits(OS, Bytes, 0, FirstBinaryBit);
size_t LastBinaryBit = (EndBit + 3u) & ~0x3u;
OS << "[";
printBits(OS, Bytes, FirstBinaryBit, LastBinaryBit - FirstBinaryBit);
OS << "]";
printHexDigits(OS, Bytes, LastBinaryBit, HashEndBit - LastBinaryBit);
}
static void appendIndexBits(std::string &Prefix, size_t Index,
size_t NumSlots) {
std::string Bits;
for (size_t NumBits = 1u; NumBits < NumSlots; NumBits <<= 1) {
Bits.push_back('0' + (Index & 0x1));
Index >>= 1;
}
for (char Ch : llvm::reverse(Bits))
Prefix += Ch;
}
static void printPrefix(raw_ostream &OS, StringRef Prefix) {
while (Prefix.size() >= 4) {
uint8_t Digit;
bool ErrorParsingBinary = Prefix.take_front(4).getAsInteger(2, Digit);
assert(!ErrorParsingBinary);
(void)ErrorParsingBinary;
printHexDigit(OS, Digit);
Prefix = Prefix.drop_front(4);
}
if (!Prefix.empty())
OS << "[" << Prefix << "]";
}
void SubtrieHandle::print(raw_ostream &OS, HashMappedTrieHandle Trie,
SmallVectorImpl<int64_t> &Records,
std::optional<std::string> Prefix) const {
if (!Prefix) {
OS << "root";
Prefix.emplace();
} else {
OS << "subtrie=";
printPrefix(OS, *Prefix);
}
OS << " addr="
<< (void *)(reinterpret_cast<const char *>(H) - Region->data());
const size_t NumSlots = Slots.size();
OS << " num-slots=" << NumSlots << "\n";
SmallVector<SubtrieHandle> Subs;
SmallVector<std::string> Prefixes;
for (size_t I = 0, E = NumSlots; I != E; ++I) {
SubtrieSlotValue Slot = load(I);
if (!Slot)
continue;
OS << "- index=";
for (size_t Pad : {10, 100, 1000})
if (I < Pad && NumSlots >= Pad)
OS << "0";
OS << I << " ";
if (Slot.isSubtrie()) {
SubtrieHandle S(*Region, Slot);
std::string SubtriePrefix = *Prefix;
appendIndexBits(SubtriePrefix, I, NumSlots);
OS << "addr=" << (void *)Slot.asSubtrie();
OS << " subtrie=";
printPrefix(OS, SubtriePrefix);
OS << "\n";
Subs.push_back(S);
Prefixes.push_back(SubtriePrefix);
continue;
}
Records.push_back(Slot.asData());
HashMappedTrieHandle::RecordData Record = Trie.getRecord(Slot);
OS << "addr=" << (void *)Record.getFileOffset().get();
OS << " content=";
printHash(OS, Record.Proxy.Hash);
OS << "\n";
}
for (size_t I = 0, E = Subs.size(); I != E; ++I)
Subs[I].print(OS, Trie, Records, Prefixes[I]);
}
LLVM_DUMP_METHOD void OnDiskHashMappedTrie::dump() const { print(dbgs()); }
static Error createTableConfigError(std::errc ErrC, StringRef Path,
StringRef TableName, const Twine &Msg) {
return createStringError(make_error_code(ErrC),
Path + "[" + TableName + "]: " + Msg);
}
static Expected<size_t> checkParameter(StringRef Label, size_t Max,
std::optional<size_t> Value,
std::optional<size_t> Default,
StringRef Path, StringRef TableName) {
assert(Value || Default);
assert(!Default || *Default <= Max);
if (!Value)
return *Default;
if (*Value <= Max)
return *Value;
return createTableConfigError(
std::errc::argument_out_of_domain, Path, TableName,
"invalid " + Label + ": " + Twine(*Value) + " (max: " + Twine(Max) + ")");
}
static Error checkTable(StringRef Label, size_t Expected, size_t Observed,
StringRef Path, StringRef TrieName) {
if (Expected == Observed)
return Error::success();
return createTableConfigError(std::errc::invalid_argument, Path, TrieName,
"mismatched " + Label +
" (expected: " + Twine(Expected) +
", observed: " + Twine(Observed) + ")");
}
size_t OnDiskHashMappedTrie::size() const { return Impl->File.size(); }
Expected<OnDiskHashMappedTrie>
OnDiskHashMappedTrie::create(const Twine &PathTwine, const Twine &TrieNameTwine,
size_t NumHashBits, uint64_t DataSize,
uint64_t MaxFileSize,
std::optional<uint64_t> NewFileInitialSize,
std::optional<size_t> NewTableNumRootBits,
std::optional<size_t> NewTableNumSubtrieBits) {
SmallString<128> PathStorage;
StringRef Path = PathTwine.toStringRef(PathStorage);
SmallString<128> TrieNameStorage;
StringRef TrieName = TrieNameTwine.toStringRef(TrieNameStorage);
constexpr size_t DefaultNumRootBits = 10;
constexpr size_t DefaultNumSubtrieBits = 6;
size_t NumRootBits;
if (Error E = checkParameter(
"root bits", HashMappedTrieHandle::MaxNumRootBits,
NewTableNumRootBits, DefaultNumRootBits, Path, TrieName)
.moveInto(NumRootBits))
return std::move(E);
size_t NumSubtrieBits;
if (Error E = checkParameter("subtrie bits",
HashMappedTrieHandle::MaxNumSubtrieBits,
NewTableNumSubtrieBits, DefaultNumSubtrieBits,
Path, TrieName)
.moveInto(NumSubtrieBits))
return std::move(E);
size_t NumHashBytes = NumHashBits >> 3;
if (Error E =
checkParameter("hash size", HashMappedTrieHandle::MaxNumHashBits,
NumHashBits, std::nullopt, Path, TrieName)
.takeError())
return std::move(E);
assert(NumHashBits == NumHashBytes << 3 &&
"Expected hash size to be byte-aligned");
if (NumHashBits != NumHashBytes << 3)
return createTableConfigError(
std::errc::argument_out_of_domain, Path, TrieName,
"invalid hash size: " + Twine(NumHashBits) + " (not byte-aligned)");
// Constructor for if the file doesn't exist.
auto NewDBConstructor = [&](DatabaseFile &DB) -> Error {
HashMappedTrieHandle Trie =
HashMappedTrieHandle::create(DB.getAlloc(), TrieName, NumRootBits,
NumSubtrieBits, NumHashBits, DataSize);
DB.addTable(Trie);
return Error::success();
};
// Get or create the file.
Expected<DatabaseFile> File =
DatabaseFile::create(Path, MaxFileSize, NewDBConstructor);
if (!File)
return File.takeError();
// Find the trie and validate it.
//
// TODO: Add support for creating/adding a table to an existing file.
std::optional<TableHandle> Table = File->findTable(TrieName);
if (!Table)
return createTableConfigError(std::errc::argument_out_of_domain, Path,
TrieName, "table not found");
if (Error E = checkTable("table kind", (size_t)HashMappedTrieHandle::Kind,
(size_t)Table->getHeader().Kind, Path, TrieName))
return std::move(E);
auto Trie = Table->cast<HashMappedTrieHandle>();
assert(Trie && "Already checked the kind");
// Check the hash and data size.
if (Error E = checkTable("hash size", NumHashBits, Trie.getNumHashBits(),
Path, TrieName))
return std::move(E);
if (Error E = checkTable("data size", DataSize, Trie.getRecordDataSize(),
Path, TrieName))
return std::move(E);
// No flags supported right now. Either corrupt, or coming from a future
// writer.
if (size_t Flags = Trie.getFlags())
return createTableConfigError(std::errc::invalid_argument, Path, TrieName,
"unsupported flags: " + Twine(Flags));
// Success.
OnDiskHashMappedTrie::ImplType Impl{DatabaseFile(std::move(*File)), Trie};
return OnDiskHashMappedTrie(std::make_unique<ImplType>(std::move(Impl)));
}
//===----------------------------------------------------------------------===//
// DataAllocator data structures.
//===----------------------------------------------------------------------===//
namespace {
/// DataAllocator table layout:
/// - [8-bytes: Generic table header]
/// - 8-bytes: AllocatorOffset (reserved for implementing free lists)
/// - 8-bytes: Size for user data header
/// - <user data buffer>
///
/// Record layout:
/// - <data>
class DataAllocatorHandle {
public:
static constexpr TableHandle::TableKind Kind =
TableHandle::TableKind::DataAllocator;
struct Header {
TableHandle::Header GenericHeader;
std::atomic<int64_t> AllocatorOffset;
const uint64_t UserHeaderSize;
};
operator TableHandle() const {
if (!H)
return TableHandle();
return TableHandle(*Region, H->GenericHeader);
}
MutableArrayRef<char> allocate(MappedFileRegionBumpPtr &Alloc,
size_t DataSize) {
assert(&Alloc.getRegion() == Region);
return MutableArrayRef(Alloc.allocate(DataSize), DataSize);
}
explicit operator bool() const { return H; }
const Header &getHeader() const { return *H; }
MappedFileRegion &getRegion() const { return *Region; }
MutableArrayRef<uint8_t> getUserHeader() {
return MutableArrayRef(reinterpret_cast<uint8_t *>(H + 1),
H->UserHeaderSize);
}
static DataAllocatorHandle create(MappedFileRegionBumpPtr &Alloc,
StringRef Name, uint32_t UserHeaderSize);
DataAllocatorHandle() = default;
DataAllocatorHandle(MappedFileRegion &Region, Header &H)
: Region(&Region), H(&H) {}
DataAllocatorHandle(MappedFileRegion &Region, intptr_t HeaderOffset)
: DataAllocatorHandle(
Region, *reinterpret_cast<Header *>(Region.data() + HeaderOffset)) {
}
private:
MappedFileRegion *Region = nullptr;
Header *H = nullptr;
};
} // end anonymous namespace
struct OnDiskDataAllocator::ImplType {
DatabaseFile File;
DataAllocatorHandle Store;
};
DataAllocatorHandle DataAllocatorHandle::create(MappedFileRegionBumpPtr &Alloc,
StringRef Name,
uint32_t UserHeaderSize) {
// Allocate.
intptr_t Offset =
Alloc.allocateOffset(sizeof(Header) + UserHeaderSize + Name.size() + 1);
// Construct the header and the name.
assert(Name.size() <= UINT16_MAX && "Expected smaller table name");
auto *H = new (Alloc.getRegion().data() + Offset)
Header{{TableHandle::TableKind::DataAllocator, (uint16_t)Name.size(),
(int32_t)(sizeof(Header) + UserHeaderSize)},
/*AllocatorOffset=*/{0},
/*UserHeaderSize=*/UserHeaderSize};
memset(H + 1, 0, UserHeaderSize);
char *NameStorage = reinterpret_cast<char *>(H + 1) + UserHeaderSize;
llvm::copy(Name, NameStorage);
NameStorage[Name.size()] = 0;
return DataAllocatorHandle(Alloc.getRegion(), *H);
}
Expected<OnDiskDataAllocator> OnDiskDataAllocator::create(
const Twine &PathTwine, const Twine &TableNameTwine, uint64_t MaxFileSize,
std::optional<uint64_t> NewFileInitialSize, uint32_t UserHeaderSize,
function_ref<void(void *)> UserHeaderInit) {
assert(!UserHeaderSize || UserHeaderInit);
SmallString<128> PathStorage;
StringRef Path = PathTwine.toStringRef(PathStorage);
SmallString<128> TableNameStorage;
StringRef TableName = TableNameTwine.toStringRef(TableNameStorage);
// Constructor for if the file doesn't exist.
auto NewDBConstructor = [&](DatabaseFile &DB) -> Error {
DataAllocatorHandle Store =
DataAllocatorHandle::create(DB.getAlloc(), TableName, UserHeaderSize);
DB.addTable(Store);
if (UserHeaderSize)
UserHeaderInit(Store.getUserHeader().data());
return Error::success();
};
// Get or create the file.
Expected<DatabaseFile> File =
DatabaseFile::create(Path, MaxFileSize, NewDBConstructor);
if (!File)
return File.takeError();
// Find the table and validate it.
//
// TODO: Add support for creating/adding a table to an existing file.
std::optional<TableHandle> Table = File->findTable(TableName);
if (!Table)
return createTableConfigError(std::errc::argument_out_of_domain, Path,
TableName, "table not found");
if (Error E = checkTable("table kind", (size_t)DataAllocatorHandle::Kind,
(size_t)Table->getHeader().Kind, Path, TableName))
return std::move(E);
auto Store = Table->cast<DataAllocatorHandle>();
assert(Store && "Already checked the kind");
// Success.
OnDiskDataAllocator::ImplType Impl{DatabaseFile(std::move(*File)), Store};
return OnDiskDataAllocator(std::make_unique<ImplType>(std::move(Impl)));
}
OnDiskDataAllocator::pointer OnDiskDataAllocator::allocate(size_t Size) {
MutableArrayRef<char> Data =
Impl->Store.allocate(Impl->File.getAlloc(), Size);
return pointer(FileOffset(Data.data() - Impl->Store.getRegion().data()),
Data);
}
const char *OnDiskDataAllocator::beginData(FileOffset Offset) const {
assert(Offset);
assert(Impl);
assert(Offset.get() < (int64_t)Impl->File.getAlloc().size());
return Impl->File.getRegion().data() + Offset.get();
}
MutableArrayRef<uint8_t> OnDiskDataAllocator::getUserHeader() {
return Impl->Store.getUserHeader();
}
size_t OnDiskDataAllocator::size() const { return Impl->File.size(); }
OnDiskDataAllocator::OnDiskDataAllocator(std::unique_ptr<ImplType> Impl)
: Impl(std::move(Impl)) {}
#else // !LLVM_ENABLE_ONDISK_CAS
struct OnDiskHashMappedTrie::ImplType {};
Expected<OnDiskHashMappedTrie>
OnDiskHashMappedTrie::create(const Twine &PathTwine, const Twine &TrieNameTwine,
size_t NumHashBits, uint64_t DataSize,
uint64_t MaxFileSize,
std::optional<uint64_t> NewFileInitialSize,
std::optional<size_t> NewTableNumRootBits,
std::optional<size_t> NewTableNumSubtrieBits) {
report_fatal_error("not supported");
}
OnDiskHashMappedTrie::pointer
OnDiskHashMappedTrie::insertLazy(const_pointer Hint, ArrayRef<uint8_t> Hash,
LazyInsertOnConstructCB OnConstruct,
LazyInsertOnLeakCB OnLeak) {
report_fatal_error("not supported");
}
OnDiskHashMappedTrie::const_pointer
OnDiskHashMappedTrie::recoverFromFileOffset(FileOffset Offset) const {
report_fatal_error("not supported");
}
OnDiskHashMappedTrie::const_pointer
OnDiskHashMappedTrie::find(ArrayRef<uint8_t> Hash) const {
report_fatal_error("not supported");
}
void OnDiskHashMappedTrie::print(
raw_ostream &OS, function_ref<void(ArrayRef<char>)> PrintRecordData) const {
report_fatal_error("not supported");
}
size_t OnDiskHashMappedTrie::size() const {
report_fatal_error("not supported");
}
struct OnDiskDataAllocator::ImplType {};
Expected<OnDiskDataAllocator> OnDiskDataAllocator::create(
const Twine &Path, const Twine &TableName, uint64_t MaxFileSize,
std::optional<uint64_t> NewFileInitialSize, uint32_t UserHeaderSize,
function_ref<void(void *)> UserHeaderInit) {
report_fatal_error("not supported");
}
OnDiskDataAllocator::pointer OnDiskDataAllocator::allocate(size_t Size) {
report_fatal_error("not supported");
}
const char *OnDiskDataAllocator::beginData(FileOffset Offset) const {
report_fatal_error("not supported");
}
MutableArrayRef<uint8_t> OnDiskDataAllocator::getUserHeader() {
report_fatal_error("not supported");
}
size_t OnDiskDataAllocator::size() const {
report_fatal_error("not supported");
}
#endif // LLVM_ENABLE_ONDISK_CAS
OnDiskHashMappedTrie::OnDiskHashMappedTrie(std::unique_ptr<ImplType> Impl)
: Impl(std::move(Impl)) {}
OnDiskHashMappedTrie::OnDiskHashMappedTrie(OnDiskHashMappedTrie &&RHS) =
default;
OnDiskHashMappedTrie &
OnDiskHashMappedTrie::operator=(OnDiskHashMappedTrie &&RHS) = default;
OnDiskHashMappedTrie::~OnDiskHashMappedTrie() = default;
OnDiskDataAllocator::OnDiskDataAllocator(OnDiskDataAllocator &&RHS) = default;
OnDiskDataAllocator &
OnDiskDataAllocator::operator=(OnDiskDataAllocator &&RHS) = default;
OnDiskDataAllocator::~OnDiskDataAllocator() = default;
|