Skip to content

Commit

Permalink
chore: strictSortKey
Browse files Browse the repository at this point in the history
  • Loading branch information
ppedziwiatr committed Feb 2, 2024
1 parent 18922ec commit d0000ca
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
6 changes: 6 additions & 0 deletions src/__tests__/unit/evaluation-options.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ describe('Evaluation options evaluator', () => {
stackTrace: {
saveState: false
},
strictSortKey: false,
throwOnInternalWriteError: true,
transactionsPagesPerBatch: null,
unsafeClient: 'throw',
Expand Down Expand Up @@ -65,6 +66,7 @@ describe('Evaluation options evaluator', () => {
stackTrace: {
saveState: false
},
strictSortKey: false,
throwOnInternalWriteError: true,
transactionsPagesPerBatch: null,
unsafeClient: 'throw',
Expand Down Expand Up @@ -99,6 +101,7 @@ describe('Evaluation options evaluator', () => {
stackTrace: {
saveState: false
},
strictSortKey: false,
throwOnInternalWriteError: true,
transactionsPagesPerBatch: null,
unsafeClient: 'allow',
Expand Down Expand Up @@ -130,6 +133,7 @@ describe('Evaluation options evaluator', () => {
stackTrace: {
saveState: false
},
strictSortKey: false,
throwOnInternalWriteError: true,
transactionsPagesPerBatch: null,
unsafeClient: 'allow',
Expand Down Expand Up @@ -161,6 +165,7 @@ describe('Evaluation options evaluator', () => {
stackTrace: {
saveState: false
},
strictSortKey: false,
throwOnInternalWriteError: true,
transactionsPagesPerBatch: null,
unsafeClient: 'throw',
Expand Down Expand Up @@ -192,6 +197,7 @@ describe('Evaluation options evaluator', () => {
stackTrace: {
saveState: false
},
strictSortKey: false,
throwOnInternalWriteError: true,
transactionsPagesPerBatch: null,
unsafeClient: 'skip',
Expand Down
6 changes: 4 additions & 2 deletions src/contract/EvaluationOptionsEvaluator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,16 @@ export class EvaluationOptionsEvaluator {
useKVStorage: (foreignOptions) => foreignOptions['useKVStorage'],
useConstructor: (foreignOptions) => foreignOptions['useConstructor'],
whitelistSources: () => this.rootOptions['whitelistSources'],
transactionsPagesPerBatch: () => this.rootOptions['transactionsPagesPerBatch']
transactionsPagesPerBatch: () => this.rootOptions['transactionsPagesPerBatch'],
strictSortKey: () => this.rootOptions['strictSortKey']
};

private readonly notConflictingEvaluationOptions: (keyof EvaluationOptions)[] = [
'useKVStorage',
'sourceType',
'useConstructor',
'transactionsPagesPerBatch'
'transactionsPagesPerBatch',
'strictSortKey'
];

/**
Expand Down
3 changes: 3 additions & 0 deletions src/contract/HandlerBasedContract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -647,6 +647,9 @@ export class HandlerBasedContract<State> implements Contract<State> {
>;
}
cachedState = cachedState || (await stateEvaluator.latestAvailableState<State>(contractTxId, upToSortKey));
if (upToSortKey && this.evaluationOptions().strictSortKey && cachedState?.sortKey != upToSortKey) {
throw new Error(`State not cached at the exact required ${upToSortKey} sortKey`);
}

this.logger.debug('cache lookup', benchmark.elapsed());
benchmark.reset();
Expand Down
9 changes: 9 additions & 0 deletions src/core/modules/StateEvaluator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ export class DefaultEvaluationOptions implements EvaluationOptions {
whitelistSources = [];

transactionsPagesPerBatch = null;

strictSortKey = false;
}

// an interface for the contract EvaluationOptions - can be used to change the behaviour of some features.
Expand Down Expand Up @@ -243,9 +245,16 @@ export interface EvaluationOptions {
// remote source for fetching most recent contract state, only applicable if remoteStateSyncEnabled is set to true
remoteStateSyncSource: string;

// an array of source tx ids that are allowed to be evaluated by the SDK
whitelistSources: string[];

// how many interactions pages are evaluated in a single evaluation batch
transactionsPagesPerBatch: number;

// whether passing sortKey to some functions like viewState or readStateFor is strict
// - if it is, then we're requiring the SDK to have the state cached at this exact sortKey
// - so that SDK won't load and evaluated missing interactions
strictSortKey: boolean;
}

// https://github.com/nodejs/node/issues/40678 duh...
Expand Down

0 comments on commit d0000ca

Please sign in to comment.