Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFModelSelectionPolicy.java')
-rw-r--r--plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFModelSelectionPolicy.java129
1 files changed, 129 insertions, 0 deletions
diff --git a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFModelSelectionPolicy.java b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFModelSelectionPolicy.java
new file mode 100644
index 000000000..d860fdd7e
--- /dev/null
+++ b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFModelSelectionPolicy.java
@@ -0,0 +1,129 @@
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Wind River Systems - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.tm.internal.tcf.debug.ui.model;
+
+import org.eclipse.debug.internal.ui.viewers.model.provisional.IModelSelectionPolicy;
+import org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationContext;
+import org.eclipse.debug.ui.IDebugUIConstants;
+import org.eclipse.jface.viewers.ISelection;
+import org.eclipse.jface.viewers.IStructuredSelection;
+import org.eclipse.jface.viewers.StructuredSelection;
+import org.eclipse.tm.internal.tcf.debug.model.TCFContextState;
+import org.eclipse.tm.tcf.services.IRunControl;
+import org.eclipse.tm.tcf.util.TCFDataCache;
+import org.eclipse.tm.tcf.util.TCFTask;
+
+class TCFModelSelectionPolicy implements IModelSelectionPolicy {
+
+ private final TCFModel model;
+
+ TCFModelSelectionPolicy(TCFModel model) {
+ this.model = model;
+ }
+
+ public boolean contains(ISelection selection, IPresentationContext context) {
+ if (selection instanceof IStructuredSelection) {
+ IStructuredSelection ss = (IStructuredSelection)selection;
+ Object e = ss.getFirstElement();
+ if (e instanceof TCFNode) {
+ TCFNode n = (TCFNode)e;
+ return !n.isDisposed() && n.model == model;
+ }
+ }
+ return false;
+ }
+
+ public boolean isSticky(ISelection selection, IPresentationContext context) {
+ if (selection instanceof IStructuredSelection) {
+ IStructuredSelection ss = (IStructuredSelection)selection;
+ Object e = ss.getFirstElement();
+ if (e instanceof TCFNode) return getSuspendReason((TCFNode)e) != null;
+ }
+ return false;
+ }
+
+ private String getSuspendReason(final TCFNode node) {
+ return new TCFTask<String>() {
+ public void run() {
+ TCFNode n = node;
+ while (n != null && !n.isDisposed()) {
+ if (n instanceof TCFNodeExecContext) {
+ TCFDataCache<TCFContextState> cache = ((TCFNodeExecContext)n).getState();
+ if (!cache.validate(this)) return;
+ TCFContextState state = cache.getData();
+ if (state != null && state.is_suspended) {
+ if (state.suspend_reason == null) {
+ done(IRunControl.REASON_USER_REQUEST);
+ }
+ else {
+ done(state.suspend_reason);
+ }
+ return;
+ }
+ }
+ n = n.parent;
+ }
+ done(null);
+ }
+ }.getE();
+ }
+
+ public boolean overrides(ISelection existing, ISelection candidate, IPresentationContext context) {
+ if (IDebugUIConstants.ID_DEBUG_VIEW.equals(context.getId())) {
+ if (existing instanceof IStructuredSelection && candidate instanceof IStructuredSelection) {
+ Object el_existing = ((IStructuredSelection)existing).getFirstElement();
+ Object el_candidate = ((IStructuredSelection)candidate).getFirstElement();
+ if (el_existing == null) return true;
+ if (el_existing == el_candidate) return true;
+ if (el_existing instanceof TCFNode && el_candidate instanceof TCFNode) {
+ if (el_existing instanceof TCFNodeStackFrame && el_candidate instanceof TCFNodeStackFrame) {
+ TCFNodeStackFrame curr = (TCFNodeStackFrame)el_existing;
+ TCFNodeStackFrame next = (TCFNodeStackFrame)el_candidate;
+ if (curr.parent == next.parent) return true;
+ }
+ if (el_existing instanceof TCFNodeStackFrame && el_candidate instanceof TCFNodeExecContext) {
+ TCFNodeStackFrame curr = (TCFNodeStackFrame)el_existing;
+ TCFNodeExecContext next = (TCFNodeExecContext)el_candidate;
+ if (curr.parent == next) return true;
+ }
+ String s1 = getSuspendReason((TCFNode)el_existing);
+ if (s1 == null) return true;
+ String s2 = getSuspendReason((TCFNode)el_candidate);
+ if (s2 == null) return false;
+ if (s2.equals(IRunControl.REASON_USER_REQUEST)) return false;
+ if (s2.equals(IRunControl.REASON_CONTAINER)) return false;
+ if (s1.equals(IRunControl.REASON_USER_REQUEST)) return true;
+ if (s1.equals(IRunControl.REASON_CONTAINER)) return true;
+ return false;
+ }
+ }
+ }
+ return true;
+ }
+
+ public ISelection replaceInvalidSelection(ISelection existing, ISelection candidate) {
+ if (existing instanceof IStructuredSelection && candidate instanceof IStructuredSelection) {
+ Object el_existing = ((IStructuredSelection)existing).getFirstElement();
+ Object el_candidate = ((IStructuredSelection)candidate).getFirstElement();
+ if (el_candidate == null) {
+ if (el_existing == null) return new StructuredSelection(model.getLaunch());
+ if (el_existing instanceof TCFNode) {
+ TCFNode node = (TCFNode)el_existing;
+ if (node.parent == null || node.parent instanceof TCFNodeLaunch) {
+ return new StructuredSelection(model.getLaunch());
+ }
+ return new StructuredSelection(node.parent);
+ }
+ }
+ }
+ return candidate;
+ }
+}

Back to the top