org.netbeans.modules.spring.util.ConfigFiles Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.spring.util;
import java.io.File;
import java.net.URI;
import java.util.regex.Pattern;
import org.openide.filesystems.FileUtil;
/**
*
* @author Andrei Badea
*/
public class ConfigFiles {
private ConfigFiles() {}
public static String getRelativePath(File basedir, File file) {
String result = relativizeFile(basedir, file);
if (result == null) {
result = file.getAbsolutePath();
}
return result;
}
// XXX copied from PropertyUtils.
private static final Pattern RELATIVE_SLASH_SEPARATED_PATH = Pattern.compile("[^:/\\\\.][^:/\\\\]*(/[^:/\\\\.][^:/\\\\]*)*"); // NOI18N
/**
* Find an absolute file path from a possibly relative path.
* @param basedir base file for relative filename resolving; must be an absolute path
* @param filename a pathname which may be relative or absolute and may
* use / or \ as the path separator
* @return an absolute file corresponding to it
* @throws IllegalArgumentException if basedir is not absolute
*/
public static File resolveFile(File basedir, String filename) throws IllegalArgumentException {
if (basedir == null) {
throw new NullPointerException("null basedir passed to resolveFile"); // NOI18N
}
if (filename == null) {
throw new NullPointerException("null filename passed to resolveFile"); // NOI18N
}
if (!basedir.isAbsolute()) {
throw new IllegalArgumentException("nonabsolute basedir passed to resolveFile: " + basedir); // NOI18N
}
File f;
if (RELATIVE_SLASH_SEPARATED_PATH.matcher(filename).matches()) {
// Shortcut - simple relative path. Potentially faster.
f = new File(basedir, filename.replace('/', File.separatorChar));
} else {
// All other cases.
String machinePath = filename.replace('/', File.separatorChar).replace('\\', File.separatorChar);
f = new File(machinePath);
if (!f.isAbsolute()) {
f = new File(basedir, machinePath);
}
assert f.isAbsolute();
}
return FileUtil.normalizeFile(f);
}
/**
* Produce a machine-independent relativized version of a filename from a basedir.
* Unlike {@link URI#relativize} this will produce "../" sequences as needed.
* @param basedir a directory to resolve relative to (need not exist on disk)
* @param file a file or directory to find a relative path for
* @return a relativized path (slash-separated), or null if it is not possible (e.g. different DOS drives);
* just . in case the paths are the same
* @throws IllegalArgumentException if the basedir is known to be a file and not a directory
*/
private static String relativizeFile(File basedir, File file) {
if (basedir.isFile()) {
throw new IllegalArgumentException("Cannot relative w.r.t. a data file " + basedir); // NOI18N
}
if (basedir.equals(file)) {
return "."; // NOI18N
}
StringBuffer b = new StringBuffer();
File base = basedir;
String filepath = file.getAbsolutePath();
while (!filepath.startsWith(slashify(base.getAbsolutePath()))) {
base = base.getParentFile();
if (base == null) {
return null;
}
if (base.equals(file)) {
// #61687: file is a parent of basedir
b.append(".."); // NOI18N
return b.toString();
}
b.append("../"); // NOI18N
}
URI u = base.toURI().relativize(file.toURI());
assert !u.isAbsolute() : u + " from " + basedir + " and " + file + " with common root " + base;
b.append(u.getPath());
if (b.charAt(b.length() - 1) == '/') {
// file is an existing directory and file.toURI ends in /
// we do not want the trailing slash
b.setLength(b.length() - 1);
}
return b.toString();
}
private static String slashify(String path) {
if (path.endsWith(File.separator)) {
return path;
} else {
return path + File.separatorChar;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy