-
Notifications
You must be signed in to change notification settings - Fork 0
/
abstract.js
191 lines (138 loc) · 2.83 KB
/
abstract.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
import {closeSync, ftruncateSync, openSync, readSync, writeSync} from 'fs'
import {EOL} from 'os'
const DEFAULT_BUFFER_SIZE = 16384 // 16KB, Node.js default
function filterEmpty(line)
{
return line?.length
}
function getLength({length})
{
return length
}
function includes(value, result)
{
return result.includes(value)
}
export default class FsSetAbstract
{
constructor(
filePath,
{
bufferSize = DEFAULT_BUFFER_SIZE,
cleanAfterRead,
eol = EOL,
lockfile
} = {bufferSize: DEFAULT_BUFFER_SIZE, eol: EOL}
){
if(this.constructor === FsSetAbstract)
throw new Error('`FsSetAbstract` is an abstract class')
try
{
this._fd = openSync(filePath, 'r+')
}
catch (error)
{
if(error.code !== 'ENOENT') throw error
this._fd = openSync(filePath, 'w+')
}
if(eol === null) eol = '\0'
this.#buffer = Buffer.alloc(bufferSize)
this.#cleanAfterRead = cleanAfterRead
this.#eol = eol
this._filePath = filePath
this._lockfile = lockfile
}
//
// Set
//
get length()
{
const result = this.lock(this.#read)
if(result instanceof Promise) return result.then(getLength)
return getLength(result)
}
add(value)
{
return this.lock(this.#add, value)
}
clear()
{
return this.lock(this.#write)
}
delete(value)
{
return this.lock(this.#delete, value)
}
has(value)
{
const result = this.lock(this.#read)
if(result instanceof Promise) return result.then(includes.bind(null, value))
return includes(value, result)
}
//
// Public API
//
get closed()
{
return this._fd === -1
}
close()
{
if(this.closed) return
closeSync(this._fd)
this._fd = -1
}
// eslint-disable-next-line class-methods-use-this
lock()
{
throw new Error('Not implemented')
}
//
// Protected API
//
_fd
_filePath
_lockfile
//
// Private API
//
#buffer
#cleanAfterRead
#eol
#add = value =>
{
const values = this.#read()
values.push(value)
this.#write(values)
}
#delete = value =>
{
const values = this.#read()
const index = values.indexOf(value.toString())
if(index < 0) return false
values.splice(index, 1)
this.#write(values)
return true
}
/**
* Read values file and remove non-existing processes from PIDs file
*
* @memberof FsSet
*/
#read = () =>
{
const buffer = this.#buffer
const length = readSync(this._fd, buffer, 0, buffer.length, 0)
let result = buffer.toString('utf8', 0, length)
.split(this.#eol)
.filter(filterEmpty)
if(this.#cleanAfterRead)
result = result.filter(this.#cleanAfterRead)
return result
}
#write = data =>
{
ftruncateSync(this._fd)
writeSync(this._fd, data?.join(this.#eol) || '', 0)
}
}