-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdebug.js
37 lines (36 loc) · 1.46 KB
/
debug.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
const create = require('./create');
module.exports = async function(serviceConfig, envConfig, assert, vfs) {
const {broker, serviceBus, service, mergedConfig, logFactory, log} = await create(envConfig, vfs);
try {
const ports = (service && mergedConfig) ? await service.start(await service.create(serviceConfig, mergedConfig, assert)) : [];
return {
ports,
portsMap: ports.reduce((prev, cur) => {
if (cur && cur.config && (typeof cur.config.id === 'string')) {
prev[cur.config.id] = cur;
}
return prev;
}, {}),
broker,
serviceBus,
log: logFactory,
logger: log,
config: mergedConfig,
watch: service?.watch,
stop: () => {
let innerPromise = Promise.resolve();
ports
.map((port) => port.destroy.bind(port))
.concat(serviceBus ? serviceBus.destroy.bind(serviceBus) : [])
.concat(broker ? broker.destroy.bind(broker) : [])
.concat(logFactory ? logFactory.destroy.bind(logFactory) : [])
.forEach((method) => (innerPromise = innerPromise.then(() => method())));
return innerPromise;
}
};
} catch (err) {
serviceBus && serviceBus.destroy();
broker && broker.destroy();
throw err;
}
};