dims 01/02/27 08:14:05
Modified: src/org/apache/cocoon/util Tag: xml-cocoon2 IOUtils.java
Log:
Use getCanonicalPath() to get a context for a file.
Revision Changes Path
No revision
No revision
1.1.2.13 +34 -29 xml-cocoon/src/org/apache/cocoon/util/Attic/IOUtils.java
Index: IOUtils.java
===================================================================
RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/util/Attic/IOUtils.java,v
retrieving revision 1.1.2.12
retrieving revision 1.1.2.13
diff -u -r1.1.2.12 -r1.1.2.13
--- IOUtils.java 2001/02/24 13:57:49 1.1.2.12
+++ IOUtils.java 2001/02/27 16:14:04 1.1.2.13
@@ -24,7 +24,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Ricardo Rocha</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Stefano Mazzocchi</a>
- * @version CVS $Revision: 1.1.2.12 $ $Date: 2001/02/24 13:57:49 $
+ * @version CVS $Revision: 1.1.2.13 $ $Date: 2001/02/27 16:14:04 $
*/
public class IOUtils {
@@ -204,37 +204,42 @@
/**
* Return the path within a base directory
*/
- public static String getContextFilePath(String contextDir, String
filePath) {
-
- // If the context directory has a . indicating current directory
- // then replace it with the users directory
- if (contextDir.startsWith(".")) {
- contextDir = System.getProperty("user.dir") +
contextDir.substring(1);
- }
-
- // If the context directory does not have a File.separator
- // at the end then add one explicitly
- if(!contextDir.endsWith(File.separator)){
- contextDir += File.separator;
- }
+ public static String getContextFilePath(String directoryPath, String
filePath) {
+ try
+ {
+ File directory = new File(directoryPath);
+ File file = new File(filePath);
+
+ directoryPath = directory.getCanonicalPath();
+ filePath = file.getCanonicalPath();
+
+ // If the context directory does not have a File.separator
+ // at the end then add one explicitly
+ if(!directoryPath.endsWith(File.separator)){
+ directoryPath += File.separator;
+ }
- // If the context dir contains both kinds of spearator
- // then standardize on using the File.separator
- if ((contextDir.indexOf('/') !=-1) && (contextDir.indexOf('\\') !=-1))
{
- contextDir = contextDir.replace('\\', File.separator.charAt(0));
- contextDir = contextDir.replace('/', File.separator.charAt(0));
+ // If the context dir contains both kinds of spearator
+ // then standardize on using the File.separator
+ if ((directoryPath.indexOf('/') !=-1) &&
(directoryPath.indexOf('\\') !=-1)) {
+ directoryPath = directoryPath.replace('\\',
File.separator.charAt(0));
+ directoryPath = directoryPath.replace('/',
File.separator.charAt(0));
+ }
+
+ // If the file path contains both kinds of spearator
+ // then standardize on using the File.separator
+ if ((filePath.indexOf('/') !=-1) && (filePath.indexOf('\\') !=-1))
{
+ filePath = filePath.replace('\\', File.separator.charAt(0));
+ filePath = filePath.replace('/', File.separator.charAt(0));
+ }
+
+ if (filePath.startsWith(directoryPath)) {
+ filePath = filePath.substring(directoryPath.length());
+ }
+ } catch (Exception e){
+ LogKit.getLoggerFor("cocoon").debug("IOUtils.getContextFilePath",
e);
}
- // If the file path contains both kinds of spearator
- // then standardize on using the File.separator
- if ((filePath.indexOf('/') !=-1) && (filePath.indexOf('\\') !=-1)) {
- filePath = filePath.replace('\\', File.separator.charAt(0));
- filePath = filePath.replace('/', File.separator.charAt(0));
- }
-
- if (filePath.startsWith(contextDir)) {
- filePath = filePath.substring(contextDir.length());
- }
return filePath;
}