UNPKG

3.54 kBJavaScriptView Raw
1"use strict";
2/********************************************************************************
3* Copyright (c) 2019, 2021 TypeFox, STMicroelectronics and others.
4*
5* This program and the accompanying materials are made available under the
6* terms of the Eclipse Public License 2.0 which is available at
7* http://www.eclipse.org/legal/epl-2.0.
8*
9* This Source Code may also be made available under the following Secondary
10* Licenses when the conditions for such availability set forth in the Eclipse
11* Public License v. 2.0 are satisfied: GNU General Public License, version 2
12* with the GNU Classpath Exception which is available at
13* https://www.gnu.org/software/classpath/license.html.
14*
15* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16*******************************************************************************/
17var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
18 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
19 if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
20 else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
21 return c > 3 && r && Object.defineProperty(target, key, r), r;
22};
23var __metadata = (this && this.__metadata) || function (k, v) {
24 if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
25};
26Object.defineProperty(exports, "__esModule", { value: true });
27exports.FrontendStopwatch = void 0;
28const inversify_1 = require("inversify");
29const common_1 = require("../../common");
30let FrontendStopwatch = class FrontendStopwatch extends common_1.Stopwatch {
31 constructor() {
32 super({
33 owner: 'frontend',
34 now: () => performance.now(),
35 });
36 }
37 start(name, options) {
38 const startMarker = `${name}-start`;
39 const endMarker = `${name}-end`;
40 performance.clearMeasures(name);
41 performance.clearMarks(startMarker);
42 performance.clearMarks(endMarker);
43 performance.mark(startMarker);
44 return this.createMeasurement(name, () => {
45 var _a, _b;
46 performance.mark(endMarker);
47 let duration;
48 let startTime;
49 try {
50 performance.measure(name, startMarker, endMarker);
51 const entries = performance.getEntriesByName(name);
52 // If no entries, then performance measurement was disabled or failed, so
53 // signal that with a `NaN` result
54 duration = (_a = entries[0].duration) !== null && _a !== void 0 ? _a : Number.NaN;
55 startTime = (_b = entries[0].startTime) !== null && _b !== void 0 ? _b : Number.NaN;
56 }
57 catch (e) {
58 console.warn(e);
59 duration = Number.NaN;
60 startTime = Number.NaN;
61 }
62 performance.clearMeasures(name);
63 performance.clearMarks(startMarker);
64 performance.clearMarks(endMarker);
65 return { startTime, duration };
66 }, options);
67 }
68};
69FrontendStopwatch = __decorate([
70 (0, inversify_1.injectable)(),
71 __metadata("design:paramtypes", [])
72], FrontendStopwatch);
73exports.FrontendStopwatch = FrontendStopwatch;
74;
75//# sourceMappingURL=frontend-stopwatch.js.map
\No newline at end of file