blob: 8501ba41cb119a2dd8eb7ffd099619e9712b9a55 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.internal.ui.launchConfigurations;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.IStatusHandler;
import org.eclipse.debug.internal.ui.DebugUIPlugin;
import org.eclipse.debug.internal.ui.IInternalDebugUIConstants;
import org.eclipse.debug.ui.DebugUITools;
import org.eclipse.debug.ui.IDebugUIConstants;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.dialogs.IDialogSettings;
import org.eclipse.jface.dialogs.MessageDialogWithToggle;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.jface.viewers.IStructuredContentProvider;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.dialogs.ListSelectionDialog;
import org.eclipse.ui.model.AdaptableList;
import org.eclipse.ui.model.WorkbenchContentProvider;
import org.eclipse.ui.model.WorkbenchPartLabelProvider;
/**
* Status handler to prompt for saving of resources prior to launching.
* <p>
* This class provides a behavior breaking function from 3.1. We now perform pre-launch saving for resources
* scoped to the affected projects of the launch instead of all unsaved resources from within the current workspace.
* </p>
* <p>
* The 'breaking' occurs as the saving is moved from <code>DebugUIPlugin</code> to the launch configuration delegate, which will require
* implementors of <code>LaunchConfigurationDelegate</code> to incorporate the use of this status handler to perform any prelaunch saving.
* </p>
* @since 3.2
*/
public class SaveScopeResourcesHandler implements IStatusHandler {
/**
* Provides a custom class for a resizable selection dialog with a don't ask again button on it
* @since 3.2
*/
class ScopedResourcesSelectionDialog extends ListSelectionDialog {
private final String SETTINGS_ID = IDebugUIConstants.PLUGIN_ID + ".SCOPED_SAVE_SELECTION_DIALOG"; //$NON-NLS-1$
Button fSavePref;
public ScopedResourcesSelectionDialog(Shell parentShell, Object input, IStructuredContentProvider contentProvider, ILabelProvider labelProvider, String message) {
super(parentShell, input, contentProvider, labelProvider, message);
setShellStyle(getShellStyle() | SWT.RESIZE);
}
protected Control createDialogArea(Composite parent) {
Composite ctrl = (Composite) super.createDialogArea(parent);
fSavePref = new Button(ctrl, SWT.CHECK);
fSavePref.setText(LaunchConfigurationsMessages.SaveScopeResourcesHandler_1);
return ctrl;
}
protected void okPressed() {
IPreferenceStore store = DebugUIPlugin.getDefault().getPreferenceStore();
String val = (fSavePref.getSelection() ? MessageDialogWithToggle.ALWAYS : MessageDialogWithToggle.PROMPT);
store.setValue(IInternalDebugUIConstants.PREF_SAVE_DIRTY_EDITORS_BEFORE_LAUNCH, val);
super.okPressed();
}
protected IDialogSettings getDialogBoundsSettings() {
IDialogSettings settings = DebugUIPlugin.getDefault().getDialogSettings();
IDialogSettings section = settings.getSection(SETTINGS_ID);
if (section == null) {
section = settings.addNewSection(SETTINGS_ID);
}
return section;
}
}
/**
* The objects to save (if any)
*/
Object[] fSaves = null;
/* (non-Javadoc)
*
* Source object is an array - a launch configuration and an array of projects to save resources for.
*
* @see org.eclipse.debug.core.IStatusHandler#handleStatus(org.eclipse.core.runtime.IStatus, java.lang.Object)
*/
public Object handleStatus(IStatus status, Object source) throws CoreException {
// unmarshal config and projets
ILaunchConfiguration config = null;
IProject[] projects = null;
if (source instanceof Object[]) {
Object[] objects = (Object[]) source;
if (objects.length == 2) {
config = (ILaunchConfiguration) objects[0];
projects = (IProject[]) objects[1];
}
}
if (config != null) {
if (DebugUITools.isPrivate(config)) {
return Boolean.TRUE;
}
}
if (projects != null) {
IPreferenceStore store = DebugUIPlugin.getDefault().getPreferenceStore();
String save = store.getString(IInternalDebugUIConstants.PREF_SAVE_DIRTY_EDITORS_BEFORE_LAUNCH);
int ret = showSaveDialog(projects, !save.equals(MessageDialogWithToggle.NEVER), save.equals(MessageDialogWithToggle.PROMPT));
if(ret == IDialogConstants.OK_ID) {
doSave();
return Boolean.TRUE;
}
return Boolean.FALSE;
}
else {
DebugUIPlugin.preLaunchSave();
return Boolean.TRUE;
}
}
/**
*
* Builds the list of editors that apply to this build that need to be saved
*
* @param projects the projects involved in this build, used to scope the searching process
* @return the list of dirty editors for this launch to save, never null
*/
protected IEditorPart[] getScopedDirtyEditors(IProject[] projects) {
List dirtyparts = new ArrayList();
IWorkbenchWindow[] windows = PlatformUI.getWorkbench().getWorkbenchWindows();
for(int l = 0; l < windows.length; l++) {
IWorkbenchPage[] pages = windows[l].getPages();
for(int i = 0; i < pages.length; i++) {
IEditorPart[] eparts = pages[i].getDirtyEditors();
for(int j = 0; j < eparts.length; j++) {
IResource resource = (IResource)eparts[j].getEditorInput().getAdapter(IResource.class);
if(resource != null) {
for(int k = 0; k < projects.length; k++) {
if(projects[k].equals(resource.getProject()) & !dirtyparts.contains(eparts[j])) {
dirtyparts.add(eparts[j]);
}
}
}
}
}
}
return (IEditorPart[])dirtyparts.toArray(new IEditorPart[dirtyparts.size()]);
}
/**
* Performs the save of the editor parts returned by getScopedResources
*/
protected void doSave() {
if(fSaves != null) {
for (int i = 0; i < fSaves.length; i++) {
((IEditorPart)fSaves[i]).doSave(new NullProgressMonitor());
}
}
}
/**
* show the save dialog with a list of editors to save (if any)
* The dialog is also not shown if the the pref for automatically saving dirty before laucnh is set to always
* @param projects the projects to consider for the save
* @param save if we should save
* @param prompt if we should prompt to save or do it automatically
* @return the dialog status, to be propogated back to the <code>handleStatus</code> method
*/
protected int showSaveDialog(IProject[] projects, boolean save, boolean prompt) {
if(save) {
IEditorPart[] editors = getScopedDirtyEditors(projects);
if(prompt && (editors.length > 0)) {
ScopedResourcesSelectionDialog lsd = new ScopedResourcesSelectionDialog(DebugUIPlugin.getShell(),
new AdaptableList(editors),
new WorkbenchContentProvider(),
new WorkbenchPartLabelProvider(),
LaunchConfigurationsMessages.SaveScopeResourcesHandler_2);
lsd.setInitialSelections(editors);
lsd.setTitle(LaunchConfigurationsMessages.SaveScopeResourcesHandler_3);
if(lsd.open() == IDialogConstants.CANCEL_ID) {
return IDialogConstants.CANCEL_ID;
}
fSaves = lsd.getResult();
}
else {
fSaves = editors;
}
}
return IDialogConstants.OK_ID;
}
}