-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.js
305 lines (266 loc) · 7.88 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
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
'use strict';
const path = require('path');
const RSVP = require('rsvp');
const fs = require('fs');
const readFile = RSVP.denodeify(fs.readFile);
const writeFile = RSVP.denodeify(fs.writeFile);
const renameFile = RSVP.denodeify(fs.rename);
const chmod = RSVP.denodeify(fs.chmod);
const mkdirp = RSVP.denodeify(require('mkdirp'));
const rimraf = RSVP.denodeify(require('rimraf'));
const unlink = RSVP.denodeify(fs.unlink);
const os = require('os');
const debug = require('debug')('async-disk-cache');
const zlib = require('zlib');
const heimdall = require('heimdalljs');
const crypto = require('crypto');
const CacheEntry = require('./lib/cache-entry');
const Metric = require('./lib/metric');
if (!heimdall.hasMonitor('async-disk-cache')) {
heimdall.registerMonitor('async-disk-cache', function AsyncDiskCacheSchema() {});
}
const username = require('username-sync')();
const tmpdir = path.join(os.tmpdir(), username);
/*
* @private
*
* Defines a function on the given object at the given property name. Wraps
* the function with metric recording for heimdalljs.
*
* @method defineFunction
* @param Object obj the object on which to define the function
* @param String name the name to use for the function
* @param Function fn
* @returns Void
*/
function defineFunction(obj, name, fn) {
obj[name] = function() {
const stats = heimdall.statsFor('async-disk-cache');
const metrics = stats[name] = stats[name] || new Metric();
metrics.start();
let result;
let didError = true;
try {
result = fn.apply(this, arguments);
didError = false;
} finally {
if (didError) {
metrics.stop();
}
}
if (typeof result.finally === 'function') {
return result.finally(() => metrics.stop());
}
metrics.stop();
return result;
};
}
/*
* @private
* @method processFile
* @param String filePath the path of the cached file
* @returns CacheEntry an object representing that cache entry
*/
function processFile(decompress, filePath) {
return async (fileStream) => {
let value = await decompress(fileStream);
// is Buffer or string? >:D
if (!this.supportBuffer || require('istextorbinary').isTextSync(false, value)) {
debug('convert to string');
value = value.toString();
} else {
debug('keep data as Buffer');
}
return new CacheEntry(true, filePath, value);
};
}
/*
* @private
*
* When we encounter a rejection with reason of ENOENT, we actually know this
* should be a cache miss, so the rejection is handled as the CacheEntry.MISS
* singleton is the result.
*
* But if we encounter anything else, we must assume a legitimate failure an
* re-throw
*
* @method handleENOENT
* @param Error reason
* @returns CacheEntry returns the CacheEntry miss singleton
*/
function handleENOENT(reason) {
if (reason && reason.code === 'ENOENT') {
return CacheEntry.MISS;
}
throw reason;
}
const COMPRESSIONS = {
deflate: {
in: RSVP.denodeify(zlib.deflate),
out: RSVP.denodeify(zlib.inflate)
},
deflateRaw: {
in: RSVP.denodeify(zlib.deflateRaw),
out: RSVP.denodeify(zlib.inflateRaw)
},
gzip: {
in: RSVP.denodeify(zlib.gzip),
out: RSVP.denodeify(zlib.gunzip)
},
};
/*
*
* @class Cache
* @param {String} key the global key that represents this cache in its final location
* @param {String} options optional string path to the location for the
* cache. If omitted the system tmpdir is used
*/
class Cache {
constructor(key, _) {
const options = _ || {};
this.tmpdir = options.location|| tmpdir;
this.compression = options.compression || false;
this.supportBuffer = options.supportBuffer || false;
this.key = key || 'default-disk-cache';
this.root = path.join(this.tmpdir, 'if-you-need-to-delete-this-open-an-issue-async-disk-cache', this.key);
debug('new Cache { root: %s, compression: %s }', this.root, this.compression);
}
}
/*
* @public
*
* @method clear
* @returns {Promise} - fulfills when the cache has been cleared
* - rejects when a failured occured during cache clear
*/
defineFunction(Cache.prototype, 'clear', function() {
debug('clear: %s', this.root);
return rimraf(
path.join(this.root)
);
});
/*
* @public
*
* @method has
* @param {String} key the key to check existence of
* @return {Promise} - fulfills with either true | false depending if the key was found or not
* - rejects when a failured occured when checking existence of the key
*/
defineFunction(Cache.prototype, 'has', function(key) {
const filePath = this.pathFor(key);
debug('has: %s', filePath);
return new RSVP.Promise(resolve => fs.exists(filePath, resolve));
});
/*
* @public
*
* @method set
* @param {String} key they key to retrieve
* @return {Promise} - fulfills with either the cache entry, or a cache miss entry
* - rejects when a failure occured looking retrieving the key
*/
defineFunction(Cache.prototype, 'get', function(key) {
const filePath = this.pathFor(key);
debug('get: %s', filePath);
return readFile(filePath).
then(processFile.call(this, this.decompress.bind(this), filePath), handleENOENT);
});
/*
* @public
*
* @method set
* @param {String} key the key we wish to store
* @param {String} value the value we wish the key to be stored with
* @returns {Promise#fulfilled} if the value was coõstored as the key
* @returns {Promise#rejected} when a failure occured persisting the key
*/
defineFunction(Cache.prototype, 'set', function(key, value) {
// use RSVP to preserve public API as node 8 does not yet have Promise.prototype.finally
return new RSVP.Promise(resolve => {
resolve((async () => {
const filePath = this.pathFor(key);
debug('set : %s', filePath);
const cache = this;
await writeP(filePath, await cache.compress(value));
return filePath;
})());
});
});
const MAX_DIGITS = Math.pow(10, (Number.MAX_SAFE_INTEGER + '').length);
async function writeP(filePath, content) {
const base = path.dirname(filePath);
const random = Math.random() * MAX_DIGITS;
const tmpfile = filePath + '.tmp.' + random;
try {
await writeFile(tmpfile, content)
} catch(reason) {
if (reason && reason.code === 'ENOENT') {
await mkdirp(base, { mode: '0700' });
await writeFile(tmpfile, content);
} else {
throw reason;
}
}
await renameFile(tmpfile, filePath);
await chmod(filePath, '600');
}
/*
* @public
*
* @method remove
* @param {String} key the key to remove from the cache
* @returns {Promise#fulfilled} if the removal was successful
* @returns {Promise#rejection} if something went wrong while removing the key
*/
defineFunction(Cache.prototype, 'remove', function(key) {
// use RSVP to preserve public API as node 8 does not yet have Promise.prototype.finally
return new RSVP.Promise(resolve => {
resolve((async () => {
const filePath = this.pathFor(key);
debug('remove : %s', filePath);
try {
await unlink(filePath);
} catch(e) {
await handleENOENT(e);
}
})());
});
});
/*
* @public
*
* @method pathFor
* @param {String} key the key to generate the final path for
* @returns the path where the key's value may reside
*/
defineFunction(Cache.prototype, 'pathFor', function(key) {
return path.join(this.root, crypto.createHash('sha1').update(key).digest('hex'));
});
/*
* @public
*
* @method decompress
* @param {String} compressedValue
* @returns decompressedValue
*/
defineFunction(Cache.prototype, 'decompress', function(value) {
if (!this.compression) {
return value;
}
return COMPRESSIONS[this.compression].out(value);
});
/*
* @public
*
* @method compress
* @param {String} value
* @returns compressedValue
*/
defineFunction(Cache.prototype, 'compress', function(value) {
if (!this.compression) {
return value;
}
return COMPRESSIONS[this.compression].in(value);
});
module.exports = Cache;