blob: a69ae2a346d1c809c61c19bfae260c1bdd835c5a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
*
* 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.ui.views.memory;
import java.util.ArrayList;
import java.util.Iterator;
import org.eclipse.debug.core.model.IMemoryBlock;
import org.eclipse.debug.internal.ui.preferences.IDebugPreferenceConstants;
import org.eclipse.debug.ui.DebugUITools;
import org.eclipse.debug.ui.memory.IMemoryRendering;
import org.eclipse.debug.ui.memory.IMemoryRenderingContainer;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.IViewActionDelegate;
import org.eclipse.ui.IViewPart;
/**
* The popup menu action for a memory rendering used to reset the current
* selection to the default first memory position
*
* @since 3.2.0
*/
public class ResetMemoryBlockAction implements IViewActionDelegate {
private IViewPart fView;
private ArrayList<Object> fSelectedMB = new ArrayList<>();
/*
* (non-Javadoc)
* @see org.eclipse.ui.IViewActionDelegate#init(org.eclipse.ui.IViewPart)
*/
@Override
public void init(IViewPart view) {
fView = view;
}
/*
* (non-Javadoc)
* @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
*/
@Override
public void run(IAction action) {
if (fSelectedMB.isEmpty()) {
return;
}
boolean resetVisible = false;
String resetPref = DebugUITools.getPreferenceStore().getString(IDebugPreferenceConstants.PREF_RESET_MEMORY_BLOCK);
if (resetPref.equals(IDebugPreferenceConstants.RESET_VISIBLE)) {
resetVisible = true;
}
Iterator<Object> iter = fSelectedMB.iterator();
while (iter.hasNext()) {
IMemoryBlock mb = (IMemoryBlock) iter.next();
if (fView instanceof MemoryView) {
MemoryView memView = (MemoryView) fView;
IMemoryRenderingContainer[] containers = memView.getMemoryRenderingContainers();
for (int i = 0; i < containers.length; i++) {
if (containers[i] instanceof RenderingViewPane) {
((RenderingViewPane) containers[i]).resetRenderings(mb, resetVisible);
}
}
}
}
}
/*
* (non-Javadoc)
* @see
* org.eclipse.ui.IActionDelegate#selectionChanged(org.eclipse.jface.action
* .IAction, org.eclipse.jface.viewers.ISelection)
*/
@Override
public void selectionChanged(IAction action, ISelection selection) {
action.setEnabled(!selection.isEmpty());
if (selection instanceof IStructuredSelection) {
IStructuredSelection strucSel = (IStructuredSelection) selection;
Object[] objs = strucSel.toArray();
fSelectedMB.clear();
for (int i = 0; i < objs.length; i++) {
if (objs[i] instanceof IMemoryBlock)
fSelectedMB.add(objs[i]);
if (objs[i] instanceof IMemoryRendering)
fSelectedMB.add(((IMemoryRendering) objs[i]).getMemoryBlock());
}
}
}
}