-
Notifications
You must be signed in to change notification settings - Fork 17
Allow to set data breakpoints #139
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
Allow to set data breakpoints #139
Conversation
973a7d7 to
fe7ae6d
Compare
|
I haven't looked at the code in detail, but I'm a little confused about the 'internal' vs. 'external' data breakpoint accounting. It looks like 'internal' breakpoints are those set through the Memory Inspector UI while 'external' are set by other means, but I'm not sure that that that should really matter. Are there differences in what the user can / should do with the two types? |
src/webview/memory-webview-view.tsx
Outdated
| new Set(columnContributionService | ||
| .getUpdateExecutors() | ||
| .concat(decorationService.getUpdateExecutors()) | ||
| .concat(breakpointService)), |
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.
A bit suspicious that the breakpoint service stands alone here. Can its functionality be broken down into more composable parts?
@colin-grant-work You are absolutely right. However, due to the problem with not being able to set data breakpoints in the VS Code extension API, this was a way to overcame it. We have the following situation right now: For this reason, the current solution tracks all data breakpoints and splits them into If you can recommend a better/stable approach I would be glad to implement it to overcome the API issue. |
|
I agree with the problem statement, but I think the details don't need to leak as widely as they currently do: we're strictly more knowledgeable / powerful than the VSCode UI, because we know about their breakpoints, but they don't know about our breakpoints. This has two consequences:
That is, both But it also suggests a further enhancement: a data breakpoints tree contributed to the debug view. There, we could show what we know to be the full set of current data breakpoints so that users have an authoritative record in the debug view as well as in our views. We still have the problem that if users use the VSCode builtin commands from the variable view, then their GUI will know about the breakpoint but not any others, but we also have our record right next to theirs. |
|
First of all, thanks a lot @haydar-metin for this PR! This is awesome work and I like the out-of-the-box thinking to overcome the data breakpoint gap in the VS Code API. This is going to be a powerful feature once we get a handle on the disconnect to the VS Code breakpoint view. What's worrying me more in the meanwhile is the disconnect between custom data breakpoints and VS Code. However, I'd advise against creating a new view for that. We need to ensure this integrates with the existing centralized breakpoint view. Otherwise, this gets difficult to manage for users. I've played around with a couple of things, but neither found a good way yet without fixing this in VS Code:
I'll keep on thinking about other ways to achieve that sync. But we may also want to consider creating a PR on VS Code. If I understand correctly, an issue exists already there. |
I think that this might be the easiest way to attack the problem from a VSCode standpoint. I think that data breakpoints have languished a bit because they've backed themselves into a corner: other breakpoints can be added without reference to a session and then sent to any session, but the way data breakpoints have been implemented, they're at least partly bound to a session. That means that they can't really treat data breakpoints the same in the plugin API - I once started down the naive path and then realized that expectations differ quite a bit - and that means that they'd have to implement entirely new API for data breakpoints. It wouldn't really be that bad - either an |
|
Thanks a lot, @colin-grant-work , for sharing your findings from previous investigations! This is really useful! |
f1c831b to
ad8062a
Compare
|
We certainly recognize the issue with not being able to display data breakpoints consistently to the user due to the current limitations in the VS Code API. For UX reasons, we would prefer not to introduce a separate view just to manage data breakpoints. Therefore, we've opened a PR in VS Code that extends the Given that this PR is in progress and hopefully will be merged soon, can we proceed with merging this PR, or are there any objections or additional considerations we should address beforehand? @colin-grant-work @jreineckearm Thank you! |
If the idea is that this PR should use the new API when available, it would seem odd to me to proceed with it before that API is available. |
|
@colin-grant-work Right, the idea was that we already include the data breakpoint feature already now, as it already adds value, and solve the remaining UX deficiency by adding data breakpoints in the VS Code breakpoint view, once the new VS Code API is available. |
|
Oh, as I just realized (thanks for the hint @haydar-metin), we need to revert ad8062a to enable the functionality before merging (before or after the VS Code API is available). |
@planger, yes I understand, but if we were holding up this PR because of the deficiencies in the current API, then I don't understand why we would proceed before those deficiencies have been remedied. Nothing has changed yet from the time that we decided not to proceed with this approach because of its UX problems imposed by the VSCode API. |
|
I understand your concern! I was just thinking, this PR already adds value as is and the UX deficiency may not be that big of an issue, if you are aware that data breakpoints don't show up in the VS Code breakpoint list. But you are right, we need to weigh the value it adds against the confusion it may entail. |
|
I'm open to an argument that we should proceed, and perhaps should have proceeded, but the fact that the API may be improved in the future doesn't directly bear on that question: we would need to decide whether we believe that the value it provides now outweighs the concerns about UX that led to our pausing in the first place. |
|
I'd like to revive this discussion since it went stale for a while. Unfortunately, the PR microsoft/vscode#226735 hasn't seen much attention after answering and implementing requested changes. Yet I believe the added value with this PR as it is could help users already. Even if it's not necessarily production quality without the VS Code change. Also, I am still a bit reluctant to add complexity for users by adding another breakpoint management dialog for the "internal" breakpoints. I am wondering if we could go with a compromise and add an experimental feature flag to the extension settings (only there, no need to have it in the view settings dialog). Users would need to opt in to get access to more yet still pre-release quality functionality. @planger , @haydar-metin , @colin-grant-work , what do you think about such approach? |
I think this is a fair compromise, as it gives us a chance to advise users about what to expect before they opt in. CC: @WyoTwT, for Ericsson's view, if you have a strong opinion. |
…ns to change columns - Show error message when the debugger fails to set the breakpoint
ad8062a to
5bdb544
Compare
|
The the latest changes now introduces:
PS: The |
jreineckearm
left a comment
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.
Some comments from code review. Not tested yet.
Both commands provide an output to the console. The VS Code command outputs all context keys after clicking somewhere.
Fixed
All internal breakpoints are now removed on disable.
Done
Done (vertically)
It is also the default behavior of VS Code if you create a breakpoint through the Variables view. Should we do it differently? |
Ah, finally got it. Missed the part that it logs to
Can confirm.
Awesome, thanks.
Great, thanks.
Was a 50/50 chance....but yeah, that's what I meant. ;-)
Got you. No, lets stay with how VS Code works. One other thing related to the discussion with @colin-grant-work earlier about |
|
I tested the changes and would be fine with merging the experimental functionality. Turning it on and off feels like a consistent experience now. Maybe just address the last two comments (logging and "remove all" name). Happy to address documentation updates separately before the next release. @colin-grant-work , do you see anything else that must change before we can merge this PR? I am planning to merge this latest on Monday afternoon (CET) unless strong objections or strong change requests come in that can't be handled separately by follow-up issues. |
I like this suggestion, I think. Since we're operating in a zone of fairly obscure distinctions, I do think it's important to try to be as clear and transparent with user-facing language as possible for both ease of use and education on the functionality. |
Sorry for the late response. Nothing from my side. |
jreineckearm
left a comment
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.
Thanks for the final touches and all the hard work on this one! :-)
Now looking forward to the API changes finding their way into VS Code to fully complete this feature.
Good to go as far as I am concerned. But will wait with merge until Monday as announced earlier.
|
Merging now as no further feedback came in. |
|
hi,Does this feature require an update to the VS Code API to be usable, and will it function properly in future Theia versions? |
|
@noneghost, as implemented here, this interacts directly with the debug adapter and skips registering breakpoints with the VSCode API, as that is currently impossible, pending microsoft/vscode#226735. Therefore, this approach should work without a VSCode API update. A future version of this plugin may update to a version of the VSCode API that includes the functionality from microsoft/vscode#226735. Such an update should be reflected in the |
Thanks for your feedback |



What it does
Allows to set data breakpoints within the memory table.
Closes #102
Peek.2024-05-30.12-16.mp4
Breakpoints set externally will have a dashed outline, internal breakpoints will be solid.
Extension API
The VSCode extension API does not support creating Data Breakpoints directly through their API. The method extHostDebugService.ts#addBreakpoints currently lacks the ability to forward data breakpoints (i.e., missing DTOs), while MainThreadDebugService.ts#$registerBreakpoints already supports it. However, we only have access to the extension API which uses the extHostDebugService internally. That means, we don't have a way to tell VSCode to show new Data Breakpoints within their UI! Consequently, we need to manually track our breakpoints (for now).
microsoft/vscode#195151
Debugger / Logs
Unfortunately, the debugger does not return the hitpoints on a stop event (it is not set). For that reason, to see the inline breakpoint marker, you need to set the data breakpoint through VSCode. For the prototype, all data breakpoints set from the outside will be assumed to be always hit for demonstration purposes.
The logs and workarounds for showcasing the prototype will be removed before merging.
https://microsoft.github.io/debug-adapter-protocol/specification
How to test
Review checklist
Reminder for reviewers