1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/ext/node/polyfills/perf_hooks.ts
Bartek Iwańczuk cf6673b23d
fix(ext/node): add APIs perf_hook.performance (#21192)
Required for Next.js.
2023-11-14 16:33:09 +05:30

98 lines
2.8 KiB
TypeScript

// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// TODO(petamoriken): enable prefer-primordials for node polyfills
// deno-lint-ignore-file prefer-primordials
import { notImplemented } from "ext:deno_node/_utils.ts";
import {
performance as shimPerformance,
PerformanceEntry,
} from "ext:deno_web/15_performance.js";
// FIXME(bartlomieju)
const PerformanceObserver = undefined;
const constants = {};
const performance:
& Omit<
Performance,
"clearMeasures" | "getEntries"
>
& {
// deno-lint-ignore no-explicit-any
eventLoopUtilization: any;
nodeTiming: Record<string, string>;
// deno-lint-ignore no-explicit-any
timerify: any;
// deno-lint-ignore no-explicit-any
timeOrigin: any;
// deno-lint-ignore no-explicit-any
markResourceTiming: any;
} = {
clearMarks: (markName: string) => shimPerformance.clearMarks(markName),
eventLoopUtilization: () =>
notImplemented("eventLoopUtilization from performance"),
mark: (markName: string) => shimPerformance.mark(markName),
measure: (
measureName: string,
startMark?: string | PerformanceMeasureOptions,
endMark?: string,
): PerformanceMeasure => {
if (endMark) {
return shimPerformance.measure(
measureName,
startMark as string,
endMark,
);
} else {
return shimPerformance.measure(
measureName,
startMark as PerformanceMeasureOptions,
);
}
},
nodeTiming: {},
now: () => shimPerformance.now(),
timerify: () => notImplemented("timerify from performance"),
get timeOrigin() {
// deno-lint-ignore no-explicit-any
return (shimPerformance as any).timeOrigin;
},
getEntriesByName: (name, type) =>
shimPerformance.getEntriesByName(name, type),
getEntriesByType: (type) => shimPerformance.getEntriesByType(type),
markResourceTiming: () => {},
// @ts-ignore waiting on update in `deno`, but currently this is
// a circular dependency
toJSON: () => shimPerformance.toJSON(),
addEventListener: (
...args: Parameters<typeof shimPerformance.addEventListener>
) => shimPerformance.addEventListener(...args),
removeEventListener: (
...args: Parameters<typeof shimPerformance.removeEventListener>
) => shimPerformance.removeEventListener(...args),
dispatchEvent: (
...args: Parameters<typeof shimPerformance.dispatchEvent>
) => shimPerformance.dispatchEvent(...args),
};
const monitorEventLoopDelay = () =>
notImplemented(
"monitorEventLoopDelay from performance",
);
export default {
performance,
PerformanceObserver,
PerformanceEntry,
monitorEventLoopDelay,
constants,
};
export {
constants,
monitorEventLoopDelay,
performance,
PerformanceEntry,
PerformanceObserver,
};