blob: 72af911e10e30d428394c4325345889e2fd6670a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2010 QNX Software Systems 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:
* QNX Software Systems - Initial implementation
* Tianchao Li (tianchao.li@gmail.com) - arbitrary build directory (bug #136136)
*******************************************************************************/
package org.eclipse.cdt.make.core;
import java.net.URI;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
/**
* @noextend This class is not intended to be subclassed by clients.
* @noinstantiate This class is not intended to be instantiated by clients.
*/
public class MakeBuilderUtil {
public static IPath getBuildDirectory(IProject project, IPath subPath, String builderID) {
IPath rootPath = getBuildDirectory(project, builderID);
return rootPath.append(subPath);
}
public static IPath getBuildDirectory(IProject project, String builderID) {
IMakeBuilderInfo info;
try {
info = MakeCorePlugin.createBuildInfo(project, builderID);
} catch (CoreException e) {
return project.getLocation();
}
return getBuildDirectory(project, info);
}
public static IPath getBuildDirectory(IProject project, IMakeBuilderInfo info) {
IPath buildDirectory = info.getBuildLocation();
if (!buildDirectory.isEmpty()) {
IResource res = project.getParent().findMember(buildDirectory);
if (res instanceof IContainer && res.exists()) {
buildDirectory = res.getLocation();
}
} else {
buildDirectory = project.getLocation();
}
return buildDirectory;
}
/**
* @return URI of the build directory, or the Project's URI if one couldn't be found
* @since 6.0
*/
public static URI getBuildDirectoryURI(IProject project, IMakeBuilderInfo info) {
IPath buildDirectory = info.getBuildLocation();
if (!buildDirectory.isEmpty()) {
IResource res = project.getParent().findMember(buildDirectory);
if (res instanceof IContainer && res.exists()) {
return res.getLocationURI();
}
}
return project.getLocationURI();
}
/**
* @param builderID
* @return URI of the build directory, or the Project's URI if one couldn't be found
* @since 7.1
*/
public static URI getBuildDirectoryURI(IProject project, String builderID) {
IMakeBuilderInfo info;
try {
info = MakeCorePlugin.createBuildInfo(project, builderID);
} catch (CoreException e) {
return project.getLocationURI();
}
IPath buildDirectory = info.getBuildLocation();
if (!buildDirectory.isEmpty()) {
IResource res = project.getParent().findMember(buildDirectory);
if (res instanceof IContainer && res.exists()) {
return res.getLocationURI();
}
}
return project.getLocationURI();
}
}