-
Notifications
You must be signed in to change notification settings - Fork 6
/
filecache.js
223 lines (181 loc) · 4.69 KB
/
filecache.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
"use strict";
module.exports = filecache
var fs = require('fs')
, path = require('path')
, mime = require('mime')
, EventEmitter = require('events').EventEmitter
, crypto = require('crypto')
, zlib = require('zlib')
, util = require('util')
, httpHandler = require('./http-handler')
function prepare(d, options, cb) {
if(options.hashAlgo) {
var hash = crypto.createHash(options.hashAlgo)
hash.update(d)
d.hash = hash.digest('hex')
}
if(options.gzip) {
zlib.gzip(d, function(err, r) {
if(err) return cb(err)
d.gzip = r
if(options.deflate) {
zlib.deflate(d, function(err, r) {
if(err) return cb(err)
d.deflate = r
cb(null, d)
})
} else {
cb(null, d)
}
})
} else if(options.deflate) {
zlib.deflate(d, function(err, r) {
if(err) return cb(err)
d.deflate = r
cb(null, d)
})
} else {
cb(null, d)
}
}
function generate(p, options, em) {
var start = p
, queue = [start]
read()
function read() {
if(queue.length === 0) {
em.emit('done', start)
return
}
var p = queue.shift()
// console.log(p)
fs.stat(p, function(err, s) {
if(err) return em.emit('error', err)
if(s.isDirectory()) {
fs.readdir(p, function(err, files) {
if(err) return em.emit('error', err)
if(!options.root) {
options.root = p
}
if(options.watchDirectoryChange) {
var watcher = fs.watch(p)
watcher.on('change', function(event, filename) {
// console.log('watcher change: %s, %s (%s)', event, filename, p)
watcher.close()
generate(p, options, em)
})
}
queue = queue.concat(files.map(function(f) {
return path.resolve(p, f)
}))
read()
})
} else {
fs.readFile(p, function(err, d) {
if(err) return em.emit('error', err)
if(!options.root) {
options.root = path.dirname(p)
}
d.p = p
d.k = (options.prefix ? options.prefix : '') + (options.root ? p.slice(options.root.length) : p).replace(/\\/g, '/')
d.mtime = s.mtime
d.mime_type = mime.lookup(p)
prepare(d, options, function(err, d) {
if(err) return em.emit('error', err)
if(options.watchFileChange) {
var watcher = fs.watch(p)
watcher.on('change', function(event, filename) {
console.log('watcher change: %s, %s (%s)', event, filename, p)
watcher.close()
generate(p, options, em)
})
}
em.emit('contents', d)
read()
})
})
}
})
}
}
function genOptions(options, defaults) {
Object.keys(defaults).forEach(function(k) {
if(!options.hasOwnProperty(k)) {
options[k] = defaults[k]
}
})
return options
}
function filecache(dir, defaultOptions, cb) {
if(typeof defaultOptions === 'function') {
cb = defaultOptions
defaultOptions =
{ prefix: false
, watchDirectoryChange: false
, watchFileChange: false
, gzip: false
, deflate: false
, hashAlgo: false
}
}
if(typeof dir === 'function') {
cb = dir
dir = null
}
if(dir !== null && typeof dir === 'object' && !(dir instanceof String)) {
defaultOptions = dir
dir = null
}
if(typeof defaultOptions === 'boolean') { // legacy code
defaultOptions =
{ watchFileChange: defaultOptions
, hashAlgo: 'sha1'
}
}
if(defaultOptions == null) defaultOptions = {}
cb = cb || function() {}
var cache = {}
, em = new EventEmitter()
em.cache = cache
em.on('contents', function(d) {
if(cache[d.k] && cache[d.k].p !== d.p) {
console.warn('WARN: Filecache key %s has multiple sources.', d.k)
}
cache[d.k] = d
em.emit('change', d)
})
em.options = function(options) {
Object.keys(options).forEach(function(k) {
defaultOptions[k] = options[k]
})
}
var pending = 0
em.load = function(p, options, cb) {
++pending
if(typeof options === 'function') {
cb = options
options = {}
}
options = genOptions(options||{}, defaultOptions)
p = path.resolve(p)
function onDone(_p) {
if(_p === p) {
em.removeListener('done', onDone)
cb && cb(null, cache)
if(--pending === 0) {
em.emit('ready', cache)
}
}
}
em.on('done', onDone)
generate(p, options, em)
return em
}
if(dir) {
em.load(dir, cb)
}
em.httpHandler = function(options) {
return httpHandler(options, em)
}
return em
}