use of org.eclipse.linuxtools.internal.valgrind.ui.ValgrindViewPart in project linuxtools by eclipse.
the class ValgrindRemoteProxyLaunchDelegate method launch.
@Override
public void launch(final ILaunchConfiguration config, String mode, final ILaunch launch, IProgressMonitor m) throws CoreException {
if (m == null) {
m = new NullProgressMonitor();
}
// Clear process as we wait on it to be instantiated
process = null;
SubMonitor monitor = SubMonitor.convert(m, Messages.getString("ValgrindRemoteLaunchDelegate.task_name"), // $NON-NLS-1$
10);
// check for cancellation
if (monitor.isCanceled()) {
return;
}
this.config = config;
this.launch = launch;
try {
// remove any output from previous run
ValgrindUIPlugin.getDefault().resetView();
// reset stored launch data
getPlugin().setCurrentLaunchConfiguration(null);
getPlugin().setCurrentLaunch(null);
this.configUtils = new ConfigUtils(config);
IProject project = configUtils.getProject();
ValgrindUIPlugin.getDefault().setProfiledProject(project);
URI exeURI = new URI(configUtils.getExecutablePath());
RemoteConnection exeRC = new RemoteConnection(exeURI);
monitor.worked(1);
String valgrindPathString = RuntimeProcessFactory.getFactory().whichCommand(VALGRIND_CMD, project);
IPath valgrindFullPath = Path.fromOSString(valgrindPathString);
boolean copyExecutable = configUtils.getCopyExecutable();
if (copyExecutable) {
URI copyExeURI = new URI(configUtils.getCopyFromExecutablePath());
RemoteConnection copyExeRC = new RemoteConnection(copyExeURI);
IRemoteFileProxy copyExeRFP = copyExeRC.getRmtFileProxy();
IFileStore copyExeFS = copyExeRFP.getResource(copyExeURI.getPath());
IRemoteFileProxy exeRFP = exeRC.getRmtFileProxy();
IFileStore exeFS = exeRFP.getResource(exeURI.getPath());
IFileInfo exeFI = exeFS.fetchInfo();
if (exeFI.isDirectory()) {
// Assume the user wants to copy the file to the given directory, using
// the same filename as the "copy from" executable.
IPath copyExePath = Path.fromOSString(copyExeURI.getPath());
IPath newExePath = Path.fromOSString(exeURI.getPath()).append(copyExePath.lastSegment());
// update the exeURI with the new path.
exeURI = new URI(exeURI.getScheme(), exeURI.getAuthority(), newExePath.toString(), exeURI.getQuery(), exeURI.getFragment());
exeFS = exeRFP.getResource(exeURI.getPath());
}
copyExeFS.copy(exeFS, EFS.OVERWRITE | EFS.SHALLOW, SubMonitor.convert(monitor, 1));
// Note: assume that we don't need to create a new exeRC since the
// scheme and authority remain the same between the original exeURI and the new one.
}
valgrindVersion = getValgrindVersion(project);
IPath remoteBinFile = Path.fromOSString(exeURI.getPath());
String configWorkingDir = configUtils.getWorkingDirectory();
IFileStore workingDir;
if (configWorkingDir == null) {
// If no working directory was provided, use the directory containing the
// the executable as the working directory.
IPath workingDirPath = remoteBinFile.removeLastSegments(1);
IRemoteFileProxy workingDirRFP = exeRC.getRmtFileProxy();
workingDir = workingDirRFP.getResource(workingDirPath.toOSString());
} else {
URI workingDirURI = new URI(configUtils.getWorkingDirectory());
RemoteConnection workingDirRC = new RemoteConnection(workingDirURI);
IRemoteFileProxy workingDirRFP = workingDirRC.getRmtFileProxy();
workingDir = workingDirRFP.getResource(workingDirURI.getPath());
}
// $NON-NLS-1$
IPath remoteLogDir = Path.fromOSString("/tmp/");
// $NON-NLS-1$
outputPath = remoteLogDir.append("eclipse-valgrind-" + System.currentTimeMillis());
exeRC.createFolder(outputPath, SubMonitor.convert(monitor, 1));
// create/empty local output directory
IValgrindOutputDirectoryProvider provider = getPlugin().getOutputDirectoryProvider();
setOutputPath(config, provider.getOutputPath());
IPath localOutputDir = null;
try {
localOutputDir = provider.getOutputPath();
createDirectory(localOutputDir);
} catch (IOException e2) {
throw new CoreException(new Status(IStatus.ERROR, ValgrindLaunchPlugin.PLUGIN_ID, IStatus.OK, "", // $NON-NLS-1$
e2));
}
// tool that was launched
toolID = getTool(config);
// ask tool extension for arguments
dynamicDelegate = getDynamicDelegate(toolID);
String[] valgrindArgs = getValgrindArgumentsArray(config);
String[] executableArgs = getProgramArgumentsArray(config);
String[] allArgs = new String[executableArgs.length + valgrindArgs.length + 2];
int idx = 0;
allArgs[idx++] = VALGRIND_CMD;
for (String valgrindArg : valgrindArgs) {
allArgs[idx++] = valgrindArg;
}
allArgs[idx++] = remoteBinFile.toOSString();
for (String executableArg : executableArgs) {
allArgs[idx++] = executableArg;
}
Process p = RuntimeProcessFactory.getFactory().exec(allArgs, new String[0], workingDir, project);
int state = p.waitFor();
if (state != IRemoteCommandLauncher.OK) {
abort(// $NON-NLS-1$ //$NON-NLS-2$
Messages.getString("ValgrindLaunchConfigurationDelegate.Launch_exited_status") + " " + state + ". " + // $NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
NLS.bind(Messages.getString("ValgrindRemoteProxyLaunchDelegate.see_reference"), "IRemoteCommandLauncher") + // $NON-NLS-1$
"\n", null, ICDTLaunchConfigurationConstants.ERR_INTERNAL_ERROR);
}
if (p.exitValue() != 0) {
String line = null;
StringBuilder valgrindOutSB = new StringBuilder();
BufferedReader valgrindOut = new BufferedReader(new InputStreamReader(p.getInputStream()));
while ((line = valgrindOut.readLine()) != null) {
valgrindOutSB.append(line);
}
StringBuilder valgrindErrSB = new StringBuilder();
BufferedReader valgrindErr = new BufferedReader(new InputStreamReader(p.getErrorStream()));
while ((line = valgrindErr.readLine()) != null) {
valgrindErrSB.append(line);
}
abort(// $NON-NLS-1$
NLS.bind("ValgrindRemoteProxyLaunchDelegate.Stdout", valgrindOutSB.toString()) + "\n" + // $NON-NLS-1$ //$NON-NLS-2$
NLS.bind("ValgrindRemoteProxyLaunchDelegate.Stderr", valgrindErrSB.toString()), null, ICDTLaunchConfigurationConstants.ERR_INTERNAL_ERROR);
}
// move remote log files to local directory
exeRC.download(outputPath, localOutputDir, SubMonitor.convert(monitor, 1));
// remove remote log dir and all files under it
exeRC.delete(outputPath, SubMonitor.convert(monitor, 1));
// store these for use by other classes
getPlugin().setCurrentLaunchConfiguration(config);
getPlugin().setCurrentLaunch(launch);
// parse Valgrind logs
IValgrindMessage[] messages = parseLogs(localOutputDir);
// create launch summary string to distinguish this launch
launchStr = createLaunchStr(valgrindFullPath);
// create view
ValgrindUIPlugin.getDefault().createView(launchStr, toolID);
// set log messages
ValgrindViewPart view = ValgrindUIPlugin.getDefault().getView();
view.setMessages(messages);
monitor.worked(1);
// pass off control to extender
dynamicDelegate.handleLaunch(config, launch, localOutputDir, monitor.newChild(2));
// initialize tool-specific part of view
dynamicDelegate.initializeView(view.getDynamicView(), launchStr, monitor.newChild(1));
// refresh view
ValgrindUIPlugin.getDefault().refreshView();
// show view
ValgrindUIPlugin.getDefault().showView();
monitor.worked(1);
} catch (URISyntaxException | IOException | RemoteConnectionException | InterruptedException e) {
abort(e.getLocalizedMessage(), null, ICDTLaunchConfigurationConstants.ERR_INTERNAL_ERROR);
} finally {
monitor.done();
m.done();
}
}
use of org.eclipse.linuxtools.internal.valgrind.ui.ValgrindViewPart in project linuxtools by eclipse.
the class AbstractMassifTest method getToolbarAction.
protected IAction getToolbarAction(String actionId) {
IAction result = null;
ValgrindViewPart view = ValgrindUIPlugin.getDefault().getView();
IToolBarManager manager = view.getViewSite().getActionBars().getToolBarManager();
for (IContributionItem item : manager.getItems()) {
if (item instanceof ActionContributionItem) {
ActionContributionItem actionItem = (ActionContributionItem) item;
if (actionItem.getAction().getId().equals(actionId)) {
result = actionItem.getAction();
}
}
}
return result;
}
use of org.eclipse.linuxtools.internal.valgrind.ui.ValgrindViewPart in project linuxtools by eclipse.
the class MultiProcessTest method testExecPidMenu.
@Test
public void testExecPidMenu() throws CoreException, URISyntaxException, IOException {
ILaunchConfigurationWorkingCopy config = createConfiguration(proj.getProject()).getWorkingCopy();
config.setAttribute(LaunchConfigurationConstants.ATTR_GENERAL_TRACECHILD, true);
config.doSave();
// $NON-NLS-1$
doLaunch(config, "testExec");
ValgrindViewPart view = ValgrindUIPlugin.getDefault().getView();
MassifViewPart dynamicView = (MassifViewPart) view.getDynamicView();
MassifOutput output = dynamicView.getOutput();
MassifPidMenuAction menuAction = null;
IToolBarManager manager = view.getViewSite().getActionBars().getToolBarManager();
for (IContributionItem item : manager.getItems()) {
if (item instanceof ActionContributionItem && ((ActionContributionItem) item).getAction() instanceof MassifPidMenuAction) {
menuAction = (MassifPidMenuAction) ((ActionContributionItem) item).getAction();
}
}
assertNotNull(menuAction);
Integer[] pids = dynamicView.getOutput().getPids();
Shell shell = new Shell(Display.getCurrent());
Menu pidMenu = menuAction.getMenu(shell);
assertEquals(2, pidMenu.getItemCount());
ActionContributionItem firstPid = (ActionContributionItem) pidMenu.getItem(0).getData();
ActionContributionItem secondPid = (ActionContributionItem) pidMenu.getItem(1).getData();
// check initial state
assertTrue(firstPid.getAction().isChecked());
assertFalse(secondPid.getAction().isChecked());
assertArrayEquals(output.getSnapshots(pids[0]), dynamicView.getSnapshots());
// select second pid
selectItem(pidMenu, 1);
assertFalse(firstPid.getAction().isChecked());
assertTrue(secondPid.getAction().isChecked());
assertArrayEquals(output.getSnapshots(pids[1]), dynamicView.getSnapshots());
// select second pid again
selectItem(pidMenu, 1);
assertFalse(firstPid.getAction().isChecked());
assertTrue(secondPid.getAction().isChecked());
assertArrayEquals(output.getSnapshots(pids[1]), dynamicView.getSnapshots());
// select first pid
selectItem(pidMenu, 0);
assertTrue(firstPid.getAction().isChecked());
assertFalse(secondPid.getAction().isChecked());
assertArrayEquals(output.getSnapshots(pids[0]), dynamicView.getSnapshots());
}
use of org.eclipse.linuxtools.internal.valgrind.ui.ValgrindViewPart in project linuxtools by eclipse.
the class DoubleClickTest method doDoubleClick.
private void doDoubleClick() {
ValgrindViewPart view = ValgrindUIPlugin.getDefault().getView();
CoreMessagesViewer viewer = view.getMessagesViewer();
// get first leaf
IValgrindMessage[] elements = (IValgrindMessage[]) viewer.getTreeViewer().getInput();
IValgrindMessage element = elements[0];
TreePath path = new TreePath(new Object[] { element });
frame = null;
while (element.getChildren().length > 0) {
element = element.getChildren()[0];
path = path.createChildPath(element);
if (element instanceof ValgrindStackFrame) {
frame = (ValgrindStackFrame) element;
}
}
assertNotNull(frame);
viewer.getTreeViewer().expandToLevel(frame, AbstractTreeViewer.ALL_LEVELS);
TreeSelection selection = new TreeSelection(path);
// do double click
IDoubleClickListener listener = viewer.getDoubleClickListener();
listener.doubleClick(new DoubleClickEvent(viewer.getTreeViewer(), selection));
}
use of org.eclipse.linuxtools.internal.valgrind.ui.ValgrindViewPart in project linuxtools by eclipse.
the class LaunchConfigTabTest method testValgrindError.
@Test
public void testValgrindError() throws Exception {
// $NON-NLS-1$
String notExistentFile = "DOES NOT EXIST";
ILaunchConfigurationWorkingCopy wc = initConfig();
tab.getSuppFileList().add(notExistentFile);
tab.performApply(wc);
config = wc.doSave();
assertFalse(tab.isValid(config));
// $NON-NLS-1$
doLaunch(config, "testValgrindError");
ValgrindViewPart view = ValgrindUIPlugin.getDefault().getView();
IValgrindMessage[] messages = view.getMessages();
assertTrue(messages.length > 0);
String text = messages[0].getText();
assertTrue(text.contains(notExistentFile));
}
Aggregations