mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
3f3fa6d990
PR-URL: https://github.com/nodejs/node/pull/42345 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
56 lines
1.1 KiB
JavaScript
56 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
const {
|
|
Symbol,
|
|
Date,
|
|
DatePrototypeGetMilliseconds,
|
|
DatePrototypeToUTCString,
|
|
} = primordials;
|
|
|
|
const { setUnrefTimeout } = require('internal/timers');
|
|
|
|
const { InternalPerformanceEntry } = require('internal/perf/performance_entry');
|
|
|
|
const {
|
|
enqueue,
|
|
hasObserver,
|
|
} = 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) {
|
|
if (!hasObserver('http') || statistics == null) return;
|
|
const startTime = statistics.startTime;
|
|
const diff = process.hrtime(startTime);
|
|
const entry = new InternalPerformanceEntry(
|
|
statistics.type,
|
|
'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,
|
|
};
|