summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2014-10-10 10:17:31 -0600
committerJames Moger <james.moger@gitblit.com>2014-10-10 10:17:31 -0600
commit6e0cef9554c61d514ca368c85b512f85fd5be0f0 (patch)
tree749038133be987944182b21c2d8f752b70d0ca79
parent42722d906ebd10e36ea4e1afeba01fc0711ccb7f (diff)
parenta74ddc24545ec45d0bb82ca2bb8f628ffdaa9da3 (diff)
downloadgitblit-6e0cef9554c61d514ca368c85b512f85fd5be0f0.tar.gz
gitblit-6e0cef9554c61d514ca368c85b512f85fd5be0f0.zip
Merged #204 "Improve relative path determination using Java 7 Paths"
-rw-r--r--src/main/java/com/gitblit/utils/FileUtils.java20
1 files changed, 6 insertions, 14 deletions
diff --git a/src/main/java/com/gitblit/utils/FileUtils.java b/src/main/java/com/gitblit/utils/FileUtils.java
index a1eb5bba..27caa7ea 100644
--- a/src/main/java/com/gitblit/utils/FileUtils.java
+++ b/src/main/java/com/gitblit/utils/FileUtils.java
@@ -26,6 +26,8 @@ import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.nio.charset.Charset;
+import java.nio.file.Path;
+import java.nio.file.Paths;
/**
* Common file utilities.
@@ -291,20 +293,10 @@ public class FileUtils {
* @return a relative path from basePath to path
*/
public static String getRelativePath(File basePath, File path) {
- File exactBase = getExactFile(basePath);
- File exactPath = getExactFile(path);
- if (path.getAbsolutePath().startsWith(basePath.getAbsolutePath())) {
- // absolute base-path match
- return StringUtils.getRelativePath(basePath.getAbsolutePath(), path.getAbsolutePath());
- } else if (exactPath.getPath().startsWith(exactBase.getPath())) {
- // canonical base-path match
- return StringUtils.getRelativePath(exactBase.getPath(), exactPath.getPath());
- } else if (exactPath.getPath().startsWith(basePath.getAbsolutePath())) {
- // mixed path match
- return StringUtils.getRelativePath(basePath.getAbsolutePath(), exactPath.getPath());
- } else if (path.getAbsolutePath().startsWith(exactBase.getPath())) {
- // mixed path match
- return StringUtils.getRelativePath(exactBase.getPath(), path.getAbsolutePath());
+ Path exactBase = Paths.get(getExactFile(basePath).toURI());
+ Path exactPath = Paths.get(getExactFile(path).toURI());
+ if (exactPath.startsWith(exactBase)) {
+ return exactBase.relativize(exactPath).toString();
}
// no relative relationship
return null;