diff --git a/app/lib/common-libs/constants.ts b/app/lib/common-libs/constants.ts index c58cf6bb5e7b63bf9b30d5f4f313155a36340016..18169b0b775b99e69b44ab41f6de4ef8f92101f3 100755 --- a/app/lib/common-libs/constants.ts +++ b/app/lib/common-libs/constants.ts @@ -53,7 +53,7 @@ const CONDITIONS = "\\)|CSV\\(" + CSV_INTEGER + "\\))))*"; -const CONDITION_SIG_PUBKEY = "SIG\\((" + PUBKEY +")\\)"; +const CONDITION_SIG_PUBKEY = "SIG\\((" + PUBKEY + ")\\)"; const BMA_REGEXP = /^BASIC_MERKLED_API( ([a-z_][a-z0-9-_.]*))?( ([0-9.]+))?( ([0-9a-f:]+))?( ([0-9]+))$/; const BMAS_REGEXP = /^BMAS( ([a-z_][a-z0-9-_.]*))?( ([0-9.]+))?( ([0-9a-f:]+))?( ([0-9]+))( (\/.+))?$/; const BMATOR_REGEXP = /^BMATOR( ([a-z0-9]{16})\.onion)( ([0-9.]+))?( ([0-9a-f:]+))?( ([0-9]+))$/; @@ -536,7 +536,7 @@ export const CommonConstants = { INLINE_COMMENT: exact(COMMENT), OUTPUT_CONDITION: exact(CONDITIONS), OUTPUT_CONDITION_SIG_PUBKEY: find(CONDITION_SIG_PUBKEY), - OUTPUT_CONDITION_SIG_PUBKEY_UNIQUE: exact(CONDITION_SIG_PUBKEY) + OUTPUT_CONDITION_SIG_PUBKEY_UNIQUE: exact(CONDITION_SIG_PUBKEY), }, PEER: { BLOCK: find("Block: (" + INTEGER + "-" + FINGERPRINT + ")"), diff --git a/app/lib/dal/fileDAL.ts b/app/lib/dal/fileDAL.ts index 336ca9258b41f942c2d552b627bd81530832bdee..599d48ed6b88f4a5d85012898e425bce134bcd69 100644 --- a/app/lib/dal/fileDAL.ts +++ b/app/lib/dal/fileDAL.ts @@ -472,7 +472,7 @@ export class FileDAL implements ServerDAO { async getAvailableSourcesByPubkey(pubkey: string): Promise<HttpSource[]> { const [txAvailable, sources] = await Promise.all([ this.sindexDAL.getAvailableForPubkey(pubkey), - this.dividendDAL.getUDSources(pubkey) + this.dividendDAL.getUDSources(pubkey), ]); return sources .map((d) => { diff --git a/app/lib/dal/indexDAL/leveldb/LevelDBSindex.ts b/app/lib/dal/indexDAL/leveldb/LevelDBSindex.ts index 439713bbc138431235a9d3f32ac50a8828bac93b..f81e4f9d2a2b54e0f94c7bcc60d8506364558bb8 100644 --- a/app/lib/dal/indexDAL/leveldb/LevelDBSindex.ts +++ b/app/lib/dal/indexDAL/leveldb/LevelDBSindex.ts @@ -1,12 +1,18 @@ -import {MonitorExecutionTime} from "../../../debug/MonitorExecutionTime"; -import {FullSindexEntry, Indexer, SimpleTxEntryForWallet, SimpleTxInput, SindexEntry,} from "../../../indexer"; -import {LevelUp} from "levelup"; -import {LevelDBTable} from "./LevelDBTable"; -import {SIndexDAO} from "../abstract/SIndexDAO"; -import {Underscore} from "../../../common-libs/underscore"; -import {pint} from "../../../common-libs/pint"; -import {arrayPruneAllCopy} from "../../../common-libs/array-prune"; -import {CommonConstants} from "../../../common-libs/constants"; +import { MonitorExecutionTime } from "../../../debug/MonitorExecutionTime"; +import { + FullSindexEntry, + Indexer, + SimpleTxEntryForWallet, + SimpleTxInput, + SindexEntry, +} from "../../../indexer"; +import { LevelUp } from "levelup"; +import { LevelDBTable } from "./LevelDBTable"; +import { SIndexDAO } from "../abstract/SIndexDAO"; +import { Underscore } from "../../../common-libs/underscore"; +import { pint } from "../../../common-libs/pint"; +import { arrayPruneAllCopy } from "../../../common-libs/array-prune"; +import { CommonConstants } from "../../../common-libs/constants"; export class LevelDBSindex extends LevelDBTable<SindexEntry> implements SIndexDAO { @@ -38,8 +44,8 @@ export class LevelDBSindex extends LevelDBTable<SindexEntry> this.getLevelDB ); this.indexOfComplexeConditionForPubkeys = new LevelDBTable<string[]>( - "level_sindex/complex_condition_pubkeys", - this.getLevelDB + "level_sindex/complex_condition_pubkeys", + this.getLevelDB ); await this.indexForTrimming.init(); await this.indexForConsumed.init(); @@ -130,11 +136,13 @@ export class LevelDBSindex extends LevelDBTable<SindexEntry> }[] > { const forSimpleConditions = await this.getForConditions(`SIG(${pubkey})`); - const forComplexConditions = await this.getForComplexeConditionPubkey(pubkey); - const reduced = Indexer.DUP_HELPERS.reduceBy(forSimpleConditions.concat(forComplexConditions), [ - "identifier", - "pos", - ]); + const forComplexConditions = await this.getForComplexeConditionPubkey( + pubkey + ); + const reduced = Indexer.DUP_HELPERS.reduceBy( + forSimpleConditions.concat(forComplexConditions), + ["identifier", "pos"] + ); return reduced.filter((r) => !r.consumed); } @@ -270,12 +278,13 @@ export class LevelDBSindex extends LevelDBTable<SindexEntry> } async getForComplexeConditionPubkey(pubkey: string): Promise<SindexEntry[]> { - const ids = (await this.indexOfComplexeConditionForPubkeys.getOrNull(pubkey)) || []; + const ids = + (await this.indexOfComplexeConditionForPubkeys.getOrNull(pubkey)) || []; const found: SindexEntry[] = []; for (const id of ids) { const entries = await this.findByIdentifierAndPos( - id.split("-")[0], - pint(id.split("-")[1]) + id.split("-")[0], + pint(id.split("-")[1]) ); entries.forEach((e) => found.push(e)); } @@ -379,7 +388,8 @@ export class LevelDBSindex extends LevelDBTable<SindexEntry> private async trimComplexeConditionPubkey(pubkey: string, id: string) { // Get all the condition's sources - const existing = (await this.indexOfComplexeConditionForPubkeys.getOrNull(pubkey)) || []; + const existing = + (await this.indexOfComplexeConditionForPubkeys.getOrNull(pubkey)) || []; // Prune the source from the condition const trimmed = arrayPruneAllCopy(existing, id); if (trimmed.length) { @@ -496,19 +506,26 @@ export class LevelDBSindex extends LevelDBTable<SindexEntry> } // Index pubkeys => (identifier + pos)[] for (const k of Underscore.keys(byPubkeys).map(String)) { - const existing = (await this.indexOfComplexeConditionForPubkeys.getOrNull(k)) || []; + const existing = + (await this.indexOfComplexeConditionForPubkeys.getOrNull(k)) || []; const newSources = byPubkeys[k].map((r) => - LevelDBSindex.trimPartialKey(r.identifier, r.pos) + LevelDBSindex.trimPartialKey(r.identifier, r.pos) ); await this.indexOfComplexeConditionForPubkeys.put( - k, - Underscore.uniq(existing.concat(newSources)) + k, + Underscore.uniq(existing.concat(newSources)) ); } } private isComplexCondition(condition: string): boolean { - return condition && !CommonConstants.TRANSACTION.OUTPUT_CONDITION_SIG_PUBKEY_UNIQUE.test(condition) || false; + return ( + (condition && + !CommonConstants.TRANSACTION.OUTPUT_CONDITION_SIG_PUBKEY_UNIQUE.test( + condition + )) || + false + ); } /** * Get all pubkeys used by an output condition (e.g. 'SIG(A) && SIG(B)' will return ['A', 'B'] @@ -519,7 +536,11 @@ export class LevelDBSindex extends LevelDBTable<SindexEntry> const pubKeys: string[] = []; if (!condition) return pubKeys; let match: RegExpExecArray | null; - while ((match = CommonConstants.TRANSACTION.OUTPUT_CONDITION_SIG_PUBKEY.exec(condition)) !== null) { + while ( + (match = CommonConstants.TRANSACTION.OUTPUT_CONDITION_SIG_PUBKEY.exec( + condition + )) !== null + ) { pubKeys.push(match[1]); condition = condition.substring(match.index + match[0].length); }