Skip to content
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 support for conditional exception breakpoints #12445

Merged
merged 3 commits into from
Jun 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

## v1.39.0 - 06/29/2023

- [debug] added support for conditional exception breakpoints [#12445](https://github.com/eclipse-theia/theia/pull/12445)

<a name="breaking_changes_1.39.0">[Breaking Changes:](#breaking_changes_1.39.0)</a>

- [repo] with the upgrade to Inversify 6.0, a few initialization methods were adjusted. See also [this migration guide entry](https://github.com/eclipse-theia/theia/blob/master/doc/Migration.md#inversify-60). Additionally, other changes include: [#12425](https://github.com/eclipse-theia/theia/pull/12425)
Expand Down
8 changes: 8 additions & 0 deletions packages/debug/src/browser/breakpoint/breakpoint-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,14 @@ export class BreakpointManager extends MarkerManager<SourceBreakpoint> {
}
}

updateExceptionBreakpoint(filter: string, options: Partial<Pick<ExceptionBreakpoint, 'condition' | 'enabled'>>): void {
const breakpoint = this.getExceptionBreakpoint(filter);
if (breakpoint) {
Object.assign(breakpoint, options);
this.fireOnDidChangeMarkers(BreakpointManager.EXCEPTION_URI);
}
}

protected functionBreakpoints: FunctionBreakpoint[] = [];

getFunctionBreakpoints(): FunctionBreakpoint[] {
Expand Down
2 changes: 2 additions & 0 deletions packages/debug/src/browser/breakpoint/breakpoint-marker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,14 @@ export namespace BreakpointMarker {

export interface ExceptionBreakpoint {
enabled: boolean;
condition?: string;
raw: DebugProtocol.ExceptionBreakpointsFilter;
}
export namespace ExceptionBreakpoint {
export function create(data: DebugProtocol.ExceptionBreakpointsFilter, origin?: ExceptionBreakpoint): ExceptionBreakpoint {
return {
enabled: origin ? origin.enabled : false,
condition: origin ? origin.condition : undefined,
raw: {
...(origin && origin.raw),
...data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ import { DebugBreakpoint } from './model/debug-breakpoint';
import { nls } from '@theia/core/lib/common/nls';
import { DebugInstructionBreakpoint } from './model/debug-instruction-breakpoint';
import { DebugConfiguration } from '../common/debug-configuration';
import { DebugExceptionBreakpoint } from './view/debug-exception-breakpoint';

export namespace DebugMenus {
export const DEBUG = [...MAIN_MENU_BAR, '6_debug'];
Expand Down Expand Up @@ -212,6 +213,11 @@ export namespace DebugCommands {
originalLabel: 'Edit Logpoint...',
label: nlsEditBreakpoint('Logpoint')
}, '', DEBUG_CATEGORY_KEY);
export const EDIT_BREAKPOINT_CONDITION = Command.toLocalizedCommand({
id: 'debug.breakpoint.editCondition',
category: DEBUG_CATEGORY,
label: 'Edit Condition...'
}, '', DEBUG_CATEGORY_KEY);
export const REMOVE_BREAKPOINT = Command.toLocalizedCommand({
id: 'debug.breakpoint.remove',
category: DEBUG_CATEGORY,
Expand Down Expand Up @@ -596,7 +602,8 @@ export class DebugFrontendApplicationContribution extends AbstractViewContributi

registerMenuActions(DebugBreakpointsWidget.EDIT_MENU,
DebugCommands.EDIT_BREAKPOINT,
DebugCommands.EDIT_LOGPOINT
DebugCommands.EDIT_LOGPOINT,
DebugCommands.EDIT_BREAKPOINT_CONDITION
);
registerMenuActions(DebugBreakpointsWidget.REMOVE_MENU,
DebugCommands.REMOVE_BREAKPOINT,
Expand Down Expand Up @@ -787,6 +794,16 @@ export class DebugFrontendApplicationContribution extends AbstractViewContributi
isEnabled: () => !!this.selectedLogpoint,
isVisible: () => !!this.selectedLogpoint
});
registry.registerCommand(DebugCommands.EDIT_BREAKPOINT_CONDITION, {
execute: async () => {
const { selectedExceptionBreakpoint } = this;
if (selectedExceptionBreakpoint) {
await selectedExceptionBreakpoint.editCondition();
}
},
isEnabled: () => !!this.selectedExceptionBreakpoint?.data.raw.supportsCondition,
isVisible: () => !!this.selectedExceptionBreakpoint?.data.raw.supportsCondition
});
registry.registerCommand(DebugCommands.REMOVE_BREAKPOINT, {
execute: () => {
const selectedBreakpoint = this.selectedSettableBreakpoint;
Expand Down Expand Up @@ -1216,6 +1233,11 @@ export class DebugFrontendApplicationContribution extends AbstractViewContributi
return this.selectedAnyBreakpoint;
}
}
get selectedExceptionBreakpoint(): DebugExceptionBreakpoint | undefined {
const { breakpoints } = this;
const selectedElement = breakpoints && breakpoints.selectedElement;
return selectedElement instanceof DebugExceptionBreakpoint ? selectedElement : undefined;
}

get selectedSettableBreakpoint(): DebugFunctionBreakpoint | DebugInstructionBreakpoint | DebugSourceBreakpoint | undefined {
const selected = this.selectedAnyBreakpoint;
Expand Down
14 changes: 11 additions & 3 deletions packages/debug/src/browser/debug-session.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -693,13 +693,21 @@ export class DebugSession implements CompositeTreeElement {
}

protected async sendExceptionBreakpoints(): Promise<void> {
const filters = [];
const filters: string[] = [];
const filterOptions: DebugProtocol.ExceptionFilterOptions[] | undefined = this.capabilities.supportsExceptionFilterOptions ? [] : undefined;
for (const breakpoint of this.breakpoints.getExceptionBreakpoints()) {
if (breakpoint.enabled) {
filters.push(breakpoint.raw.filter);
if (filterOptions) {
filterOptions.push({
filterId: breakpoint.raw.filter,
condition: breakpoint.condition
});
} else {
filters.push(breakpoint.raw.filter);
}
}
}
await this.sendRequest('setExceptionBreakpoints', { filters });
await this.sendRequest('setExceptionBreakpoints', { filters, filterOptions });
}

protected async sendFunctionBreakpoints(affectedUri: URI): Promise<void> {
Expand Down
29 changes: 27 additions & 2 deletions packages/debug/src/browser/view/debug-exception-breakpoint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ import * as React from '@theia/core/shared/react';
import { TreeElement } from '@theia/core/lib/browser/source-tree';
import { BreakpointManager } from '../breakpoint/breakpoint-manager';
import { ExceptionBreakpoint } from '../breakpoint/breakpoint-marker';
import { SingleTextInputDialog } from '@theia/core/lib/browser/dialogs';
import { TREE_NODE_INFO_CLASS } from '@theia/core/lib/browser';
import { nls } from '@theia/core';

export class DebugExceptionBreakpoint implements TreeElement {

Expand All @@ -31,13 +34,35 @@ export class DebugExceptionBreakpoint implements TreeElement {
}

render(): React.ReactNode {
return <div title={this.data.raw.label} className='theia-source-breakpoint'>
return <div title={this.data.raw.description || this.data.raw.label} className='theia-source-breakpoint'>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Drive-by fix?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's right.

<span className='theia-debug-breakpoint-icon' />
<input type='checkbox' checked={this.data.enabled} onChange={this.toggle} />
<span className='line-info'>{this.data.raw.label}</span>
<span className='line-info'>
<span className='name'>{this.data.raw.label} </span>
{this.data.condition &&
<span title={nls.localizeByDefault('Expression condition: {0}', this.data.condition)}
className={'path ' + TREE_NODE_INFO_CLASS}>{this.data.condition} </span>}
</span>
</div>;
}

protected toggle = () => this.breakpoints.toggleExceptionBreakpoint(this.data.raw.filter);

async editCondition(): Promise<void> {
const inputDialog = new SingleTextInputDialog({
title: this.data.raw.label,
placeholder: this.data.raw.conditionDescription,
initialValue: this.data.condition
});
let condition = await inputDialog.open();
if (condition === undefined) {
return;
}
if (condition === '') {
condition = undefined;
}
if (condition !== this.data.condition) {
this.breakpoints.updateExceptionBreakpoint(this.data.raw.filter, { condition });
}
}
}