This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtiered.js
216 lines (188 loc) · 4.62 KB
/
tiered.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
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
import { BaseDatastore } from './base.js'
import * as Errors from './errors.js'
import { logger } from '@libp2p/logger'
import { pushable } from 'it-pushable'
import drain from 'it-drain'
const log = logger('datastore:core:tiered')
/**
* @typedef {import('interface-datastore').Datastore} Datastore
* @typedef {import('interface-datastore').Options} Options
* @typedef {import('interface-datastore').Batch} Batch
* @typedef {import('interface-datastore').Query} Query
* @typedef {import('interface-datastore').KeyQuery} KeyQuery
* @typedef {import('interface-datastore').Key} Key
* @typedef {import('interface-datastore').Pair} Pair
*/
/**
* @template TEntry
* @typedef {import('interface-store').AwaitIterable<TEntry>} AwaitIterable
*/
/**
* A datastore that can combine multiple stores. Puts and deletes
* will write through to all datastores. Has and get will
* try each store sequentially. Query will always try the
* last one first.
*
*/
export class TieredDatastore extends BaseDatastore {
/**
* @param {Datastore[]} stores
*/
constructor (stores) {
super()
this.stores = stores.slice()
}
async open () {
try {
await Promise.all(this.stores.map((store) => store.open()))
} catch (err) {
throw Errors.dbOpenFailedError()
}
}
/**
* @param {Key} key
* @param {Uint8Array} value
* @param {Options} [options]
*/
async put (key, value, options) {
try {
await Promise.all(this.stores.map(store => store.put(key, value, options)))
} catch (err) {
throw Errors.dbWriteFailedError()
}
}
/**
* @param {Key} key
* @param {Options} [options]
*/
async get (key, options) {
for (const store of this.stores) {
try {
const res = await store.get(key, options)
if (res) return res
} catch (err) {
log.error(err)
}
}
throw Errors.notFoundError()
}
/**
* @param {Key} key
* @param {Options} [options]
*/
async has (key, options) {
for (const s of this.stores) {
if (await s.has(key, options)) {
return true
}
}
return false
}
/**
* @param {Key} key
* @param {Options} [options]
*/
async delete (key, options) {
try {
await Promise.all(this.stores.map(store => store.delete(key, options)))
} catch (err) {
throw Errors.dbDeleteFailedError()
}
}
/**
* @param {AwaitIterable<Pair>} source
* @param {Options} [options]
* @returns {AsyncIterable<Pair>}
*/
async * putMany (source, options = {}) {
let error
const pushables = this.stores.map(store => {
const source = pushable({
objectMode: true
})
drain(store.putMany(source, options))
.catch(err => {
// store threw while putting, make sure we bubble the error up
error = err
})
return source
})
try {
for await (const pair of source) {
if (error) {
throw error
}
pushables.forEach(p => p.push(pair))
yield pair
}
} finally {
pushables.forEach(p => p.end())
}
}
/**
* @param {AwaitIterable<Key>} source
* @param {Options} [options]
* @returns {AsyncIterable<Key>}
*/
async * deleteMany (source, options = {}) {
let error
const pushables = this.stores.map(store => {
const source = pushable({
objectMode: true
})
drain(store.deleteMany(source, options))
.catch(err => {
// store threw while deleting, make sure we bubble the error up
error = err
})
return source
})
try {
for await (const key of source) {
if (error) {
throw error
}
pushables.forEach(p => p.push(key))
yield key
}
} finally {
pushables.forEach(p => p.end())
}
}
async close () {
await Promise.all(this.stores.map(store => store.close()))
}
/**
* @returns {Batch}
*/
batch () {
const batches = this.stores.map(store => store.batch())
return {
put: (key, value) => {
batches.forEach(b => b.put(key, value))
},
delete: (key) => {
batches.forEach(b => b.delete(key))
},
commit: async (options) => {
for (const batch of batches) {
await batch.commit(options)
}
}
}
}
/**
* @param {Query} q
* @param {Options} [options]
*/
query (q, options) {
return this.stores[this.stores.length - 1].query(q, options)
}
/**
* @param {KeyQuery} q
* @param {Options} [options]
*/
queryKeys (q, options) {
return this.stores[this.stores.length - 1].queryKeys(q, options)
}
}