@btc-vision/btc-runtime
Version:
Bitcoin Smart Contract Runtime
358 lines (299 loc) • 10.4 kB
text/typescript
import { BytesWriter } from '../../buffer/BytesWriter';
import { Blockchain } from '../../env';
import { Revert } from '../../types/Revert';
import {
addUint8ArraysBE,
bigEndianAdd,
encodeBasePointer,
GET_EMPTY_BUFFER,
getBit,
readLengthAndStartIndex,
setBit,
u64ToBE32Bytes,
} from '../../math/bytes';
/**
* @class StoredBooleanArray
* Manages an array of boolean values across multiple storage slots.
* Each slot is a 32-byte Uint8Array, each containing 256 bits (1 bit per boolean).
*
* For example:
* - slot 0 stores indexes [0..255]
* - slot 1 stores indexes [256..511]
* - ...
*/
export class StoredBooleanArray {
private readonly basePointer: Uint8Array;
private readonly lengthPointer: Uint8Array;
private _values: Map<u64, Uint8Array> = new Map();
private _isChanged: Set<u64> = new Set();
private _length: u64 = 0;
private _startIndex: u64 = 0;
private _isChangedLength: bool = false;
private _isChangedStartIndex: bool = false;
private readonly MAX_LENGTH: u64 = u32.MAX_VALUE;
/**
* @constructor
* @param {u16} pointer - The primary pointer identifier.
* @param {Uint8Array} subPtr - The sub-pointer for memory slot addressing.
*
* The code below treats the first 16 bytes of `lengthPointer` as storing [length, startIndex].
*/
constructor(
public pointer: u16,
public subPtr: Uint8Array,
) {
assert(subPtr.length <= 30, `You must pass a 30 bytes sub-pointer. (StoredBooleanArray, got ${subPtr.length})`);
const basePointer = encodeBasePointer(pointer, subPtr);
this.lengthPointer = Uint8Array.wrap(basePointer.buffer);
this.basePointer = bigEndianAdd(basePointer, 1);
const storedLenStart = Blockchain.getStorageAt(basePointer);
const data = readLengthAndStartIndex(storedLenStart);
this._length = data[0];
this._startIndex = data[1];
}
// -------------- Public Accessors -------------- //
public has(index: u64): bool {
return index < this._length;
}
/**
* Retrieve boolean at `index`.
*/
public get(index: u64): bool {
if (index >= this._length) {
throw new Revert(`get: index out of range (${index} >= ${this._length}, boolean array)`);
}
const effectiveIndex = this._startIndex + index;
const wrappedIndex = effectiveIndex < this.MAX_LENGTH
? effectiveIndex
: effectiveIndex % this.MAX_LENGTH;
const slotIndex = wrappedIndex / 256;
const bitIndex = <u16>(wrappedIndex % 256);
this.ensureSlotLoaded(slotIndex);
const slotValue = this._values.get(slotIndex);
return slotValue ? getBit(slotValue, bitIndex) : false;
}
/**
* Set boolean at `index`.
*/
public set(index: u64, value: bool): void {
if (index >= this._length) {
throw new Revert(`set: index out of range (${index} >= ${this._length}, boolean array)`);
}
const effectiveIndex = this._startIndex + index;
const wrappedIndex = effectiveIndex < this.MAX_LENGTH
? effectiveIndex
: effectiveIndex % this.MAX_LENGTH;
const slotIndex = wrappedIndex / 256;
const bitIndex = <u16>(wrappedIndex % 256);
this.ensureSlotLoaded(slotIndex);
const slotValue = this._values.get(slotIndex);
if (slotValue) {
const oldVal = getBit(slotValue, bitIndex);
if (oldVal != value) {
setBit(slotValue, bitIndex, value);
this._isChanged.add(slotIndex);
}
}
}
/**
* Push a new boolean at the "end" of the array.
*/
public push(value: bool): void {
if (this._length >= this.MAX_LENGTH) {
throw new Revert('push: reached max allowed length (boolean array)');
}
const newIndex = this._length;
const effectiveIndex = this._startIndex + newIndex;
const wrappedIndex = effectiveIndex < this.MAX_LENGTH
? effectiveIndex
: effectiveIndex % this.MAX_LENGTH;
const slotIndex = wrappedIndex / 256;
const bitIndex = <u16>(wrappedIndex % 256);
this.ensureSlotLoaded(slotIndex);
const slotValue = this._values.get(slotIndex);
if (slotValue) {
setBit(slotValue, bitIndex, value);
this._isChanged.add(slotIndex);
}
this._length += 1;
this._isChangedLength = true;
}
/**
* Delete the boolean at `index` by setting it to false.
*/
public delete(index: u64): void {
if (index >= this._length) {
throw new Revert('delete: index out of range (boolean array)');
}
const effectiveIndex = this._startIndex + index;
const wrappedIndex = effectiveIndex < this.MAX_LENGTH
? effectiveIndex
: effectiveIndex % this.MAX_LENGTH;
const slotIndex = wrappedIndex / 256;
const bitIndex = <u16>(wrappedIndex % 256);
this.ensureSlotLoaded(slotIndex);
const slotValue = this._values.get(slotIndex);
if (slotValue) {
const oldVal = getBit(slotValue, bitIndex);
if (oldVal) {
setBit(slotValue, bitIndex, false);
this._isChanged.add(slotIndex);
}
}
}
/**
* Remove the last element by setting it false and decrementing length.
*/
public deleteLast(): void {
if (this._length === 0) {
throw new Revert('deleteLast: array is empty');
}
const lastIndex = this._length - 1;
this.delete(lastIndex);
this._length -= 1;
this._isChangedLength = true;
}
/**
* Commit any changed slots to storage, as well as length / startIndex if changed.
*/
public save(): void {
const changed = this._isChanged.values();
for (let i = 0; i < changed.length; i++) {
const slotIndex = changed[i];
const slotValue = this._values.get(slotIndex);
const storagePointer = this.calculateStoragePointer(slotIndex);
Blockchain.setStorageAt(storagePointer, slotValue);
}
this._isChanged.clear();
// 2) If length or startIndex changed, store them
if (this._isChangedLength || this._isChangedStartIndex) {
const w = new BytesWriter(32);
w.writeU64(this._length);
w.writeU64(this._startIndex);
const data = w.getBuffer();
Blockchain.setStorageAt(this.lengthPointer, data);
this._isChangedLength = false;
this._isChangedStartIndex = false;
}
}
/**
* Delete all slots in storage (that are loaded) + reset length + _startIndex.
*/
public deleteAll(): void {
const keys = this._values.keys();
const zeroArr = GET_EMPTY_BUFFER();
for (let i = 0; i < keys.length; i++) {
const slotIndex = keys[i];
const storagePointer = this.calculateStoragePointer(slotIndex);
Blockchain.setStorageAt(storagePointer, zeroArr);
}
const writer = new BytesWriter(32);
Blockchain.setStorageAt(this.lengthPointer, writer.getBuffer());
this._length = 0;
this._startIndex = 0;
this._isChangedLength = false;
this._isChangedStartIndex = false;
this._values.clear();
this._isChanged.clear();
}
/**
* Set multiple bools starting at `startIndex`.
*/
public setMultiple(startIndex: u64, values: bool[]): void {
for (let i: u64 = 0; i < values.length; i++) {
this.set(startIndex + i, values[i]);
}
}
/**
* Retrieve a batch of bools.
*/
public getAll(start: u64, count: u64): bool[] {
if (start + count > this._length) {
throw new Revert('getAll: range exceeds array length (boolean array)');
}
if (count > u64(u32.MAX_VALUE)) {
throw new Revert('getAll: range exceeds max allowed (boolean array)');
}
const result = new Array<bool>(<i32>count);
for (let i: u64 = 0; i < count; i++) {
result[<i32>i] = this.get(start + i);
}
return result;
}
/**
* Print out the array as "[true, false, ...]".
*/
public toString(): string {
let s = '[';
for (let i: u64 = 0; i < this._length; i++) {
s += this.get(i).toString();
if (i < this._length - 1) {
s += ', ';
}
}
s += ']';
return s;
}
/**
* Reset the array in memory (clear length, startIndex, caches), then save to storage.
*/
public reset(): void {
this._length = 0;
this._startIndex = 0;
this._isChangedLength = true;
this._isChangedStartIndex = true;
this._values.clear();
this._isChanged.clear();
this.save();
}
/**
* Current array length (number of booleans stored).
*/
public getLength(): u64 {
return this._length;
}
public setStartingIndex(index: u64): void {
this._startIndex = index;
this._isChangedStartIndex = true;
}
/**
* Current starting index for the array.
*/
public startingIndex(): u64 {
return this._startIndex;
}
/**
* Ensure the 32-byte slot for `slotIndex` is loaded into _values.
*/
private ensureSlotLoaded(slotIndex: u64): void {
if (!this._values.has(slotIndex)) {
const pointer = this.calculateStoragePointer(slotIndex);
const stored = Blockchain.getStorageAt(pointer);
this._values.set(slotIndex, stored);
}
}
/**
* Convert `slotIndex` -> pointer = basePointer + (slotIndex + 1), as big-endian addition.
*/
private calculateStoragePointer(slotIndex: u64): Uint8Array {
const offset = u64ToBE32Bytes(slotIndex);
return addUint8ArraysBE(this.basePointer, offset);
}
}