mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 10:33:59 -05:00
* Minor updates only * Added explicit radix parameter (10) to all Number.parseInt() calls throughout the codebase (new lint rule) * Updated several @ts-ignore comments to @ts-expect-error for better TypeScript practices (new lint rule) * Removed unnecessary @ts-ignore comments in some mode files (ditto) * Used "none return" based arrow functions for some map stuff * Replaced a `map()` call that didn't return anything to a for() loop * Fixed up some cypress stuff, noting work for the future
230 lines
9.0 KiB
TypeScript
230 lines
9.0 KiB
TypeScript
// Copyright (c) 2017, Jared Wyles
|
|
// All rights reserved.
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without
|
|
// modification, are permitted provided that the following conditions are met:
|
|
//
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
// this list of conditions and the following disclaimer.
|
|
// * Redistributions in binary form must reproduce the above copyright
|
|
// notice, this list of conditions and the following disclaimer in the
|
|
// documentation and/or other materials provided with the distribution.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
import {Container} from 'golden-layout';
|
|
import $ from 'jquery';
|
|
import * as monaco from 'monaco-editor';
|
|
import _ from 'underscore';
|
|
import {CompilationResult} from '../../types/compilation/compilation.interfaces.js';
|
|
import {CompilerInfo} from '../../types/compiler.interfaces.js';
|
|
import {unwrap} from '../assert.js';
|
|
import {Hub} from '../hub.js';
|
|
import {extendConfig} from '../monaco-config.js';
|
|
import {Toggles} from '../widgets/toggles.js';
|
|
import {OptRemark, OptState} from './opt-view.interfaces.js';
|
|
import {MonacoPaneState} from './pane.interfaces.js';
|
|
import {MonacoPane} from './pane.js';
|
|
|
|
export class Opt extends MonacoPane<monaco.editor.IStandaloneCodeEditor, OptState> {
|
|
// Note: bool | undef here instead of just bool because of an issue with field initialization order
|
|
private isCompilerSupported?: boolean;
|
|
private filters: Toggles;
|
|
private toggleWrapButton: Toggles;
|
|
private wrapButton: JQuery<HTMLElement>;
|
|
private wrapTitle: JQuery<HTMLElement>;
|
|
|
|
// Keep optRemarks as state, to avoid triggering a recompile when options change
|
|
private optRemarks: OptRemark[];
|
|
private optRemarkViewZoneIds: string[];
|
|
|
|
constructor(hub: Hub, container: Container, state: OptState & MonacoPaneState) {
|
|
super(hub, container, state);
|
|
this.optRemarks = state.optOutput ?? [];
|
|
this.optRemarkViewZoneIds = [];
|
|
this.eventHub.emit('optViewOpened', this.compilerInfo.compilerId);
|
|
}
|
|
|
|
override getInitialHTML(): string {
|
|
return $('#opt-view').html();
|
|
}
|
|
|
|
override createEditor(editorRoot: HTMLElement): void {
|
|
this.editor = monaco.editor.create(
|
|
editorRoot,
|
|
extendConfig({
|
|
language: 'plaintext',
|
|
readOnly: true,
|
|
glyphMargin: true,
|
|
}),
|
|
);
|
|
}
|
|
|
|
override getPrintName() {
|
|
return 'Opt Remarks';
|
|
}
|
|
|
|
override registerButtons(state: OptState) {
|
|
super.registerButtons(state);
|
|
this.filters = new Toggles(this.domRoot.find('.filters'), state as unknown as Record<string, boolean>);
|
|
this.filters.on('change', this.showOptRemarks.bind(this));
|
|
|
|
this.toggleWrapButton = new Toggles(this.domRoot.find('.options'), state as unknown as Record<string, boolean>);
|
|
this.toggleWrapButton.on('change', this.onToggleWrapChange.bind(this));
|
|
|
|
this.wrapButton = this.domRoot.find('.wrap-lines');
|
|
this.wrapTitle = this.wrapButton.prop('title');
|
|
|
|
if (state.wrap === true) {
|
|
this.wrapButton.prop('title', '[ON] ' + this.wrapTitle);
|
|
} else {
|
|
this.wrapButton.prop('title', '[OFF] ' + this.wrapTitle);
|
|
}
|
|
}
|
|
|
|
onToggleWrapChange(): void {
|
|
const state = this.getCurrentState();
|
|
if (state.wrap) {
|
|
this.editor.updateOptions({wordWrap: 'on'});
|
|
this.wrapButton.prop('title', '[ON] ' + this.wrapTitle);
|
|
} else {
|
|
this.editor.updateOptions({wordWrap: 'off'});
|
|
this.wrapButton.prop('title', '[OFF] ' + this.wrapTitle);
|
|
}
|
|
|
|
this.updateState();
|
|
}
|
|
|
|
override registerCallbacks() {
|
|
this.eventHub.emit('requestSettings');
|
|
this.eventHub.emit('findCompilers');
|
|
|
|
this.container.on('shown', this.resize, this);
|
|
|
|
const cursorSelectionThrottledFunction = _.throttle(this.onDidChangeCursorSelection.bind(this), 500);
|
|
this.editor.onDidChangeCursorSelection(e => {
|
|
cursorSelectionThrottledFunction(e);
|
|
});
|
|
|
|
this.editor.onDidLayoutChange(({contentWidth}) => {
|
|
this.showOptRemarks(contentWidth);
|
|
});
|
|
}
|
|
|
|
override onCompileResult(id: number, compiler: CompilerInfo, result: CompilationResult) {
|
|
if (this.compilerInfo.compilerId !== id || !this.isCompilerSupported) return;
|
|
|
|
this.editor.setValue(unwrap(result.source));
|
|
this.optRemarks = result.optOutput ?? [];
|
|
this.showOptRemarks();
|
|
|
|
// TODO: This is inelegant again. Previously took advantage of fourth argument for the compileResult event.
|
|
const lang = compiler.lang === 'c++' ? 'cpp' : compiler.lang;
|
|
const model = this.editor.getModel();
|
|
if (model != null && this.getCurrentEditorLanguage() !== lang) {
|
|
monaco.editor.setModelLanguage(model, lang);
|
|
}
|
|
|
|
if (!this.isAwaitingInitialResults) {
|
|
if (this.selection) {
|
|
this.editor.setSelection(this.selection);
|
|
this.editor.revealLinesInCenter(this.selection.startLineNumber, this.selection.endLineNumber);
|
|
}
|
|
this.isAwaitingInitialResults = true;
|
|
}
|
|
}
|
|
|
|
// Monaco language id of the current editor
|
|
getCurrentEditorLanguage() {
|
|
return this.editor.getModel()?.getLanguageId();
|
|
}
|
|
|
|
override getDefaultPaneName() {
|
|
return 'Opt Viewer';
|
|
}
|
|
|
|
showOptRemarks(width?: number) {
|
|
const filters = this.filters.get();
|
|
const includeMissed: boolean = filters['filter-missed'];
|
|
const includePassed: boolean = filters['filter-passed'];
|
|
const includeAnalysis: boolean = filters['filter-analysis'];
|
|
|
|
const remarksToDisplay = this.optRemarks.filter(rem => {
|
|
return (
|
|
!!rem.DebugLoc &&
|
|
((rem.optType === 'Missed' && includeMissed) ||
|
|
(rem.optType === 'Passed' && includePassed) ||
|
|
(rem.optType === 'Analysis' && includeAnalysis))
|
|
);
|
|
});
|
|
|
|
this.editor?.changeViewZones(accessor => {
|
|
const maxWidth = width ?? this.editor.getLayoutInfo().contentWidth;
|
|
this.optRemarkViewZoneIds.forEach(id => {
|
|
accessor.removeZone(id);
|
|
});
|
|
this.optRemarkViewZoneIds = remarksToDisplay.map(({displayString, optType, DebugLoc}) => {
|
|
const domNode = document.createElement('div');
|
|
domNode.classList.add('view-line', 'opt-line', optType.toLowerCase());
|
|
this.editor.applyFontInfo(domNode);
|
|
domNode.innerText = displayString;
|
|
|
|
// let the browser calculate the height that the text needs
|
|
domNode.style.visibility = 'hidden';
|
|
domNode.style.maxWidth = `${maxWidth}px`;
|
|
document.body.appendChild(domNode);
|
|
const heightInPx = domNode.clientHeight;
|
|
document.body.removeChild(domNode);
|
|
domNode.style.removeProperty('visibility');
|
|
domNode.style.removeProperty('max-width');
|
|
|
|
return accessor.addZone({
|
|
domNode,
|
|
heightInPx,
|
|
afterLineNumber: DebugLoc.Line === 0 ? 0 : DebugLoc.Line - 1,
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
override onCompiler(id: number, compiler: CompilerInfo | null, options: string, editorId: number, treeId: number) {
|
|
if (id === this.compilerInfo.compilerId) {
|
|
this.compilerInfo.compilerName = compiler ? compiler.name : '';
|
|
this.updateTitle();
|
|
this.isCompilerSupported = compiler ? compiler.supportsOptOutput : false;
|
|
if (!this.isCompilerSupported) {
|
|
this.editor.setValue('<OPT remarks are not supported for this compiler>');
|
|
this.optRemarks = [];
|
|
this.showOptRemarks();
|
|
}
|
|
}
|
|
}
|
|
|
|
override getCurrentState() {
|
|
return {
|
|
...this.filters.get(),
|
|
wrap: this.toggleWrapButton.get().wrap,
|
|
...super.getCurrentState(),
|
|
};
|
|
}
|
|
|
|
// Don't do anything for this pane
|
|
override sendPrintData() {}
|
|
|
|
override close() {
|
|
this.eventHub.unsubscribe();
|
|
this.eventHub.emit('optViewClosed', this.compilerInfo.compilerId);
|
|
this.editor.dispose();
|
|
}
|
|
}
|