Spaces:
Sleeping
Sleeping
File size: 24,144 Bytes
01e6679 | 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 | import { bg4_split_bytes, XET_CHUNK_HEADER_BYTES, XetChunkCompressionScheme } from "./XetBlob";
import { compress as lz4_compress } from "../vendor/lz4js";
import { ChunkCache } from "./ChunkCache";
import { xetWriteToken, type XetWriteTokenParams } from "./xetWriteToken";
import type { ShardData } from "./shardParser";
import { parseShardData } from "./shardParser";
import { SplicedBlob } from "./SplicedBlob";
const TARGET_CHUNK_SIZE = 64 * 1024;
/* eslint-disable @typescript-eslint/no-unused-vars */
const MAX_CHUNK_SIZE = 2 * TARGET_CHUNK_SIZE;
const XORB_SIZE = 64 * 1024 * 1024;
const MAX_XORB_CHUNKS = 8 * 1024;
const INTERVAL_BETWEEN_REMOTE_DEDUP = 4_000_000; // 4MB
/**
* 0 = only show progress when uploading the xorb
* 1 = only show progress when processing the file
* 0.5 = show progress when uploading the xorb and when processing the file
*/
const PROCESSING_PROGRESS_RATIO = 0.1;
const UPLOADING_PROGRESS_RATIO = 1 - PROCESSING_PROGRESS_RATIO;
interface XorbEvent {
event: "xorb";
xorb: Uint8Array;
hash: string;
id: number;
chunks: Array<{ hash: string; length: number }>;
files: Array<{
path: string;
progress: number;
lastSentProgress: number;
}>;
}
export class CurrentXorbInfo {
id: number;
offset: number;
chunks: Array<{ hash: string; length: number; offset: number }>;
fileProcessedBytes: Record<string, number>;
fileUploadedBytes: Record<string, number>;
fileSize: Record<string, number>;
data: Uint8Array;
immutableData: {
chunkIndex: number;
offset: number;
} | null;
constructor() {
this.id = 0;
this.offset = 0;
this.chunks = [];
this.fileProcessedBytes = {};
this.fileUploadedBytes = {};
this.fileSize = {};
this.data = new Uint8Array(XORB_SIZE);
this.immutableData = null;
}
event(computeXorbHash: (chunks: { hash: string; length: number }[]) => string): XorbEvent {
const xorbChunksCleaned = this.chunks.map((chunk) => ({
hash: chunk.hash,
length: chunk.length,
}));
return {
event: "xorb" as const,
xorb: this.data.subarray(0, this.offset),
hash: computeXorbHash(xorbChunksCleaned),
chunks: xorbChunksCleaned,
id: this.id,
files: Object.entries(this.fileProcessedBytes).map(([path, processedBytes]) => ({
path,
progress: processedBytes / this.fileSize[path],
lastSentProgress:
((this.fileUploadedBytes[path] ?? 0) +
(processedBytes - (this.fileUploadedBytes[path] ?? 0)) * PROCESSING_PROGRESS_RATIO) /
this.fileSize[path],
})),
};
}
}
export async function* createXorbs(
fileSources: AsyncGenerator<{ content: Blob; path: string; sha256?: string }>,
params: XetWriteTokenParams & {
yieldCallback?: (event: { event: "fileProgress"; path: string; progress: number }) => void;
},
): AsyncGenerator<
| XorbEvent
| {
event: "file";
path: string;
hash: string;
sha256?: string;
/** Percentage of file bytes that were deduplicated (0-1) */
dedupRatio: number;
representation: Array<{
xorbId: number | string; // either xorb id (for local xorbs) or xorb hash (for remote xorbs)
indexStart: number;
indexEnd: number;
/** Unpacked length */
length: number;
rangeHash: string;
}>;
},
void,
undefined
> {
const alreadyDoneFileSha256s: Set<string> = new Set();
const chunkModule = await import("../vendor/xet-chunk/chunker_wasm");
let xorbId = 0;
await chunkModule.init();
const chunkCache = new ChunkCache();
let xorb = new CurrentXorbInfo();
const nextXorb = (currentFile: { path: string; uploadedBytes: number; size: number }): XorbEvent => {
const event = xorb.event(chunkModule.compute_xorb_hash.bind(chunkModule));
xorbId++;
xorb = new CurrentXorbInfo();
xorb.id = xorbId;
xorb.fileUploadedBytes = {
[currentFile.path]: currentFile.uploadedBytes,
};
xorb.fileSize[currentFile.path] = currentFile.size;
return event;
};
const pendingFileEvents: Array<{
event: "file";
path: string;
hash: string;
dedupRatio: number;
sha256?: string;
representation: Array<{
xorbId: number | string;
indexStart: number;
indexEnd: number;
length: number;
rangeHash: string;
}>;
}> = [];
const remoteXorbHashes: string[] = [""]; // starts at index 1 (to simplify implem a bit)
for await (const fileSource of fileSources) {
params.yieldCallback?.({
event: "fileProgress",
path: fileSource.path,
progress: 0,
});
if (fileSource.sha256 && alreadyDoneFileSha256s.has(fileSource.sha256)) {
params.yieldCallback?.({
event: "fileProgress",
path: fileSource.path,
progress: 1,
});
continue;
}
if (fileSource.sha256) {
alreadyDoneFileSha256s.add(fileSource.sha256);
}
const chunker = new chunkModule.Chunker(TARGET_CHUNK_SIZE);
try {
xorb.fileSize[fileSource.path] = fileSource.content.size;
// Load dedup info for the first chunk of the file, if it's potentially modified by the splice
if (fileSource.content instanceof SplicedBlob && fileSource.content.firstSpliceIndex < MAX_CHUNK_SIZE) {
await loadDedupInfoToCache(
fileSource.content.originalBlob.slice(0, MAX_CHUNK_SIZE),
remoteXorbHashes,
params,
chunkCache,
chunkModule,
{
maxChunks: 1,
isAtBeginning: true,
},
);
}
let bytesSinceRemoteDedup = Infinity;
let bytesSinceLastProgressEvent = 0;
let isFirstFileChunk = true;
const sourceChunks: Array<Uint8Array> = [];
const reader = fileSource.content.stream().getReader();
let processedBytes = 0;
let dedupedBytes = 0; // Track bytes that were deduplicated
// Needed to compute the final file hash
// todo: have the wasm function to compute file hash be able to take data chunk by chunk instead of all at once
const fileChunks: Array<{ hash: string; length: number }> = [];
// Collect chunk metadata to build representation at the end
// todo: build partial representation at the end of each xorb, to avoid having to store all chunks in memory
const chunkMetadata: Array<{
xorbId: number | string;
chunkIndex: number;
length: number;
}> = [];
const addChunks = async function* (chunks: Array<{ hash: string; length: number; dedup: boolean }>) {
for (const chunk of chunks) {
if (isFirstFileChunk) {
chunk.dedup = true;
isFirstFileChunk = false;
}
let chunkIndex = xorb.chunks.length;
let chunkXorbId = xorbId;
// Remove chunks from source data
const chunkToCopy = removeChunkFromSourceData(sourceChunks, chunk.length);
let cacheData = chunkCache.getChunk(chunk.hash, chunkModule.compute_hmac);
if (cacheData === undefined && chunk.dedup && bytesSinceRemoteDedup >= INTERVAL_BETWEEN_REMOTE_DEDUP) {
const token = await xetWriteToken(params);
bytesSinceRemoteDedup = 0;
const shardResp = await (params.fetch ?? fetch)(token.casUrl + "/v1/chunks/default/" + chunk.hash, {
headers: {
Authorization: `Bearer ${token.accessToken}`,
},
});
// todo: handle non-404 non-429 errors, eg throw error
if (shardResp.ok) {
const shard = await shardResp.blob();
const shardData = await parseShardData(shard);
for (const xorb of shardData.xorbs) {
const remoteXorbId = -remoteXorbHashes.length;
remoteXorbHashes.push(xorb.hash);
let i = 0;
for (const chunk of xorb.chunks) {
chunkCache.addChunkToCache(chunk.hash, remoteXorbId, i++, shardData.hmacKey);
}
}
cacheData = chunkCache.getChunk(chunk.hash, chunkModule.compute_hmac);
// We backtrack a bit to check if new dedup info contains older chunks
const oldDedupedBytes = dedupedBytes;
dedupedBytes = backtrackDedup(
xorb,
chunkModule.compute_hmac.bind(chunkModule),
shardData,
chunkCache,
chunkMetadata,
dedupedBytes,
);
if (dedupedBytes > oldDedupedBytes) {
xorb.fileUploadedBytes[fileSource.path] ??= 0;
xorb.fileUploadedBytes[fileSource.path] += dedupedBytes - oldDedupedBytes;
}
}
}
if (cacheData === undefined) {
if (!writeChunk(xorb, chunkToCopy, chunk.hash)) {
// Failure to write chunk, maybe because it went over xorb size limit
yield nextXorb({ path: fileSource.path, uploadedBytes: processedBytes, size: fileSource.content.size });
chunkIndex = 0;
chunkXorbId = xorbId;
for (const event of pendingFileEvents) {
event.representation = event.representation.map((rep) => ({
...rep,
xorbId: (rep.xorbId as number) >= 0 ? rep.xorbId : remoteXorbHashes[-rep.xorbId],
}));
yield event;
}
pendingFileEvents.length = 0;
if (!writeChunk(xorb, chunkToCopy, chunk.hash)) {
throw new Error("Failed to write chunk into xorb");
}
}
chunkCache.addChunkToCache(chunk.hash, xorbId, chunkIndex, null);
} else {
chunkXorbId = cacheData.xorbIndex;
chunkIndex = cacheData.chunkIndex;
dedupedBytes += chunk.length; // Track deduplicated bytes
xorb.fileUploadedBytes[fileSource.path] ??= 0;
xorb.fileUploadedBytes[fileSource.path] += chunk.length;
}
bytesSinceRemoteDedup += chunk.length;
bytesSinceLastProgressEvent += chunk.length;
// Collect metadata for building representation at the end
fileChunks.push({ hash: chunk.hash, length: chunk.length });
chunkMetadata.push({
xorbId: chunkXorbId,
chunkIndex: chunkIndex,
length: chunk.length,
});
xorb.fileProcessedBytes[fileSource.path] = processedBytes;
if (bytesSinceLastProgressEvent >= 1_000_000) {
// Emit half of the progress when processed locally, other half when uploading the xorb
bytesSinceLastProgressEvent = 0;
params.yieldCallback?.({
event: "fileProgress",
path: fileSource.path,
progress:
((xorb.fileUploadedBytes[fileSource.path] ?? 0) +
(xorb.fileProcessedBytes[fileSource.path] - (xorb.fileUploadedBytes[fileSource.path] ?? 0)) *
PROCESSING_PROGRESS_RATIO) /
fileSource.content.size,
});
}
if (xorb.chunks.length >= MAX_XORB_CHUNKS) {
yield nextXorb({ path: fileSource.path, uploadedBytes: processedBytes, size: fileSource.content.size });
for (const event of pendingFileEvents) {
event.representation = event.representation.map((rep) => ({
...rep,
xorbId: (rep.xorbId as number) >= 0 ? rep.xorbId : remoteXorbHashes[-rep.xorbId],
}));
yield event;
}
pendingFileEvents.length = 0;
}
}
};
while (true) {
const { done, value } = await reader.read();
if (done) {
yield* addChunks(chunker.finish());
break;
}
processedBytes += value.length;
sourceChunks.push(value);
yield* addChunks(chunker.add_data(value));
}
const fileRepresentation = buildFileRepresentation(
chunkMetadata,
fileChunks,
chunkModule.compute_verification_hash.bind(chunkModule),
);
xorb.immutableData = {
chunkIndex: xorb.chunks.length,
offset: xorb.offset,
};
const dedupRatio = fileSource.content.size > 0 ? dedupedBytes / fileSource.content.size : 0;
pendingFileEvents.push({
event: "file" as const,
path: fileSource.path,
hash: chunkModule.compute_file_hash(fileChunks),
sha256: fileSource.sha256,
dedupRatio,
representation: fileRepresentation,
});
} finally {
chunker.free();
// ^ is this really needed ?
}
}
if (xorb.offset > 0) {
yield xorb.event(chunkModule.compute_xorb_hash.bind(chunkModule));
}
for (const event of pendingFileEvents) {
event.representation = event.representation.map((rep) => ({
...rep,
xorbId: (rep.xorbId as number) >= 0 ? rep.xorbId : remoteXorbHashes[-rep.xorbId],
}));
yield event;
}
}
export function backtrackDedup(
xorb: CurrentXorbInfo,
computeHmac: (hash: string, key: string) => string,
shardData: ShardData,
chunkCache: ChunkCache,
chunkMetadata: { xorbId: number | string; chunkIndex: number; length: number }[],
dedupedBytes: number,
): number {
const chunkIndexesToBacktrackFor = new Map<number, { xorbId: number; chunkIndex: number }>();
for (
let chunkToRecheckIndex = xorb.immutableData?.chunkIndex ?? 0;
chunkToRecheckIndex < xorb.chunks.length;
chunkToRecheckIndex++
) {
const chunk = xorb.chunks[chunkToRecheckIndex];
const hmacHash = computeHmac(chunk.hash, shardData.hmacKey);
const cacheData = chunkCache.getChunk(hmacHash, null);
if (cacheData !== undefined) {
chunkIndexesToBacktrackFor.set(chunkToRecheckIndex, {
xorbId: cacheData.xorbIndex,
chunkIndex: cacheData.chunkIndex,
});
chunkCache.removeChunkFromCache(chunk.hash);
}
}
// Use remote dedup info to update chunk metadata for file representation
for (const metadata of chunkMetadata) {
if (metadata.xorbId === xorb.id && chunkIndexesToBacktrackFor.has(metadata.chunkIndex)) {
const backtrackData = chunkIndexesToBacktrackFor.get(metadata.chunkIndex);
if (backtrackData !== undefined) {
metadata.xorbId = backtrackData.xorbId;
metadata.chunkIndex = backtrackData.chunkIndex;
dedupedBytes += metadata.length;
}
}
}
// Remove chunks that were backtracked from xorbChunks
const xorbRangesToErase: Array<{ start: number; end: number }> = [];
for (let i = 0; i < xorb.chunks.length; i++) {
const chunk = xorb.chunks[i];
if (chunkIndexesToBacktrackFor.has(i)) {
xorbRangesToErase.push({
start: chunk.offset,
end: i < xorb.chunks.length - 1 ? xorb.chunks[i + 1].offset : xorb.offset,
});
}
}
const xorbRangesToKeep: Array<{ start: number; end: number }> = [];
let currentStart = 0;
for (let i = 0; i < xorbRangesToErase.length; i++) {
const range = xorbRangesToErase[i];
if (currentStart !== range.start) {
xorbRangesToKeep.push({ start: currentStart, end: range.start });
}
currentStart = range.end;
}
if (currentStart !== xorb.offset) {
xorbRangesToKeep.push({ start: currentStart, end: xorb.offset });
}
let currentOffset = 0;
for (const range of xorbRangesToKeep) {
if (range.start !== currentOffset) {
xorb.data.set(xorb.data.subarray(range.start, range.end), currentOffset);
}
currentOffset += range.end - range.start;
}
const newXorbChunks: Array<{ hash: string; length: number; offset: number }> = [];
const oldIndexToNewIndex = new Map<number, number>();
let erasedOffset = 0;
for (let i = 0; i < xorb.chunks.length; i++) {
const chunk = xorb.chunks[i];
if (chunkIndexesToBacktrackFor.has(i)) {
if (i < xorb.chunks.length - 1) {
erasedOffset += xorb.chunks[i + 1].offset - chunk.offset;
}
} else {
newXorbChunks.push({
hash: chunk.hash,
length: chunk.length,
offset: chunk.offset - erasedOffset,
});
// Only need a mapping if index changed (at least one previous chunk was erased)
if (erasedOffset > 0) {
oldIndexToNewIndex.set(i, newXorbChunks.length - 1);
}
}
}
xorb.chunks = newXorbChunks;
xorb.offset = currentOffset;
// Update chunkMetadata and chunkCache with new chunk indexes for the current xorb chunks
for (const chunk of chunkMetadata) {
if (chunk.xorbId === xorb.id) {
const newIndex = oldIndexToNewIndex.get(chunk.chunkIndex);
if (newIndex !== undefined) {
const cached = chunkCache.getChunk(xorb.chunks[newIndex].hash, null);
if (cached !== undefined && cached.xorbIndex === chunk.xorbId && cached.chunkIndex === chunk.chunkIndex) {
chunkCache.updateChunkIndex(xorb.chunks[newIndex].hash, newIndex);
}
chunk.chunkIndex = newIndex;
}
}
}
return dedupedBytes;
}
/**
* Removes and returns a chunk of the specified length from the sourceChunks array.
*/
function removeChunkFromSourceData(sourceChunks: Array<Uint8Array>, chunkLength: number): Uint8Array {
if (chunkLength === sourceChunks[0].length) {
const chunkToCopy = sourceChunks[0];
sourceChunks.shift();
return chunkToCopy;
} else if (chunkLength < sourceChunks[0].length) {
const chunkToCopy = sourceChunks[0].subarray(0, chunkLength);
sourceChunks[0] = sourceChunks[0].subarray(chunkLength);
return chunkToCopy;
} else {
const chunkToCopy = new Uint8Array(chunkLength);
let copyOffset = 0;
let index = 0;
let toSlice = -1;
while (copyOffset < chunkLength) {
const nToCopy = Math.min(sourceChunks[index].length, chunkLength - copyOffset);
chunkToCopy.set(sourceChunks[index].subarray(0, nToCopy), copyOffset);
copyOffset += nToCopy;
if (nToCopy === sourceChunks[index].length) {
index++;
} else {
toSlice = nToCopy;
}
}
sourceChunks.splice(0, index);
if (toSlice !== -1) {
sourceChunks[0] = sourceChunks[0].subarray(toSlice);
}
return chunkToCopy;
}
}
/**
* Write a chunk header to the xorb and return the offset of where to write the next chunk
*
* If it returns 0, it means there wasn't enough space in the xorb
*/
function writeChunk(xorb: CurrentXorbInfo, chunk: Uint8Array, hash: string): boolean {
const regularCompressedChunk = lz4_compress(chunk);
const bgCompressedChunk = lz4_compress(bg4_split_bytes(chunk));
const compressedChunk =
bgCompressedChunk.length < regularCompressedChunk.length ? bgCompressedChunk : regularCompressedChunk;
const chunkToWrite = compressedChunk.length < chunk.length ? compressedChunk : chunk;
if (xorb.offset + XET_CHUNK_HEADER_BYTES + chunkToWrite.length > XORB_SIZE) {
return false;
}
xorb.data[xorb.offset] = 0;
xorb.data[xorb.offset + 1] = chunkToWrite.length & 0xff;
xorb.data[xorb.offset + 2] = (chunkToWrite.length >> 8) & 0xff;
xorb.data[xorb.offset + 3] = (chunkToWrite.length >> 16) & 0xff;
xorb.data[xorb.offset + 4] =
chunkToWrite.length < chunk.length
? bgCompressedChunk.length < regularCompressedChunk.length
? XetChunkCompressionScheme.ByteGroupingLZ4
: XetChunkCompressionScheme.LZ4
: XetChunkCompressionScheme.None;
xorb.data[xorb.offset + 5] = chunk.length & 0xff;
xorb.data[xorb.offset + 6] = (chunk.length >> 8) & 0xff;
xorb.data[xorb.offset + 7] = (chunk.length >> 16) & 0xff;
xorb.data.set(chunkToWrite, xorb.offset + XET_CHUNK_HEADER_BYTES);
xorb.chunks.push({ hash, length: chunk.length, offset: xorb.offset });
xorb.offset += XET_CHUNK_HEADER_BYTES + chunkToWrite.length;
return true;
}
// Build file representation from collected metadata
const buildFileRepresentation = (
metadata: Array<{ xorbId: number | string; chunkIndex: number; length: number }>,
chunks: Array<{ hash: string; length: number }>,
computeVerificationHash: (hashes: string[]) => string,
): Array<{
xorbId: number | string;
indexStart: number;
indexEnd: number;
length: number;
rangeHash: string;
}> => {
if (metadata.length === 0) {
return [];
}
const representation: Array<{
xorbId: number | string;
indexStart: number;
indexEnd: number;
length: number;
rangeHash: string;
}> = [];
let currentRange = {
xorbId: metadata[0].xorbId,
indexStart: metadata[0].chunkIndex,
indexEnd: metadata[0].chunkIndex + 1,
length: metadata[0].length,
chunkHashStart: 0,
};
for (let i = 1; i < metadata.length; i++) {
const chunk = metadata[i];
// Check if this chunk continues the current range
if (currentRange.xorbId === chunk.xorbId && currentRange.indexEnd === chunk.chunkIndex) {
// Extend current range
currentRange.indexEnd = chunk.chunkIndex + 1;
currentRange.length += chunk.length;
} else {
// Finalize current range and start a new one
const rangeHash = computeVerificationHash(chunks.slice(currentRange.chunkHashStart, i).map((x) => x.hash));
representation.push({
xorbId: currentRange.xorbId,
indexStart: currentRange.indexStart,
indexEnd: currentRange.indexEnd,
length: currentRange.length,
rangeHash,
});
currentRange = {
xorbId: chunk.xorbId,
indexStart: chunk.chunkIndex,
indexEnd: chunk.chunkIndex + 1,
length: chunk.length,
chunkHashStart: i,
};
}
}
// Finalize the last range
const rangeHash = computeVerificationHash(chunks.slice(currentRange.chunkHashStart).map((x) => x.hash));
representation.push({
xorbId: currentRange.xorbId,
indexStart: currentRange.indexStart,
indexEnd: currentRange.indexEnd,
length: currentRange.length,
rangeHash,
});
return representation;
};
/**
* Helper to load dedup info for blob contents into cache.
* Processes the blob's contents, chunks it, and loads dedup info into cache without writing to xorb.
*
* For now this is optimized for when the replacement data is at the very beginning of the file
*
* todo: handle when it's not at the beginning of the file by backingtracking xorb contents
* todo: handle when it's not at the beginning of the file by using previous content to chunk at the same boundaries as it would have in the original file
*/
async function loadDedupInfoToCache(
content: Blob,
/** Will be mutated */
remoteXorbHashes: string[],
params: XetWriteTokenParams,
chunkCache: ChunkCache,
// eslint-disable-next-line @typescript-eslint/consistent-type-imports
chunkModule: typeof import("../vendor/xet-chunk/chunker_wasm"),
opts?: {
isAtBeginning?: boolean;
/**
* The end position of the content to process
*
* Will process content up to the end of the chunk after this position
*/
end?: number;
/**
* The maximum number of chunks to process
*
* Will process content up to the end of the chunk after this position
*/
maxChunks?: number;
},
): Promise<void> {
const chunker = new chunkModule.Chunker(TARGET_CHUNK_SIZE);
const cache = chunkCache;
let dedupedBytes = 0;
let chunksProcessed = 0;
let totalBytes = 0;
let bytesSinceRemoteDedup = Infinity;
const sourceChunks: Array<Uint8Array> = [];
try {
const reader = content.stream().getReader();
const processChunks = async (chunkData: Array<{ hash: string; length: number; dedup: boolean }>) => {
for (const chunk of chunkData) {
chunksProcessed++;
if (opts?.isAtBeginning && chunksProcessed === 1) {
chunk.dedup = true;
}
totalBytes += chunk.length;
// Remove chunks from source data
removeChunkFromSourceData(sourceChunks, chunk.length);
// Check if chunk is already in cache
let cacheData = cache.getChunk(chunk.hash, chunkModule.compute_hmac);
// Early return if already cached - no need for remote lookup
if (cacheData !== undefined) {
dedupedBytes += chunk.length;
bytesSinceRemoteDedup += chunk.length;
continue;
}
// Try remote dedup lookup if conditions are met
if (chunk.dedup && bytesSinceRemoteDedup >= INTERVAL_BETWEEN_REMOTE_DEDUP) {
const token = await xetWriteToken(params);
bytesSinceRemoteDedup = 0;
const shardResp = await (params.fetch ?? fetch)(token.casUrl + "/v1/chunks/default/" + chunk.hash, {
headers: {
Authorization: `Bearer ${token.accessToken}`,
},
});
if (shardResp.ok) {
const shard = await shardResp.blob();
const shardData = await parseShardData(shard);
// Load remote dedup info into cache
for (const xorb of shardData.xorbs) {
const remoteXorbId = -remoteXorbHashes.length;
remoteXorbHashes.push(xorb.hash);
let i = 0;
for (const xorbChunk of xorb.chunks) {
cache.addChunkToCache(xorbChunk.hash, remoteXorbId, i++, shardData.hmacKey);
}
}
cacheData = cache.getChunk(chunk.hash, chunkModule.compute_hmac);
}
}
if (cacheData !== undefined) {
// Chunk found in cache after remote lookup - it's deduplicated
dedupedBytes += chunk.length;
}
bytesSinceRemoteDedup += chunk.length;
}
};
// Read and process blob content
while (true) {
if (opts?.end !== undefined && totalBytes >= opts.end) {
break;
}
if (opts?.maxChunks !== undefined && chunksProcessed >= opts.maxChunks) {
break;
}
const { done, value } = await reader.read();
if (done) {
await processChunks(chunker.finish());
break;
}
sourceChunks.push(value);
await processChunks(chunker.add_data(value));
}
} finally {
chunker.free();
}
}
|