mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 08:00:26 +00:00

This reverts commit e2f5bb7574
.
Reverted as it caused a significant performance regression.
See: https://github.com/nodejs/node/issues/37937
PR-URL: https://github.com/nodejs/node/pull/37963
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Beth Griggs <bgriggs@redhat.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
51 lines
1.0 KiB
JavaScript
51 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
const {
|
|
Symbol,
|
|
Date,
|
|
DatePrototypeGetMilliseconds,
|
|
DatePrototypeToUTCString,
|
|
} = primordials;
|
|
|
|
const { setUnrefTimeout } = require('internal/timers');
|
|
|
|
const { InternalPerformanceEntry } = require('internal/perf/perf');
|
|
const { enqueue } = require('internal/perf/observe');
|
|
|
|
let utcCache;
|
|
|
|
function utcDate() {
|
|
if (!utcCache) cache();
|
|
return utcCache;
|
|
}
|
|
|
|
function cache() {
|
|
const d = new Date();
|
|
utcCache = DatePrototypeToUTCString(d);
|
|
setUnrefTimeout(resetCache, 1000 - DatePrototypeGetMilliseconds(d));
|
|
}
|
|
|
|
function resetCache() {
|
|
utcCache = undefined;
|
|
}
|
|
|
|
function emitStatistics(statistics) {
|
|
const startTime = statistics.startTime;
|
|
const diff = process.hrtime(startTime);
|
|
const entry = new InternalPerformanceEntry(
|
|
'HttpRequest',
|
|
'http',
|
|
startTime[0] * 1000 + startTime[1] / 1e6,
|
|
diff[0] * 1000 + diff[1] / 1e6,
|
|
undefined,
|
|
);
|
|
enqueue(entry);
|
|
}
|
|
|
|
module.exports = {
|
|
kOutHeaders: Symbol('kOutHeaders'),
|
|
kNeedDrain: Symbol('kNeedDrain'),
|
|
utcDate,
|
|
emitStatistics
|
|
};
|