-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
362 lines (269 loc) · 8.95 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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
'use strict';
var express = require('express'),
cluster = require('cluster'),
when = require('when'),
path = require('path'),
ejs = require('ejs'),
fs = require('graceful-fs'),
_ = require('underscore');
var logger = function logger(){
if(!_.isFunction(process.getLogger)){
return {
'info': _.bind(console.log, console),
'debug': _.bind(console.log, console)
};
}
return process.getLogger(__filename);
},
monApp = express(),
emitter = require('cluster-emitter'),
status = require('cluster-status');
//the monitor app should support the following:
//debug
var debugMiddleware = exports.debugMiddleware = function(req, res, next){
if(req.url === '/help'){
return res.sendfile(path.join(__dirname, './public/images/live-debugging.png'));
}
if(req.url === '/deps'){
exports.npmls
.then(function(deps){
res.type('json').send(deps);
})
.otherwise(function(error){
res.send(500);
});
return;
}
if(req.url !== '/debug'){
return next();
}
logger().debug('[monitor][index] renders');
res.render('index', {
});
};
monApp.use('/scripts', express.static(path.join(__dirname, './public/scripts')));
monApp.use('/stylesheets', express.static(path.join(__dirname, './public/stylesheets')));
monApp.engine('.ejs', require('ejs').__express);
monApp.set('views', path.join(__dirname, './views'));
monApp.set('view engine', 'ejs');
monApp.use(debugMiddleware);
exports.monApp = monApp;
exports.monCreateServer = function createServer(app){
var server = require('http').createServer(app),
io = require('socket.io').listen(server, {'log': false}),
debugging = undefined,
inspector = null,
state = null,
statuses = {},
sockets = [],
pauses = {};//all of these vars are now scoped in monCreateServer to make unique
logger().info('[monitor] server started');
var workers = _.once(function tick(){
var pids = _.map(cluster.workers, function(w){
return w.process.pid;
});
logger().debug('[monitor][workers] pids:%j', pids);
when.map(status.statuses(), function(s){
return status.getStatus(s);
})
.then(function(statusesOfWorkers){
logger().debug('[monitor][workers] statusesOfWorkers:%j', statusesOfWorkers);
_.each(statusesOfWorkers, function(statusOfWorkers){
_.each(statusOfWorkers, function(statusOfWorker){
statuses[statusOfWorker.name] = statuses[statusOfWorker.name] || {};
statuses[statusOfWorker.name][statusOfWorker.pid] = statusOfWorker.status;
});
});
var arrOfStatues = _.map(statuses, function(v, k){
v.name = k;
return v;
});
_.each(sockets, function(socket){
if(_.isEmpty(_.difference(socket.knownPids, pids)) && _.isEmpty(_.difference(pids, socket.knownPids))){
logger().debug('[monitor][workers] emits status changes:%j', arrOfStatues);
socket.emit('status-change', pids, arrOfStatues);
}
else{
logger().debug('[monitor][workers] detects workers changed:%j from:%j', pids, socket.knownPids);
socket.knownPids = pids;//update pids
fs.readFile(path.join(__dirname, '/views/workers.ejs'), {
'encoding': 'utf-8'
},
function(err, read){
var html = ejs.render(read, {
'pids': pids,
'debugging': debugging,
'inspector': inspector,
'state': state,
'statuses': arrOfStatues,
'pauses': pauses
});
logger().debug('[monitor][workers] renders workers view:%s', html);
socket.emit('workers', {
'view': 'html',
'html': html
});
});
}
});
});
setTimeout(tick, 1000);//everyone 1s
});
var watchings = [],
watchExists = function watchExists(usr, namespace){
if(_.contains(watchings, namespace)){
return;
}
watchings.push(namespace);
usr.watch(namespace, null, function(value, key){
logger().debug('[monitor][cache][%s] detects change of:%s', namespace, key);
usr.inspect(namespace, key).then(function(status){
logger().debug('[monitor][cache][%s] emits cache-changed event over websocket', namespace);
_.invoke(sockets, 'emit', 'cache-changed', namespace, key, status[0], status[1], status[2]);
});
});
},
watchFresh = _.once(function(usr){
usr.watch('', null, function(value, namespace){
logger().info('[monitor][cache] detects new namespace:%s', namespace);
fs.readFile(path.join(__dirname, '/views/caches.ejs'), {
'encoding': 'utf-8'
},
function(err, read){
var html = ejs.render(read, {
'namespace': namespace,
'caches': []
});
logger().debug('[monitor][cache][%s] renders empty caches view', namespace);
_.invoke(sockets, 'emit', 'caches', {
'view': 'html',
'namespace': namespace,
'html': html
});
});
watchExists(usr, namespace);
});
});
function caches(){
require('cluster-cache').user.use().then(function(usr){
usr.ns()
.then(function(namespaces){
logger().debug('[monitor][cache] existing namespaces:%s', namespaces);
_.each(namespaces || [], function(namespace){
watchExists(usr, namespace);
usr.keys(namespace).then(function(keys){
logger().debug('[monitor][cache][%s] existing keys:%s', namespace, keys);
when.map(keys, function(k){
return usr.inspect(namespace, k);
})
.then(function(values){
fs.readFile(path.join(__dirname, '/views/caches.ejs'), {
'encoding': 'utf-8'
},
function(err, read){
var html = ejs.render(read, {
'namespace': namespace,
'caches': _.map(keys, function(k, i){
return {
'key': k,
'value': values[i][0],
'persist': values[i][1],
'expire': values[i][2]
};
})
});
logger().debug('[monitor][cache][%s] inspected:\n%s\nand renders caches view:\n%s', JSON.stringify(values), namespace, html);
_.each(sockets, function(socket){
if(!_.contains(socket.namespaces, namespace)){
socket.namespaces.push(namespace);
socket.emit('caches', {
'view': 'html',
'namespace': namespace,
'html': html
});
}
})
});
});
});
});
});
watchFresh(usr);
});
}
//the debug flow is as the following:
//app view accepts debug request, and we call master#debug to start
//app view shows the debug as preparing till we hear 'debug-inspector' event from the master
//app view shows the inspector's url for user to go to
//if it's debugging live, the worker is still running and debug is started as well
//otherwise the debugging fresh, the worker won't start till user comes back to the app view and 'resume' the debug (after he/she puts all the breakpoints needed)
//user could continue the debug till the app view accepts 'debug-finshed' request and propagate this event to the master
io.sockets.on('connection', function (socket) {
logger().info('[monitor] accepted new websocket and sending workers & caches view');
socket.knownPids = [];
socket.namespaces = [];
sockets.push(socket);
workers();
caches();
socket.once('debug', function debug(pid){
debugging = pid;
inspector = null;
state = null;
logger().info('[debug] %s requested', pid);
socket.once('debug-started', function(){
state = 'debug-started';
emitter.to(['master']).emit('debug-started');
logger().info('debug:%s start requested', pid);
});
socket.once('debug-finished', function(){
debugging = null;
inspector = null;
state = 'debug-finshed';
emitter.to(['master']).emit('debug-finished');
logger().info('[debug] %s finished', pid);
socket.once('debug', debug);
});
emitter.once('debug-inspector', function(inspectorUrl){
inspector = inspectorUrl;
logger().info('[debug] %s inspector ready:%s', pid, inspector);
socket.knownPids = [];//force an update
});
emitter.to(['master']).emit('debug', pid);
});
socket.on('pause', function pause(pid){
if(!pauses[pid]){
pauses[pid] = true;
emitter.to(['master']).emit('pause', pid);
}
});
socket.on('resume', function resume(pid){
if(pauses[pid]){
emitter.to(['master']).emit('resume', pid);
delete pauses[pid];
}
});
socket.once('close', function close(){
sockets = _.without(sockets, socket);
});
});
return server;
};
exports.npmls = (function npmls(){
var tillList = when.defer(),
execPath = process.execPath,
execArgv = [path.join(require.resolve('npm'), '../../bin/npm-cli.js'), 'ls', '--json', '--depth=10'],
execFile = require('child_process').execFile;
execFile(execPath, execArgv, {
'cwd': process.cwd(),
'encoding': 'utf-8'
},
function(err, stdout){
if(err){
tillList.reject(err);
}
else{
tillList.resolve(stdout);
}
});
return tillList.promise;
})();