/******************************************************************************* * Copyright (c) 2008, 2009 QNX Software Systems 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: * QNX Software Systems - initial API and implementation * Ericsson - Modified for DSF * Marc Khouzam (Ericsson) - Add support for multi-attach (Bug 293679) *******************************************************************************/ package org.eclipse.cdt.dsf.gdb.internal.ui.launching; import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants; import org.eclipse.cdt.dsf.gdb.internal.ui.GdbUIPlugin; import org.eclipse.cdt.dsf.gdb.launching.IProcessExtendedInfo; import org.eclipse.cdt.dsf.gdb.launching.LaunchMessages; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IPath; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Path; import org.eclipse.core.runtime.Status; import org.eclipse.debug.core.IStatusHandler; import org.eclipse.jface.dialogs.InputDialog; import org.eclipse.jface.dialogs.MessageDialog; import org.eclipse.jface.viewers.ILabelProvider; import org.eclipse.jface.viewers.LabelProvider; import org.eclipse.jface.window.Window; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.widgets.Shell; public class ProcessPrompter implements IStatusHandler { public static class PrompterInfo { public boolean supportsNewProcess; public IProcessExtendedInfo[] processList; public PrompterInfo(boolean supportsNew, IProcessExtendedInfo[] list) { supportsNewProcess = supportsNew; processList = list; } } /* * (non-Javadoc) * * @see org.eclipse.debug.core.IStatusHandler#handleStatus(org.eclipse.core.runtime.IStatus, * java.lang.Object) */ public Object handleStatus(IStatus status, Object info) throws CoreException { Shell shell = GdbUIPlugin.getShell(); if (shell == null) { IStatus error = new Status(IStatus.ERROR, GdbUIPlugin.getUniqueIdentifier(), ICDTLaunchConfigurationConstants.ERR_INTERNAL_ERROR, LaunchMessages.getString("CoreFileLaunchDelegate.No_Shell_available_in_Launch"), null); //$NON-NLS-1$ throw new CoreException(error); } PrompterInfo prompterInfo = (PrompterInfo) info; IProcessExtendedInfo[] plist = prompterInfo.processList; if (plist == null) { MessageDialog.openError( shell, LaunchMessages.getString("LocalAttachLaunchDelegate.CDT_Launch_Error"), LaunchMessages.getString("LocalAttachLaunchDelegate.Platform_cannot_list_processes")); //$NON-NLS-1$ //$NON-NLS-2$ return null; } if (plist.length == 0) { // No list available, just let the user put in a pid directly InputDialog dialog = new InputDialog(shell, LaunchMessages.getString("LocalAttachLaunchDelegate.Select_Process"), //$NON-NLS-1$ LaunchMessages.getString("LocalAttachLaunchDelegate.Select_Process_to_attach_debugger_to"), //$NON-NLS-1$ null, null); if (dialog.open() == Window.OK) { String pidStr = dialog.getValue(); try { return Integer.parseInt(pidStr); } catch (NumberFormatException e) { } } } else { ILabelProvider provider = new LabelProvider() { /* * (non-Javadoc) * * @see org.eclipse.jface.viewers.LabelProvider#getText(java.lang.Object) */ @Override public String getText(Object element) { IProcessExtendedInfo info = (IProcessExtendedInfo)element; IPath path = new Path(info.getName()); StringBuffer text = new StringBuffer(path.lastSegment()); String owner = info.getOwner(); if (owner != null) { text.append(" (" + owner + ")"); //$NON-NLS-1$//$NON-NLS-2$ } text.append(" - " + info.getPid()); //$NON-NLS-1$ String[] cores = info.getCores(); if (cores != null && cores.length > 0) { String coreStr; if (cores.length == 1) { coreStr = LaunchUIMessages.getString("ProcessPrompter.Core"); //$NON-NLS-1$ } else { coreStr = LaunchUIMessages.getString("ProcessPrompter.Cores"); //$NON-NLS-1$ } text.append(" [" + coreStr + ": "); //$NON-NLS-1$//$NON-NLS-2$ for (String core : cores) { text.append(core + ", "); //$NON-NLS-1$ } // Remove the last comma and space text.replace(text.length()-2, text.length(), "]"); //$NON-NLS-1$ } return text.toString(); } /* * (non-Javadoc) * * @see org.eclipse.jface.viewers.LabelProvider#getImage(java.lang.Object) */ @Override public Image getImage(Object element) { return LaunchImages.get(LaunchImages.IMG_OBJS_EXEC); } }; ILabelProvider qprovider = new LabelProvider() { @Override public String getText(Object element) { IProcessExtendedInfo info = (IProcessExtendedInfo)element; return info.getName(); } /* * (non-Javadoc) * * @see org.eclipse.jface.viewers.LabelProvider#getImage(java.lang.Object) */ @Override public Image getImage(Object element) { return LaunchImages.get(LaunchImages.IMG_OBJS_EXEC); } }; // Display the list of processes and have the user choose ProcessPrompterDialog dialog = new ProcessPrompterDialog(shell, provider, qprovider, prompterInfo.supportsNewProcess); dialog.setTitle(LaunchUIMessages.getString("LocalAttachLaunchDelegate.Select_Process")); //$NON-NLS-1$ dialog.setMessage(LaunchUIMessages.getString("LocalAttachLaunchDelegate.Select_Process_to_attach_debugger_to")); //$NON-NLS-1$ // Allow for multiple selection dialog.setMultipleSelection(true); dialog.setElements(plist); if (dialog.open() == Window.OK) { // First check if the user pressed the New button String binaryPath = dialog.getBinaryPath(); if (binaryPath != null) { return binaryPath; } Object[] results = dialog.getResult(); if (results != null) { IProcessExtendedInfo[] processes = new IProcessExtendedInfo[results.length]; for (int i=0; i<processes.length; i++) { processes[i] = (IProcessExtendedInfo)results[i]; } return processes; } } } return null; } }