mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
bf6ce47259
Move tmpdir functionality to its own module (common/tmpdir). PR-URL: https://github.com/nodejs/node/pull/17856 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
40 lines
987 B
JavaScript
40 lines
987 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const initHooks = require('./init-hooks');
|
|
const verifyGraph = require('./verify-graph');
|
|
|
|
const net = require('net');
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
tmpdir.refresh();
|
|
|
|
const hooks = initHooks();
|
|
hooks.enable();
|
|
|
|
net.createServer(function(c) {
|
|
c.end();
|
|
this.close();
|
|
}).listen(common.PIPE, common.mustCall(onlisten));
|
|
|
|
function onlisten() {
|
|
net.connect(common.PIPE, common.mustCall(onconnect));
|
|
}
|
|
|
|
function onconnect() {}
|
|
|
|
process.on('exit', onexit);
|
|
|
|
function onexit() {
|
|
hooks.disable();
|
|
verifyGraph(
|
|
hooks,
|
|
[ { type: 'PIPESERVERWRAP', id: 'pipeserver:1', triggerAsyncId: null },
|
|
{ type: 'PIPEWRAP', id: 'pipe:1', triggerAsyncId: 'pipeserver:1' },
|
|
{ type: 'PIPECONNECTWRAP', id: 'pipeconnect:1',
|
|
triggerAsyncId: 'pipe:1' },
|
|
{ type: 'PIPEWRAP', id: 'pipe:2', triggerAsyncId: 'pipeserver:1' },
|
|
{ type: 'SHUTDOWNWRAP', id: 'shutdown:1', triggerAsyncId: 'pipe:2' } ]
|
|
);
|
|
}
|