blob: 863c35882d08cf33273131910c9ff180d9a9784d [file] [log] [blame]
package org.eclipse.jdt.launching;
/*******************************************************************************
* Copyright (c) 2001, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************/
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.jdt.core.IJavaProject;
/**
* Default implementation for classpath provider
* <p>
* This class may be subclassed.
* </p>
* @since 2.0
*/
public class StandardClasspathProvider implements IRuntimeClasspathProvider {
/**
* @see IRuntimeClasspathProvider#computeUnresolvedClasspath(ILaunchConfiguration)
*/
public IRuntimeClasspathEntry[] computeUnresolvedClasspath(ILaunchConfiguration configuration) throws CoreException {
boolean useDefault = configuration.getAttribute(IJavaLaunchConfigurationConstants.ATTR_DEFAULT_CLASSPATH, true);
if (useDefault) {
IJavaProject proj = JavaRuntime.getJavaProject(configuration);
if (proj == null) {
// no project - use JRE's libraries by default
IVMInstall vm = JavaRuntime.computeVMInstall(configuration);
LibraryLocation[] libs = JavaRuntime.getLibraryLocations(vm);
if (libs == null) {
return new IRuntimeClasspathEntry[0];
} else {
IRuntimeClasspathEntry[] rtes = new IRuntimeClasspathEntry[libs.length];
for (int i = 0; i < libs.length; i++) {
IRuntimeClasspathEntry r = JavaRuntime.newArchiveRuntimeClasspathEntry(libs[i].getSystemLibraryPath());
r.setSourceAttachmentPath(libs[i].getSystemLibrarySourcePath());
r.setSourceAttachmentRootPath(libs[i].getPackageRootPath());
r.setClasspathProperty(IRuntimeClasspathEntry.STANDARD_CLASSES);
rtes[i] = r;
}
return rtes;
}
} else {
return JavaRuntime.computeUnresolvedRuntimeClasspath(proj);
}
} else {
// recover persisted classpath
return recoverRuntimePath(configuration, IJavaLaunchConfigurationConstants.ATTR_CLASSPATH);
}
}
/**
* @see IRuntimeClasspathProvider#resolveClasspath(IRuntimeClasspathEntry[], ILaunchConfiguration)
*/
public IRuntimeClasspathEntry[] resolveClasspath(IRuntimeClasspathEntry[] entries, ILaunchConfiguration configuration) throws CoreException {
List all = new ArrayList(entries.length);
for (int i = 0; i < entries.length; i++) {
IRuntimeClasspathEntry[] resolved =JavaRuntime.resolveRuntimeClasspathEntry(entries[i], configuration);
for (int j = 0; j < resolved.length; j++) {
all.add(resolved[j]);
}
}
return (IRuntimeClasspathEntry[])all.toArray(new IRuntimeClasspathEntry[all.size()]);
}
/**
* Returns a collection of runtime classpath entries that are defined in the
* specified attribute of the given launch configuration. When present,
* the attribute must contain a list of runtime classpath entry mementos.
*
* @param configuration launch configuration
* @param attribute attribute name containing the list of entries
* @return collection of runtime classpath entries that are defined in the
* specified attribute of the given launch configuration
* @exception CoreException if unable to retrieve the list
*/
protected IRuntimeClasspathEntry[] recoverRuntimePath(ILaunchConfiguration configuration, String attribute) throws CoreException {
List entries = (List)configuration.getAttribute(attribute, Collections.EMPTY_LIST);
IRuntimeClasspathEntry[] rtes = new IRuntimeClasspathEntry[entries.size()];
Iterator iter = entries.iterator();
int i = 0;
while (iter.hasNext()) {
rtes[i] = JavaRuntime.newRuntimeClasspathEntry((String)iter.next());
i++;
}
return rtes;
}
}