-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
134 lines (106 loc) · 2.9 KB
/
index.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
'use strict'
const { fromCallback, fromPromise } = require('catering')
const combine = require('maybe-combine-errors')
const Nanoresource = require('nanoresource')
const kResources = Symbol('kResources')
class Collection extends Nanoresource {
constructor (options, resources) {
super()
if (Array.isArray(options)) {
resources = options
options = null
}
this[kResources] = []
this.supports = { ...this.supports, promises: false, callbacks: true }
if (options == null) options = {}
if (options.opened) this.opened = true
if (resources) {
this[kResources].push(...resources)
}
}
push (...resources) {
this[kResources].push(...resources)
}
_open (callback) {
openStack(this[kResources].slice(), callback)
}
_close (callback) {
closeStack(this[kResources].slice(), callback)
}
destroy (reason, callback) {
this.close(function (err) {
callback(combine([reason, err]))
})
}
[Symbol.iterator] () {
return this[kResources][Symbol.iterator]()
}
get length () {
return this[kResources].length
}
}
Collection.promises = class CollectionPromises extends Collection {
constructor (...args) {
super(...args)
this.supports = { ...this.supports, promises: true, callbacks: true }
}
open (...args) {
const callback = fromCallback(takeCallback(args))
super.open(...args, callback)
return callback.promise
}
close (...args) {
const callback = fromCallback(takeCallback(args))
super.close(...args, callback)
return callback.promise
}
destroy (...args) {
const callback = fromCallback(takeCallback(args))
super.destroy(...args, callback)
return callback.promise
}
}
module.exports = Collection
function takeCallback (args) {
if (typeof args[args.length - 1] === 'function') {
return args.pop()
}
}
function openStack (stack, callback) {
const opened = []
next()
function next () {
if (stack.length === 0) callback()
else call(stack[0], 'open', 'opened', onopen)
}
function onopen (err) {
if (err) return closeStack(opened, callback, err)
opened.push(stack.shift())
next()
}
}
function closeStack (stack, callback, err) {
const errors = []
next(err)
function next (err) {
if (err) errors.push(err)
if (stack.length === 0) return callback(combine(errors))
call(stack.pop(), 'close', 'closed', next)
}
}
function call (resource, method, stateProperty, callback) {
// Doesn't have to be a nanoresource per se
if (typeof resource[method] !== 'function') {
return callback()
}
// Skip a tick if already opened or closed
if (resource[stateProperty] === true) {
return callback()
}
// Use promise if resource only supports promises
if (resource.supports && resource.supports.promises && !resource.supports.callbacks) {
fromPromise(resource[method](), callback)
} else {
resource[method](callback)
}
}