-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add safePerformance to guard against bad performance calls #1677
Changes from all commits
4e3daa6
35c130f
4cbb2b2
36aae7f
2eff89d
6fc2914
7416f12
882ebc4
7b6dd22
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* Copyright (C) 2024 Yomitan Authors | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import {log} from './log.js'; | ||
|
||
/** | ||
* This class safely handles performance methods. | ||
*/ | ||
class SafePerformance { | ||
constructor() {} | ||
|
||
/** | ||
* @param {string} markName | ||
* @param {PerformanceMarkOptions} [markOptions] | ||
* @returns {PerformanceMark | undefined} | ||
*/ | ||
mark(markName, markOptions) { | ||
try { | ||
// eslint-disable-next-line no-restricted-syntax | ||
return performance.mark(markName, markOptions); | ||
} catch (e) { | ||
log.error(e); | ||
} | ||
} | ||
|
||
/** | ||
* | ||
* @param {string} measureName | ||
* @param {string | PerformanceMeasureOptions} [startOrMeasureOptions] | ||
* @param {string} [endMark] | ||
* @returns {PerformanceMeasure | undefined} | ||
*/ | ||
measure(measureName, startOrMeasureOptions, endMark) { | ||
try { | ||
// eslint-disable-next-line no-restricted-syntax | ||
return performance.measure(measureName, startOrMeasureOptions, endMark); | ||
} catch (e) { | ||
log.error(e); | ||
} | ||
} | ||
|
||
/** | ||
* @returns {DOMHighResTimeStamp} | ||
*/ | ||
now() { | ||
// eslint-disable-next-line no-restricted-syntax | ||
return performance.now(); | ||
} | ||
} | ||
|
||
/** | ||
* This object is the default performance measurer used by the runtime. | ||
*/ | ||
export const safePerformance = new SafePerformance(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we shadow There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes but this would break the eslint rule. Checked to see if there's any way to ban the use of a specific class so we could ban If the eslint rule is removed, this could work if you are suggesting making the new |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to have something specific to the performance custom rule?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think so. I can't find anything in the eslint docs. But the name is a bit misleading. It does not disable all restricted syntax, it only disables the
no-restricted-syntax
rule. For Yomitan this means it only disables this: