mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
26288cf2a9
This PR stubs `perf_hooks.eventLoopUtilization` to make the tests of [hapi](https://github.com/hapijs/hapi) start. Previously, they'd all error because of this function throwing a not implemented error. This brings down the test failures in their suite from 982 to 68 failures.
110 lines
3 KiB
TypeScript
110 lines
3 KiB
TypeScript
// Copyright 2018-2024 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";
|
|
|
|
class PerformanceObserver {
|
|
observe() {
|
|
notImplemented("PerformanceObserver.observe");
|
|
}
|
|
disconnect() {
|
|
notImplemented("PerformanceObserver.disconnect");
|
|
}
|
|
}
|
|
|
|
const constants = {};
|
|
|
|
const performance:
|
|
& Omit<
|
|
Performance,
|
|
"clearMeasures" | "getEntries"
|
|
>
|
|
& {
|
|
eventLoopUtilization(): {
|
|
idle: number;
|
|
active: number;
|
|
utilization: number;
|
|
};
|
|
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: () => {
|
|
// TODO(@marvinhagemeister): Return actual non-stubbed values
|
|
return { idle: 0, active: 0, utilization: 0 };
|
|
},
|
|
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,
|
|
};
|