-
Notifications
You must be signed in to change notification settings - Fork 167
Add support for the Resume Other Threads operation. #2724
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
Open
SougandhS
wants to merge
1
commit into
eclipse-platform:master
Choose a base branch
from
SougandhS:Resume_Others
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
debug/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IResumeOthersHandler.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| /******************************************************************************* | ||
| * Copyright (c) 2026 IBM Corporation. | ||
| * | ||
| * This program and the accompanying materials | ||
| * are made available under the terms of the Eclipse Public License 2.0 | ||
| * which accompanies this distribution, and is available at | ||
| * https://www.eclipse.org/legal/epl-2.0/ | ||
| * | ||
| * SPDX-License-Identifier: EPL-2.0 | ||
| * | ||
| * Contributors: | ||
| * IBM Corporation - initial API and implementation | ||
| *******************************************************************************/ | ||
| package org.eclipse.debug.core.commands; | ||
|
|
||
| /** | ||
| * A resume others handler typically resumes all suspended threads associated | ||
| * with the same debug target, excluding the selected thread. | ||
| * <p> | ||
| * Clients may implement this interface. The debug platform provides a "Resume | ||
| * Others" action that delegates to this handler interface. | ||
| * </p> | ||
| * | ||
| * @since 3.23 | ||
| */ | ||
| public interface IResumeOthersHandler extends IDebugCommandHandler { | ||
|
|
||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
...eclipse.debug.core/core/org/eclipse/debug/internal/core/commands/ResumeOthersCommand.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,67 @@ | ||
| /******************************************************************************* | ||
| * Copyright (c) 2026 IBM Corporation. | ||
| * | ||
| * This program and the accompanying materials | ||
| * are made available under the terms of the Eclipse Public License 2.0 | ||
| * which accompanies this distribution, and is available at | ||
| * https://www.eclipse.org/legal/epl-2.0/ | ||
| * | ||
| * SPDX-License-Identifier: EPL-2.0 | ||
| * | ||
| * Contributors: | ||
| * IBM Corporation - initial API and implementation | ||
| *******************************************************************************/ | ||
| package org.eclipse.debug.internal.core.commands; | ||
|
|
||
| import java.util.Arrays; | ||
| import java.util.Set; | ||
| import java.util.stream.Collectors; | ||
|
|
||
| import org.eclipse.core.runtime.CoreException; | ||
| import org.eclipse.core.runtime.IProgressMonitor; | ||
| import org.eclipse.debug.core.IRequest; | ||
| import org.eclipse.debug.core.commands.IDebugCommandRequest; | ||
| import org.eclipse.debug.core.commands.IResumeOthersHandler; | ||
| import org.eclipse.debug.core.model.IDebugTarget; | ||
| import org.eclipse.debug.core.model.IThread; | ||
|
|
||
| /** | ||
| * Default resume others command for the standard debug model. | ||
| * | ||
| * @since 3.3 | ||
| */ | ||
| public class ResumeOthersCommand extends SuspendCommand implements IResumeOthersHandler { | ||
|
|
||
| @Override | ||
| protected void execute(Object target) throws CoreException { | ||
| IThread currentThread = (IThread) target; | ||
| if (currentThread.canResume()) { | ||
| currentThread.resume(); | ||
| } | ||
| } | ||
| @Override | ||
| protected void doExecute(Object[] targets, IProgressMonitor monitor, IRequest request) throws CoreException { | ||
|
|
||
| Set<IThread> selectedThreads = Arrays.stream(targets).map(IThread.class::cast).collect(Collectors.toSet()); | ||
|
|
||
| IDebugTarget debugTarget = ((IThread) targets[0]).getDebugTarget(); | ||
|
|
||
| for (IThread thread : debugTarget.getThreads()) { | ||
| if (!selectedThreads.contains(thread)) { | ||
| execute(thread); | ||
| monitor.worked(1); | ||
| } | ||
| } | ||
| } | ||
|
|
||
| @Override | ||
| protected boolean isExecutable(Object target) { | ||
| return ((IThread) target).canResume(); | ||
| } | ||
|
SougandhS marked this conversation as resolved.
|
||
|
|
||
| @Override | ||
| protected Object getEnabledStateJobFamily(IDebugCommandRequest request) { | ||
| return IResumeOthersHandler.class; | ||
| } | ||
|
|
||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.