mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
948 lines
34 KiB
TypeScript
948 lines
34 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as nls from 'vs/nls';
|
|
import { RunOnceScheduler, ignoreErrors, sequence } from 'vs/base/common/async';
|
|
import * as dom from 'vs/base/browser/dom';
|
|
import { IViewletViewOptions } from 'vs/workbench/browser/parts/views/viewsViewlet';
|
|
import { IDebugService, State, IStackFrame, IDebugSession, IThread, CONTEXT_CALLSTACK_ITEM_TYPE, IDebugModel } from 'vs/workbench/contrib/debug/common/debug';
|
|
import { Thread, StackFrame, ThreadAndSessionIds } from 'vs/workbench/contrib/debug/common/debugModel';
|
|
import { IContextMenuService } from 'vs/platform/contextview/browser/contextView';
|
|
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
|
|
import { MenuId, IMenu, IMenuService } from 'vs/platform/actions/common/actions';
|
|
import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding';
|
|
import { renderViewTree, BaseDebugViewPane } from 'vs/workbench/contrib/debug/browser/baseDebugView';
|
|
import { IAction, Action } from 'vs/base/common/actions';
|
|
import { IEditorService } from 'vs/workbench/services/editor/common/editorService';
|
|
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
|
|
import { IContextKey, IContextKeyService } from 'vs/platform/contextkey/common/contextkey';
|
|
import { IViewPaneOptions } from 'vs/workbench/browser/parts/views/viewPaneContainer';
|
|
import { ILabelService } from 'vs/platform/label/common/label';
|
|
import { IAccessibilityProvider } from 'vs/base/browser/ui/list/listWidget';
|
|
import { createAndFillInContextMenuActions } from 'vs/platform/actions/browser/menuEntryActionViewItem';
|
|
import { IListVirtualDelegate } from 'vs/base/browser/ui/list/list';
|
|
import { ITreeRenderer, ITreeNode, ITreeContextMenuEvent, IAsyncDataSource } from 'vs/base/browser/ui/tree/tree';
|
|
import { TreeResourceNavigator, WorkbenchAsyncDataTree } from 'vs/platform/list/browser/listService';
|
|
import { HighlightedLabel } from 'vs/base/browser/ui/highlightedlabel/highlightedLabel';
|
|
import { createMatches, FuzzyScore } from 'vs/base/common/filters';
|
|
import { Event } from 'vs/base/common/event';
|
|
import { dispose } from 'vs/base/common/lifecycle';
|
|
import { ActionBar } from 'vs/base/browser/ui/actionbar/actionbar';
|
|
import { isSessionAttach } from 'vs/workbench/contrib/debug/common/debugUtils';
|
|
import { STOP_ID, STOP_LABEL, DISCONNECT_ID, DISCONNECT_LABEL, RESTART_SESSION_ID, RESTART_LABEL, STEP_OVER_ID, STEP_OVER_LABEL, STEP_INTO_LABEL, STEP_INTO_ID, STEP_OUT_LABEL, STEP_OUT_ID, PAUSE_ID, PAUSE_LABEL, CONTINUE_ID, CONTINUE_LABEL } from 'vs/workbench/contrib/debug/browser/debugCommands';
|
|
import { ICommandService } from 'vs/platform/commands/common/commands';
|
|
import { CollapseAction } from 'vs/workbench/browser/viewlet';
|
|
import { IViewDescriptorService } from 'vs/workbench/common/views';
|
|
import { IThemeService } from 'vs/platform/theme/common/themeService';
|
|
import { IOpenerService } from 'vs/platform/opener/common/opener';
|
|
|
|
const $ = dom.$;
|
|
|
|
type CallStackItem = IStackFrame | IThread | IDebugSession | string | ThreadAndSessionIds | IStackFrame[];
|
|
|
|
export function getContext(element: CallStackItem | null): any {
|
|
return element instanceof StackFrame ? {
|
|
sessionId: element.thread.session.getId(),
|
|
threadId: element.thread.getId(),
|
|
frameId: element.getId()
|
|
} : element instanceof Thread ? {
|
|
sessionId: element.session.getId(),
|
|
threadId: element.getId()
|
|
} : isDebugSession(element) ? {
|
|
sessionId: element.getId()
|
|
} : undefined;
|
|
}
|
|
|
|
// Extensions depend on this context, should not be changed even though it is not fully deterministic
|
|
export function getContextForContributedActions(element: CallStackItem | null): string | number {
|
|
if (element instanceof StackFrame) {
|
|
if (element.source.inMemory) {
|
|
return element.source.raw.path || element.source.reference || '';
|
|
}
|
|
|
|
return element.source.uri.toString();
|
|
}
|
|
if (element instanceof Thread) {
|
|
return element.threadId;
|
|
}
|
|
if (isDebugSession(element)) {
|
|
return element.getId();
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
export class CallStackView extends BaseDebugViewPane {
|
|
private pauseMessage!: HTMLSpanElement;
|
|
private pauseMessageLabel!: HTMLSpanElement;
|
|
private onCallStackChangeScheduler: RunOnceScheduler;
|
|
private needsRefresh = false;
|
|
private ignoreSelectionChangedEvent = false;
|
|
private ignoreFocusStackFrameEvent = false;
|
|
private callStackItemType: IContextKey<string>;
|
|
private dataSource!: CallStackDataSource;
|
|
private tree!: WorkbenchAsyncDataTree<CallStackItem | IDebugModel, CallStackItem, FuzzyScore>;
|
|
private contributedContextMenu: IMenu;
|
|
private parentSessionToExpand = new Set<IDebugSession>();
|
|
private selectionNeedsUpdate = false;
|
|
|
|
constructor(
|
|
private options: IViewletViewOptions,
|
|
@IContextMenuService contextMenuService: IContextMenuService,
|
|
@IDebugService private readonly debugService: IDebugService,
|
|
@IKeybindingService keybindingService: IKeybindingService,
|
|
@IInstantiationService instantiationService: IInstantiationService,
|
|
@IViewDescriptorService viewDescriptorService: IViewDescriptorService,
|
|
@IEditorService private readonly editorService: IEditorService,
|
|
@IConfigurationService configurationService: IConfigurationService,
|
|
@IMenuService menuService: IMenuService,
|
|
@IContextKeyService readonly contextKeyService: IContextKeyService,
|
|
@IOpenerService openerService: IOpenerService,
|
|
@IThemeService themeService: IThemeService,
|
|
) {
|
|
super({ ...(options as IViewPaneOptions), ariaHeaderLabel: nls.localize('callstackSection', "Call Stack Section") }, keybindingService, contextMenuService, configurationService, contextKeyService, viewDescriptorService, instantiationService, openerService, themeService);
|
|
this.callStackItemType = CONTEXT_CALLSTACK_ITEM_TYPE.bindTo(contextKeyService);
|
|
|
|
this.contributedContextMenu = menuService.createMenu(MenuId.DebugCallStackContext, contextKeyService);
|
|
this._register(this.contributedContextMenu);
|
|
|
|
// Create scheduler to prevent unnecessary flashing of tree when reacting to changes
|
|
this.onCallStackChangeScheduler = new RunOnceScheduler(() => {
|
|
// Only show the global pause message if we do not display threads.
|
|
// Otherwise there will be a pause message per thread and there is no need for a global one.
|
|
const sessions = this.debugService.getModel().getSessions();
|
|
const thread = sessions.length === 1 && sessions[0].getAllThreads().length === 1 ? sessions[0].getAllThreads()[0] : undefined;
|
|
if (thread && thread.stoppedDetails) {
|
|
this.pauseMessageLabel.textContent = thread.stoppedDetails.description || nls.localize('debugStopped', "Paused on {0}", thread.stoppedDetails.reason || '');
|
|
this.pauseMessageLabel.title = thread.stoppedDetails.text || '';
|
|
dom.toggleClass(this.pauseMessageLabel, 'exception', thread.stoppedDetails.reason === 'exception');
|
|
this.pauseMessage.hidden = false;
|
|
this.updateActions();
|
|
|
|
} else {
|
|
this.pauseMessage.hidden = true;
|
|
this.updateActions();
|
|
}
|
|
|
|
this.needsRefresh = false;
|
|
this.dataSource.deemphasizedStackFramesToShow = [];
|
|
this.tree.updateChildren().then(() => {
|
|
this.parentSessionToExpand.forEach(s => this.tree.expand(s));
|
|
this.parentSessionToExpand.clear();
|
|
if (this.selectionNeedsUpdate) {
|
|
this.selectionNeedsUpdate = false;
|
|
this.updateTreeSelection();
|
|
}
|
|
});
|
|
}, 50);
|
|
}
|
|
|
|
protected renderHeaderTitle(container: HTMLElement): void {
|
|
const titleContainer = dom.append(container, $('.debug-call-stack-title'));
|
|
super.renderHeaderTitle(titleContainer, this.options.title);
|
|
|
|
this.pauseMessage = dom.append(titleContainer, $('span.pause-message'));
|
|
this.pauseMessage.hidden = true;
|
|
this.pauseMessageLabel = dom.append(this.pauseMessage, $('span.label'));
|
|
}
|
|
|
|
getActions(): IAction[] {
|
|
if (this.pauseMessage.hidden) {
|
|
return [new CollapseAction(this.tree, true, 'explorer-action codicon-collapse-all')];
|
|
}
|
|
|
|
return [];
|
|
}
|
|
|
|
renderBody(container: HTMLElement): void {
|
|
super.renderBody(container);
|
|
|
|
dom.addClass(container, 'debug-call-stack');
|
|
const treeContainer = renderViewTree(container);
|
|
|
|
this.dataSource = new CallStackDataSource(this.debugService);
|
|
this.tree = <WorkbenchAsyncDataTree<CallStackItem | IDebugModel, CallStackItem, FuzzyScore>>this.instantiationService.createInstance(WorkbenchAsyncDataTree, 'CallStackView', treeContainer, new CallStackDelegate(), [
|
|
new SessionsRenderer(this.instantiationService, this.debugService),
|
|
new ThreadsRenderer(this.instantiationService),
|
|
this.instantiationService.createInstance(StackFramesRenderer),
|
|
new ErrorsRenderer(),
|
|
new LoadMoreRenderer(),
|
|
new ShowMoreRenderer()
|
|
], this.dataSource, {
|
|
accessibilityProvider: new CallStackAccessibilityProvider(),
|
|
ariaLabel: nls.localize({ comment: ['Debug is a noun in this context, not a verb.'], key: 'callStackAriaLabel' }, "Debug Call Stack"),
|
|
identityProvider: {
|
|
getId: (element: CallStackItem) => {
|
|
if (typeof element === 'string') {
|
|
return element;
|
|
}
|
|
if (element instanceof Array) {
|
|
return `showMore ${element[0].getId()}`;
|
|
}
|
|
|
|
return element.getId();
|
|
}
|
|
},
|
|
keyboardNavigationLabelProvider: {
|
|
getKeyboardNavigationLabel: (e: CallStackItem) => {
|
|
if (isDebugSession(e)) {
|
|
return e.getLabel();
|
|
}
|
|
if (e instanceof Thread) {
|
|
return `${e.name} ${e.stateLabel}`;
|
|
}
|
|
if (e instanceof StackFrame || typeof e === 'string') {
|
|
return e;
|
|
}
|
|
if (e instanceof ThreadAndSessionIds) {
|
|
return LoadMoreRenderer.LABEL;
|
|
}
|
|
|
|
return nls.localize('showMoreStackFrames2', "Show More Stack Frames");
|
|
}
|
|
},
|
|
expandOnlyOnTwistieClick: true,
|
|
overrideStyles: {
|
|
listBackground: this.getBackgroundColor()
|
|
}
|
|
});
|
|
|
|
this.tree.setInput(this.debugService.getModel());
|
|
|
|
const callstackNavigator = new TreeResourceNavigator(this.tree);
|
|
this._register(callstackNavigator);
|
|
this._register(callstackNavigator.onDidOpenResource(e => {
|
|
if (this.ignoreSelectionChangedEvent) {
|
|
return;
|
|
}
|
|
|
|
const focusStackFrame = (stackFrame: IStackFrame | undefined, thread: IThread | undefined, session: IDebugSession) => {
|
|
this.ignoreFocusStackFrameEvent = true;
|
|
try {
|
|
this.debugService.focusStackFrame(stackFrame, thread, session, true);
|
|
} finally {
|
|
this.ignoreFocusStackFrameEvent = false;
|
|
}
|
|
};
|
|
|
|
const element = e.element;
|
|
if (element instanceof StackFrame) {
|
|
focusStackFrame(element, element.thread, element.thread.session);
|
|
element.openInEditor(this.editorService, e.editorOptions.preserveFocus, e.sideBySide, e.editorOptions.pinned);
|
|
}
|
|
if (element instanceof Thread) {
|
|
focusStackFrame(undefined, element, element.session);
|
|
}
|
|
if (isDebugSession(element)) {
|
|
focusStackFrame(undefined, undefined, element);
|
|
}
|
|
if (element instanceof ThreadAndSessionIds) {
|
|
const session = this.debugService.getModel().getSession(element.sessionId);
|
|
const thread = session && session.getThread(element.threadId);
|
|
if (thread) {
|
|
(<Thread>thread).fetchCallStack()
|
|
.then(() => this.tree.updateChildren());
|
|
}
|
|
}
|
|
if (element instanceof Array) {
|
|
this.dataSource.deemphasizedStackFramesToShow.push(...element);
|
|
this.tree.updateChildren();
|
|
}
|
|
}));
|
|
|
|
this._register(this.debugService.getModel().onDidChangeCallStack(() => {
|
|
if (!this.isBodyVisible()) {
|
|
this.needsRefresh = true;
|
|
return;
|
|
}
|
|
|
|
if (!this.onCallStackChangeScheduler.isScheduled()) {
|
|
this.onCallStackChangeScheduler.schedule();
|
|
}
|
|
}));
|
|
const onFocusChange = Event.any<any>(this.debugService.getViewModel().onDidFocusStackFrame, this.debugService.getViewModel().onDidFocusSession);
|
|
this._register(onFocusChange(() => {
|
|
if (this.ignoreFocusStackFrameEvent) {
|
|
return;
|
|
}
|
|
if (!this.isBodyVisible()) {
|
|
this.needsRefresh = true;
|
|
return;
|
|
}
|
|
if (this.onCallStackChangeScheduler.isScheduled()) {
|
|
this.selectionNeedsUpdate = true;
|
|
return;
|
|
}
|
|
|
|
this.updateTreeSelection();
|
|
}));
|
|
this._register(this.tree.onContextMenu(e => this.onContextMenu(e)));
|
|
|
|
// Schedule the update of the call stack tree if the viewlet is opened after a session started #14684
|
|
if (this.debugService.state === State.Stopped) {
|
|
this.onCallStackChangeScheduler.schedule(0);
|
|
}
|
|
|
|
this._register(this.onDidChangeBodyVisibility(visible => {
|
|
if (visible && this.needsRefresh) {
|
|
this.onCallStackChangeScheduler.schedule();
|
|
}
|
|
}));
|
|
|
|
this._register(this.debugService.onDidNewSession(s => {
|
|
this._register(s.onDidChangeName(() => this.tree.rerender(s)));
|
|
if (s.parentSession) {
|
|
// Auto expand sessions that have sub sessions
|
|
this.parentSessionToExpand.add(s.parentSession);
|
|
}
|
|
}));
|
|
}
|
|
|
|
layoutBody(height: number, width: number): void {
|
|
this.tree.layout(height, width);
|
|
}
|
|
|
|
focus(): void {
|
|
this.tree.domFocus();
|
|
}
|
|
|
|
private updateTreeSelection(): void {
|
|
if (!this.tree || !this.tree.getInput()) {
|
|
// Tree not initialized yet
|
|
return;
|
|
}
|
|
|
|
const updateSelectionAndReveal = (element: IStackFrame | IDebugSession) => {
|
|
this.ignoreSelectionChangedEvent = true;
|
|
try {
|
|
this.tree.setSelection([element]);
|
|
// If the element is outside of the screen bounds,
|
|
// position it in the middle
|
|
if (this.tree.getRelativeTop(element) === null) {
|
|
this.tree.reveal(element, 0.5);
|
|
} else {
|
|
this.tree.reveal(element);
|
|
}
|
|
} catch (e) { }
|
|
finally {
|
|
this.ignoreSelectionChangedEvent = false;
|
|
}
|
|
};
|
|
|
|
const thread = this.debugService.getViewModel().focusedThread;
|
|
const session = this.debugService.getViewModel().focusedSession;
|
|
const stackFrame = this.debugService.getViewModel().focusedStackFrame;
|
|
if (!thread) {
|
|
if (!session) {
|
|
this.tree.setSelection([]);
|
|
} else {
|
|
updateSelectionAndReveal(session);
|
|
}
|
|
} else {
|
|
const expandPromises = [() => ignoreErrors(this.tree.expand(thread))];
|
|
let s: IDebugSession | undefined = thread.session;
|
|
while (s) {
|
|
const sessionToExpand = s;
|
|
expandPromises.push(() => ignoreErrors(this.tree.expand(sessionToExpand)));
|
|
s = s.parentSession;
|
|
}
|
|
|
|
sequence(expandPromises.reverse()).then(() => {
|
|
const toReveal = stackFrame || session;
|
|
if (toReveal) {
|
|
updateSelectionAndReveal(toReveal);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
private onContextMenu(e: ITreeContextMenuEvent<CallStackItem>): void {
|
|
const element = e.element;
|
|
if (isDebugSession(element)) {
|
|
this.callStackItemType.set('session');
|
|
} else if (element instanceof Thread) {
|
|
this.callStackItemType.set('thread');
|
|
} else if (element instanceof StackFrame) {
|
|
this.callStackItemType.set('stackFrame');
|
|
} else {
|
|
this.callStackItemType.reset();
|
|
}
|
|
|
|
const actions: IAction[] = [];
|
|
const actionsDisposable = createAndFillInContextMenuActions(this.contributedContextMenu, { arg: getContextForContributedActions(element), shouldForwardArgs: true }, actions, this.contextMenuService);
|
|
|
|
this.contextMenuService.showContextMenu({
|
|
getAnchor: () => e.anchor,
|
|
getActions: () => actions,
|
|
getActionsContext: () => getContext(element),
|
|
onHide: () => dispose(actionsDisposable)
|
|
});
|
|
}
|
|
}
|
|
|
|
interface IThreadTemplateData {
|
|
thread: HTMLElement;
|
|
name: HTMLElement;
|
|
state: HTMLElement;
|
|
stateLabel: HTMLSpanElement;
|
|
label: HighlightedLabel;
|
|
actionBar: ActionBar;
|
|
}
|
|
|
|
interface ISessionTemplateData {
|
|
session: HTMLElement;
|
|
name: HTMLElement;
|
|
state: HTMLElement;
|
|
stateLabel: HTMLSpanElement;
|
|
label: HighlightedLabel;
|
|
actionBar: ActionBar;
|
|
}
|
|
|
|
interface IErrorTemplateData {
|
|
label: HTMLElement;
|
|
}
|
|
|
|
interface ILabelTemplateData {
|
|
label: HTMLElement;
|
|
}
|
|
|
|
interface IStackFrameTemplateData {
|
|
stackFrame: HTMLElement;
|
|
file: HTMLElement;
|
|
fileName: HTMLElement;
|
|
lineNumber: HTMLElement;
|
|
label: HighlightedLabel;
|
|
actionBar: ActionBar;
|
|
}
|
|
|
|
class SessionsRenderer implements ITreeRenderer<IDebugSession, FuzzyScore, ISessionTemplateData> {
|
|
static readonly ID = 'session';
|
|
|
|
constructor(
|
|
private readonly instantiationService: IInstantiationService,
|
|
private readonly debugService: IDebugService
|
|
) { }
|
|
|
|
get templateId(): string {
|
|
return SessionsRenderer.ID;
|
|
}
|
|
|
|
renderTemplate(container: HTMLElement): ISessionTemplateData {
|
|
const session = dom.append(container, $('.session'));
|
|
const name = dom.append(session, $('.name'));
|
|
const state = dom.append(session, $('.state'));
|
|
const stateLabel = dom.append(state, $('span.label'));
|
|
const label = new HighlightedLabel(name, false);
|
|
const actionBar = new ActionBar(session);
|
|
|
|
return { session, name, state, stateLabel, label, actionBar };
|
|
}
|
|
|
|
renderElement(element: ITreeNode<IDebugSession, FuzzyScore>, _: number, data: ISessionTemplateData): void {
|
|
const session = element.element;
|
|
data.session.title = nls.localize({ key: 'session', comment: ['Session is a noun'] }, "Session");
|
|
data.label.set(session.getLabel(), createMatches(element.filterData));
|
|
const thread = session.getAllThreads().filter(t => t.stopped).pop();
|
|
|
|
data.actionBar.clear();
|
|
const actions = getActions(this.instantiationService, element.element);
|
|
data.actionBar.push(actions, { icon: true, label: false });
|
|
data.stateLabel.hidden = false;
|
|
|
|
if (thread && thread.stoppedDetails) {
|
|
data.stateLabel.textContent = thread.stoppedDetails.description || nls.localize('debugStopped', "Paused on {0}", thread.stoppedDetails.reason || '');
|
|
} else {
|
|
const hasChildSessions = this.debugService.getModel().getSessions().filter(s => s.parentSession === session).length > 0;
|
|
if (!hasChildSessions) {
|
|
data.stateLabel.textContent = nls.localize({ key: 'running', comment: ['indicates state'] }, "Running");
|
|
} else {
|
|
data.stateLabel.hidden = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
disposeTemplate(templateData: ISessionTemplateData): void {
|
|
templateData.actionBar.dispose();
|
|
}
|
|
}
|
|
|
|
class ThreadsRenderer implements ITreeRenderer<IThread, FuzzyScore, IThreadTemplateData> {
|
|
static readonly ID = 'thread';
|
|
|
|
constructor(private readonly instantiationService: IInstantiationService) { }
|
|
|
|
get templateId(): string {
|
|
return ThreadsRenderer.ID;
|
|
}
|
|
|
|
renderTemplate(container: HTMLElement): IThreadTemplateData {
|
|
const thread = dom.append(container, $('.thread'));
|
|
const name = dom.append(thread, $('.name'));
|
|
const state = dom.append(thread, $('.state'));
|
|
const stateLabel = dom.append(state, $('span.label'));
|
|
const label = new HighlightedLabel(name, false);
|
|
const actionBar = new ActionBar(thread);
|
|
|
|
return { thread, name, state, stateLabel, label, actionBar };
|
|
}
|
|
|
|
renderElement(element: ITreeNode<IThread, FuzzyScore>, index: number, data: IThreadTemplateData): void {
|
|
const thread = element.element;
|
|
data.thread.title = nls.localize('thread', "Thread");
|
|
data.label.set(thread.name, createMatches(element.filterData));
|
|
data.stateLabel.textContent = thread.stateLabel;
|
|
|
|
data.actionBar.clear();
|
|
const actions = getActions(this.instantiationService, thread);
|
|
data.actionBar.push(actions, { icon: true, label: false });
|
|
}
|
|
|
|
disposeTemplate(templateData: IThreadTemplateData): void {
|
|
templateData.actionBar.dispose();
|
|
}
|
|
}
|
|
|
|
class StackFramesRenderer implements ITreeRenderer<IStackFrame, FuzzyScore, IStackFrameTemplateData> {
|
|
static readonly ID = 'stackFrame';
|
|
|
|
constructor(@ILabelService private readonly labelService: ILabelService) { }
|
|
|
|
get templateId(): string {
|
|
return StackFramesRenderer.ID;
|
|
}
|
|
|
|
renderTemplate(container: HTMLElement): IStackFrameTemplateData {
|
|
const stackFrame = dom.append(container, $('.stack-frame'));
|
|
const labelDiv = dom.append(stackFrame, $('span.label.expression'));
|
|
const file = dom.append(stackFrame, $('.file'));
|
|
const fileName = dom.append(file, $('span.file-name'));
|
|
const wrapper = dom.append(file, $('span.line-number-wrapper'));
|
|
const lineNumber = dom.append(wrapper, $('span.line-number'));
|
|
const label = new HighlightedLabel(labelDiv, false);
|
|
const actionBar = new ActionBar(stackFrame);
|
|
|
|
return { file, fileName, label, lineNumber, stackFrame, actionBar };
|
|
}
|
|
|
|
renderElement(element: ITreeNode<IStackFrame, FuzzyScore>, index: number, data: IStackFrameTemplateData): void {
|
|
const stackFrame = element.element;
|
|
dom.toggleClass(data.stackFrame, 'disabled', !stackFrame.source || !stackFrame.source.available || isDeemphasized(stackFrame));
|
|
dom.toggleClass(data.stackFrame, 'label', stackFrame.presentationHint === 'label');
|
|
dom.toggleClass(data.stackFrame, 'subtle', stackFrame.presentationHint === 'subtle');
|
|
const hasActions = !!stackFrame.thread.session.capabilities.supportsRestartFrame && stackFrame.presentationHint !== 'label' && stackFrame.presentationHint !== 'subtle';
|
|
dom.toggleClass(data.stackFrame, 'has-actions', hasActions);
|
|
|
|
data.file.title = stackFrame.source.inMemory ? stackFrame.source.uri.path : this.labelService.getUriLabel(stackFrame.source.uri);
|
|
if (stackFrame.source.raw.origin) {
|
|
data.file.title += `\n${stackFrame.source.raw.origin}`;
|
|
}
|
|
data.label.set(stackFrame.name, createMatches(element.filterData), stackFrame.name);
|
|
data.fileName.textContent = stackFrame.getSpecificSourceName();
|
|
if (stackFrame.range.startLineNumber !== undefined) {
|
|
data.lineNumber.textContent = `${stackFrame.range.startLineNumber}`;
|
|
if (stackFrame.range.startColumn) {
|
|
data.lineNumber.textContent += `:${stackFrame.range.startColumn}`;
|
|
}
|
|
dom.removeClass(data.lineNumber, 'unavailable');
|
|
} else {
|
|
dom.addClass(data.lineNumber, 'unavailable');
|
|
}
|
|
|
|
data.actionBar.clear();
|
|
if (hasActions) {
|
|
const action = new Action('debug.callStack.restartFrame', nls.localize('restartFrame', "Restart Frame"), 'codicon-debug-restart-frame', true, () => {
|
|
return stackFrame.restart();
|
|
});
|
|
data.actionBar.push(action, { icon: true, label: false });
|
|
}
|
|
}
|
|
|
|
disposeTemplate(templateData: IStackFrameTemplateData): void {
|
|
templateData.actionBar.dispose();
|
|
}
|
|
}
|
|
|
|
class ErrorsRenderer implements ITreeRenderer<string, FuzzyScore, IErrorTemplateData> {
|
|
static readonly ID = 'error';
|
|
|
|
get templateId(): string {
|
|
return ErrorsRenderer.ID;
|
|
}
|
|
|
|
renderTemplate(container: HTMLElement): IErrorTemplateData {
|
|
const label = dom.append(container, $('.error'));
|
|
|
|
return { label };
|
|
}
|
|
|
|
renderElement(element: ITreeNode<string, FuzzyScore>, index: number, data: IErrorTemplateData): void {
|
|
const error = element.element;
|
|
data.label.textContent = error;
|
|
data.label.title = error;
|
|
}
|
|
|
|
disposeTemplate(templateData: IErrorTemplateData): void {
|
|
// noop
|
|
}
|
|
}
|
|
|
|
class LoadMoreRenderer implements ITreeRenderer<ThreadAndSessionIds, FuzzyScore, ILabelTemplateData> {
|
|
static readonly ID = 'loadMore';
|
|
static readonly LABEL = nls.localize('loadMoreStackFrames', "Load More Stack Frames");
|
|
|
|
get templateId(): string {
|
|
return LoadMoreRenderer.ID;
|
|
}
|
|
|
|
renderTemplate(container: HTMLElement): IErrorTemplateData {
|
|
const label = dom.append(container, $('.load-more'));
|
|
|
|
return { label };
|
|
}
|
|
|
|
renderElement(element: ITreeNode<ThreadAndSessionIds, FuzzyScore>, index: number, data: ILabelTemplateData): void {
|
|
data.label.textContent = LoadMoreRenderer.LABEL;
|
|
}
|
|
|
|
disposeTemplate(templateData: ILabelTemplateData): void {
|
|
// noop
|
|
}
|
|
}
|
|
|
|
class ShowMoreRenderer implements ITreeRenderer<IStackFrame[], FuzzyScore, ILabelTemplateData> {
|
|
static readonly ID = 'showMore';
|
|
|
|
get templateId(): string {
|
|
return ShowMoreRenderer.ID;
|
|
}
|
|
|
|
renderTemplate(container: HTMLElement): IErrorTemplateData {
|
|
const label = dom.append(container, $('.show-more'));
|
|
|
|
return { label };
|
|
}
|
|
|
|
renderElement(element: ITreeNode<IStackFrame[], FuzzyScore>, index: number, data: ILabelTemplateData): void {
|
|
const stackFrames = element.element;
|
|
if (stackFrames.every(sf => !!(sf.source && sf.source.origin && sf.source.origin === stackFrames[0].source.origin))) {
|
|
data.label.textContent = nls.localize('showMoreAndOrigin', "Show {0} More: {1}", stackFrames.length, stackFrames[0].source.origin);
|
|
} else {
|
|
data.label.textContent = nls.localize('showMoreStackFrames', "Show {0} More Stack Frames", stackFrames.length);
|
|
}
|
|
}
|
|
|
|
disposeTemplate(templateData: ILabelTemplateData): void {
|
|
// noop
|
|
}
|
|
}
|
|
|
|
class CallStackDelegate implements IListVirtualDelegate<CallStackItem> {
|
|
|
|
getHeight(element: CallStackItem): number {
|
|
return 22;
|
|
}
|
|
|
|
getTemplateId(element: CallStackItem): string {
|
|
if (isDebugSession(element)) {
|
|
return SessionsRenderer.ID;
|
|
}
|
|
if (element instanceof Thread) {
|
|
return ThreadsRenderer.ID;
|
|
}
|
|
if (element instanceof StackFrame) {
|
|
return StackFramesRenderer.ID;
|
|
}
|
|
if (typeof element === 'string') {
|
|
return ErrorsRenderer.ID;
|
|
}
|
|
if (element instanceof ThreadAndSessionIds) {
|
|
return LoadMoreRenderer.ID;
|
|
}
|
|
|
|
// element instanceof Array
|
|
return ShowMoreRenderer.ID;
|
|
}
|
|
}
|
|
|
|
function isDebugModel(obj: any): obj is IDebugModel {
|
|
return typeof obj.getSessions === 'function';
|
|
}
|
|
|
|
function isDebugSession(obj: any): obj is IDebugSession {
|
|
return obj && typeof obj.getAllThreads === 'function';
|
|
}
|
|
|
|
function isDeemphasized(frame: IStackFrame): boolean {
|
|
return frame.source.presentationHint === 'deemphasize' || frame.presentationHint === 'deemphasize';
|
|
}
|
|
|
|
class CallStackDataSource implements IAsyncDataSource<IDebugModel, CallStackItem> {
|
|
deemphasizedStackFramesToShow: IStackFrame[] = [];
|
|
|
|
constructor(private debugService: IDebugService) { }
|
|
|
|
hasChildren(element: IDebugModel | CallStackItem): boolean {
|
|
if (isDebugSession(element)) {
|
|
const threads = element.getAllThreads();
|
|
return (threads.length > 1) || (threads.length === 1 && threads[0].stopped) || (this.debugService.getModel().getSessions().filter(s => s.parentSession === element).length > 0);
|
|
}
|
|
|
|
return isDebugModel(element) || (element instanceof Thread && element.stopped);
|
|
}
|
|
|
|
async getChildren(element: IDebugModel | CallStackItem): Promise<CallStackItem[]> {
|
|
if (isDebugModel(element)) {
|
|
const sessions = element.getSessions();
|
|
if (sessions.length === 0) {
|
|
return Promise.resolve([]);
|
|
}
|
|
if (sessions.length > 1 || this.debugService.getViewModel().isMultiSessionView()) {
|
|
return Promise.resolve(sessions.filter(s => !s.parentSession));
|
|
}
|
|
|
|
const threads = sessions[0].getAllThreads();
|
|
// Only show the threads in the call stack if there is more than 1 thread.
|
|
return threads.length === 1 ? this.getThreadChildren(<Thread>threads[0]) : Promise.resolve(threads);
|
|
} else if (isDebugSession(element)) {
|
|
const childSessions = this.debugService.getModel().getSessions().filter(s => s.parentSession === element);
|
|
const threads: CallStackItem[] = element.getAllThreads();
|
|
if (threads.length === 1) {
|
|
// Do not show thread when there is only one to be compact.
|
|
const children = await this.getThreadChildren(<Thread>threads[0]);
|
|
return children.concat(childSessions);
|
|
}
|
|
|
|
return Promise.resolve(threads.concat(childSessions));
|
|
} else {
|
|
return this.getThreadChildren(<Thread>element);
|
|
}
|
|
}
|
|
|
|
private getThreadChildren(thread: Thread): Promise<CallStackItem[]> {
|
|
return this.getThreadCallstack(thread).then(children => {
|
|
// Check if some stack frames should be hidden under a parent element since they are deemphasized
|
|
const result: CallStackItem[] = [];
|
|
children.forEach((child, index) => {
|
|
if (child instanceof StackFrame && child.source && isDeemphasized(child)) {
|
|
// Check if the user clicked to show the deemphasized source
|
|
if (this.deemphasizedStackFramesToShow.indexOf(child) === -1) {
|
|
if (result.length) {
|
|
const last = result[result.length - 1];
|
|
if (last instanceof Array) {
|
|
// Collect all the stackframes that will be "collapsed"
|
|
last.push(child);
|
|
return;
|
|
}
|
|
}
|
|
|
|
const nextChild = index < children.length - 1 ? children[index + 1] : undefined;
|
|
if (nextChild instanceof StackFrame && nextChild.source && isDeemphasized(nextChild)) {
|
|
// Start collecting stackframes that will be "collapsed"
|
|
result.push([child]);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
result.push(child);
|
|
});
|
|
|
|
return result;
|
|
});
|
|
}
|
|
|
|
private getThreadCallstack(thread: Thread): Promise<Array<IStackFrame | string | ThreadAndSessionIds>> {
|
|
let callStack: any[] = thread.getCallStack();
|
|
let callStackPromise: Promise<any> = Promise.resolve(null);
|
|
if (!callStack || !callStack.length) {
|
|
callStackPromise = thread.fetchCallStack().then(() => callStack = thread.getCallStack());
|
|
}
|
|
|
|
return callStackPromise.then(() => {
|
|
if (callStack.length === 1 && thread.session.capabilities.supportsDelayedStackTraceLoading && thread.stoppedDetails && thread.stoppedDetails.totalFrames && thread.stoppedDetails.totalFrames > 1) {
|
|
// To reduce flashing of the call stack view simply append the stale call stack
|
|
// once we have the correct data the tree will refresh and we will no longer display it.
|
|
callStack = callStack.concat(thread.getStaleCallStack().slice(1));
|
|
}
|
|
|
|
if (thread.stoppedDetails && thread.stoppedDetails.framesErrorMessage) {
|
|
callStack = callStack.concat([thread.stoppedDetails.framesErrorMessage]);
|
|
}
|
|
if (thread.stoppedDetails && thread.stoppedDetails.totalFrames && thread.stoppedDetails.totalFrames > callStack.length && callStack.length > 1) {
|
|
callStack = callStack.concat([new ThreadAndSessionIds(thread.session.getId(), thread.threadId)]);
|
|
}
|
|
|
|
return callStack;
|
|
});
|
|
}
|
|
}
|
|
|
|
class CallStackAccessibilityProvider implements IAccessibilityProvider<CallStackItem> {
|
|
getAriaLabel(element: CallStackItem): string {
|
|
if (element instanceof Thread) {
|
|
return nls.localize('threadAriaLabel', "Thread {0}, callstack, debug", (<Thread>element).name);
|
|
}
|
|
if (element instanceof StackFrame) {
|
|
return nls.localize('stackFrameAriaLabel', "Stack Frame {0} line {1} {2}, callstack, debug", element.name, element.range.startLineNumber, element.getSpecificSourceName());
|
|
}
|
|
if (isDebugSession(element)) {
|
|
return nls.localize('sessionLabel', "Debug Session {0}", element.getLabel());
|
|
}
|
|
if (typeof element === 'string') {
|
|
return element;
|
|
}
|
|
if (element instanceof Array) {
|
|
return nls.localize('showMoreStackFrames', "Show {0} More Stack Frames", element.length);
|
|
}
|
|
|
|
// element instanceof ThreadAndSessionIds
|
|
return nls.localize('loadMoreStackFrames', "Load More Stack Frames");
|
|
}
|
|
}
|
|
|
|
function getActions(instantiationService: IInstantiationService, element: IDebugSession | IThread): IAction[] {
|
|
const getThreadActions = (thread: IThread): IAction[] => {
|
|
return [
|
|
thread.stopped ? instantiationService.createInstance(ContinueAction, thread) : instantiationService.createInstance(PauseAction, thread),
|
|
instantiationService.createInstance(StepOverAction, thread),
|
|
instantiationService.createInstance(StepIntoAction, thread),
|
|
instantiationService.createInstance(StepOutAction, thread)
|
|
];
|
|
};
|
|
|
|
if (element instanceof Thread) {
|
|
return getThreadActions(element);
|
|
}
|
|
|
|
const session = <IDebugSession>element;
|
|
const stopOrDisconectAction = isSessionAttach(session) ? instantiationService.createInstance(DisconnectAction, session) : instantiationService.createInstance(StopAction, session);
|
|
const restartAction = instantiationService.createInstance(RestartAction, session);
|
|
const threads = session.getAllThreads();
|
|
if (threads.length === 1) {
|
|
return getThreadActions(threads[0]).concat([
|
|
restartAction,
|
|
stopOrDisconectAction
|
|
]);
|
|
}
|
|
|
|
return [
|
|
restartAction,
|
|
stopOrDisconectAction
|
|
];
|
|
}
|
|
|
|
|
|
class StopAction extends Action {
|
|
|
|
constructor(
|
|
private readonly session: IDebugSession,
|
|
@ICommandService private readonly commandService: ICommandService
|
|
) {
|
|
super(`action.${STOP_ID}`, STOP_LABEL, 'debug-action codicon-debug-stop');
|
|
}
|
|
|
|
public run(): Promise<any> {
|
|
return this.commandService.executeCommand(STOP_ID, undefined, getContext(this.session));
|
|
}
|
|
}
|
|
|
|
class DisconnectAction extends Action {
|
|
|
|
constructor(
|
|
private readonly session: IDebugSession,
|
|
@ICommandService private readonly commandService: ICommandService
|
|
) {
|
|
super(`action.${DISCONNECT_ID}`, DISCONNECT_LABEL, 'debug-action codicon-debug-disconnect');
|
|
}
|
|
|
|
public run(): Promise<any> {
|
|
return this.commandService.executeCommand(DISCONNECT_ID, undefined, getContext(this.session));
|
|
}
|
|
}
|
|
|
|
class RestartAction extends Action {
|
|
|
|
constructor(
|
|
private readonly session: IDebugSession,
|
|
@ICommandService private readonly commandService: ICommandService
|
|
) {
|
|
super(`action.${RESTART_SESSION_ID}`, RESTART_LABEL, 'debug-action codicon-debug-restart');
|
|
}
|
|
|
|
public run(): Promise<any> {
|
|
return this.commandService.executeCommand(RESTART_SESSION_ID, undefined, getContext(this.session));
|
|
}
|
|
}
|
|
|
|
class StepOverAction extends Action {
|
|
|
|
constructor(
|
|
private readonly thread: IThread,
|
|
@ICommandService private readonly commandService: ICommandService
|
|
) {
|
|
super(`action.${STEP_OVER_ID}`, STEP_OVER_LABEL, 'debug-action codicon-debug-step-over', thread.stopped);
|
|
}
|
|
|
|
public run(): Promise<any> {
|
|
return this.commandService.executeCommand(STEP_OVER_ID, undefined, getContext(this.thread));
|
|
}
|
|
}
|
|
|
|
class StepIntoAction extends Action {
|
|
|
|
constructor(
|
|
private readonly thread: IThread,
|
|
@ICommandService private readonly commandService: ICommandService
|
|
) {
|
|
super(`action.${STEP_INTO_ID}`, STEP_INTO_LABEL, 'debug-action codicon-debug-step-into', thread.stopped);
|
|
}
|
|
|
|
public run(): Promise<any> {
|
|
return this.commandService.executeCommand(STEP_INTO_ID, undefined, getContext(this.thread));
|
|
}
|
|
}
|
|
|
|
class StepOutAction extends Action {
|
|
|
|
constructor(
|
|
private readonly thread: IThread,
|
|
@ICommandService private readonly commandService: ICommandService
|
|
) {
|
|
super(`action.${STEP_OUT_ID}`, STEP_OUT_LABEL, 'debug-action codicon-debug-step-out', thread.stopped);
|
|
}
|
|
|
|
public run(): Promise<any> {
|
|
return this.commandService.executeCommand(STEP_OUT_ID, undefined, getContext(this.thread));
|
|
}
|
|
}
|
|
|
|
class PauseAction extends Action {
|
|
|
|
constructor(
|
|
private readonly thread: IThread,
|
|
@ICommandService private readonly commandService: ICommandService
|
|
) {
|
|
super(`action.${PAUSE_ID}`, PAUSE_LABEL, 'debug-action codicon-debug-pause', !thread.stopped);
|
|
}
|
|
|
|
public run(): Promise<any> {
|
|
return this.commandService.executeCommand(PAUSE_ID, undefined, getContext(this.thread));
|
|
}
|
|
}
|
|
|
|
class ContinueAction extends Action {
|
|
|
|
constructor(
|
|
private readonly thread: IThread,
|
|
@ICommandService private readonly commandService: ICommandService
|
|
) {
|
|
super(`action.${CONTINUE_ID}`, CONTINUE_LABEL, 'debug-action codicon-debug-continue', thread.stopped);
|
|
}
|
|
|
|
public run(): Promise<any> {
|
|
return this.commandService.executeCommand(CONTINUE_ID, undefined, getContext(this.thread));
|
|
}
|
|
}
|