import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
-import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.ui.IEditorDescriptor;
File file = null;
IPath path = null;
- path = documentRootPath.append(includeNameString);
- file = path.toFile();
- if (file.exists()) {
- return path;
- }
- if (includeNameString.startsWith("../")) {
- path = project.getLocation().append(
- resourcePath.removeLastSegments(1));
- path = path.append(includeNameString);
- file = path.toFile();
- if (file.exists()) {
- return path;
- }
+ // script location based
+ path = project.getLocation().append(resourcePath.removeLastSegments(1))
+ .append(includeNameString);
+ if (fileExists(path, false)) {
+ return path;
}
- // includeNameString contains no path separator
- path = project.getLocation().append(resourcePath.removeLastSegments(1));
- path = path.append(includeNameString);
- file = path.toFile();
- if (file.exists()) {
+ // project root based
+ path = project.getLocation().append(includeNameString);
+ if (fileExists(path, false)) {
return path;
}
- // check if linked resource
- IFile ifile = FileBuffers.getWorkspaceFileAtLocation(path);
- if (ifile != null) {
- file = ifile.getLocation().toFile();
- if (file.exists()) {
- return path;
- }
+ // DocumentRoot (absolute path) based
+ path = documentRootPath.append(includeNameString);
+ if (fileExists(path, true)) {
+ return path;
}
+ // IncludePaths settings (absolute path) based
List includePaths = ProjectPrefUtil.getIncludePaths(project);
if (includePaths.size() > 0) {
for (int i = 0; i < includePaths.size(); i++) {
path = new Path(includePaths.get(i).toString())
.append(includeNameString);
- file = path.toFile();
- if (file.exists()) {
+ if (fileExists(path, true)) {
return path;
}
}
return null;
}
+ private static boolean fileExists(IPath path, boolean absolute) {
+ File file = path.toFile();
+ if (file.exists()) {
+ return true;
+ }
+ if (!absolute) {
+ IFile ifile = FileBuffers.getWorkspaceFileAtLocation(path);
+ if (ifile != null) {
+ file = ifile.getLocation().toFile();
+ if (file.exists()) {
+ return true;
+ }
+ }
+ }
+ return false;
+ }
}
\ No newline at end of file