This repository was archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathmultihashes.js
82 lines (68 loc) · 2.03 KB
/
multihashes.js
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
/**
* @typedef {import('multiformats/hashes/interface').MultihashHasher} MultihashHasher
* @typedef {import('./types').LoadHasherFn} LoadHasherFn
* @typedef {import('ipfs-core-types/src/utils').AbortOptions} AbortOptions
*/
/**
* @type {LoadHasherFn}
*/
const LOAD_HASHER = (codeOrName) => Promise.reject(new Error(`No hasher found for "${codeOrName}"`))
export class Multihashes {
/**
* @param {object} options
* @param {LoadHasherFn} [options.loadHasher]
* @param {MultihashHasher[]} options.hashers
*/
constructor (options) {
// Object with current list of active hashers
/** @type {Record<string, MultihashHasher>}} */
this._hashersByName = {}
// Object with current list of active hashers
/** @type {Record<number, MultihashHasher>}} */
this._hashersByCode = {}
this._loadHasher = options.loadHasher || LOAD_HASHER
// Enable all supplied hashers
for (const hasher of options.hashers) {
this.addHasher(hasher)
}
}
/**
* Add support for a multibase hasher
*
* @param {MultihashHasher} hasher
*/
addHasher (hasher) {
if (this._hashersByName[hasher.name] || this._hashersByCode[hasher.code]) {
throw new Error(`Resolver already exists for codec "${hasher.name}"`)
}
this._hashersByName[hasher.name] = hasher
this._hashersByCode[hasher.code] = hasher
}
/**
* Remove support for a multibase hasher
*
* @param {MultihashHasher} hasher
*/
removeHasher (hasher) {
delete this._hashersByName[hasher.name]
delete this._hashersByCode[hasher.code]
}
/**
* @param {number | string} code
*/
async getHasher (code) {
const table = typeof code === 'string' ? this._hashersByName : this._hashersByCode
if (table[code]) {
return table[code]
}
// If not supported, attempt to dynamically load this hasher
const hasher = await this._loadHasher(code)
if (table[code] == null) {
this.addHasher(hasher)
}
return hasher
}
listHashers () {
return Object.values(this._hashersByName)
}
}