This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-vfs.git


The following commit(s) were added to refs/heads/master by this push:
     new 4752bbb  Revert "[VFS-798] IllegalArgumentException: Bad escape for 
Chinese characters in FileObject path."
4752bbb is described below

commit 4752bbbb9de85f238347371354124e6dfc51851b
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Mar 27 19:18:39 2021 -0400

    Revert "[VFS-798] IllegalArgumentException: Bad escape for Chinese 
characters in FileObject path."
    
    This reverts commit aa119bc00863dda7bb7b6a42963a6bf0be2f3717.
---
 .../commons/vfs2/provider/local/LocalFile.java     |  16 +--
 .../commons/vfs2/provider/local/LocalFileName.java |  40 +-------
 .../commons/vfs2/provider/url/UrlFileObject.java   |  17 ++--
 .../org/apache/commons/vfs2/FileObjectTest.java    | 109 ---------------------
 src/changes/changes.xml                            |   3 -
 5 files changed, 9 insertions(+), 176 deletions(-)

diff --git 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFile.java
 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFile.java
index 68e04ce..d9f6c1d 100644
--- 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFile.java
+++ 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFile.java
@@ -21,10 +21,8 @@ import java.io.FileInputStream;
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.OutputStream;
-import java.net.URI;
 import java.nio.file.Files;
 import java.nio.file.StandardOpenOption;
-import java.util.Objects;
 
 import org.apache.commons.vfs2.FileObject;
 import org.apache.commons.vfs2.FileSystemException;
@@ -72,7 +70,7 @@ public class LocalFile extends 
AbstractFileObject<LocalFileSystem> {
             file = new File(fileName);
         }
     }
-   
+
     /**
      * Creates this folder.
      */
@@ -188,7 +186,6 @@ public class LocalFile extends 
AbstractFileObject<LocalFileSystem> {
             return false;
         }
 
-        @SuppressWarnings("resource") // unwrapping, not allocating
         final LocalFile destLocalFile = (LocalFile) 
FileObjectUtils.getAbstractFileObject(destFile);
         if (!exists() || !destLocalFile.exists()) {
             return false;
@@ -231,7 +228,6 @@ public class LocalFile extends 
AbstractFileObject<LocalFileSystem> {
      */
     @Override
     protected void doRename(final FileObject newFile) throws Exception {
-        @SuppressWarnings("resource") // unwrapping, not allocating
         final LocalFile newLocalFile = (LocalFile) 
FileObjectUtils.getAbstractFileObject(newFile);
 
         if (!file.renameTo(newLocalFile.getLocalFile())) {
@@ -273,16 +269,6 @@ public class LocalFile extends 
AbstractFileObject<LocalFileSystem> {
         return file;
     }
 
-    @Override
-    public URI getURI() {
-        try {
-            doAttach();
-        } catch (Exception e) {
-            throw new IllegalArgumentException(Objects.toString(file));
-        }
-        return URI.create(getName().getURI());
-    }
-
     /**
      * Returns the URI of the file.
      *
diff --git 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFileName.java
 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFileName.java
index 3474094..ff86c02 100644
--- 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFileName.java
+++ 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFileName.java
@@ -16,10 +16,6 @@
  */
 package org.apache.commons.vfs2.provider.local;
 
-import java.net.URI;
-import java.nio.file.Path;
-import java.nio.file.Paths;
-
 import org.apache.commons.vfs2.FileName;
 import org.apache.commons.vfs2.FileSystemException;
 import org.apache.commons.vfs2.FileType;
@@ -60,38 +56,6 @@ public class LocalFileName extends AbstractFileName {
         return new LocalFileName(getScheme(), rootFile, path, type);
     }
 
-    @Override
-    protected String createURI() {
-        final StringBuilder buffer = new StringBuilder();
-        appendRootUri(buffer, true);
-        final URI tmpUri = getFilePath().toUri();
-        buffer.append(tmpUri.getRawPath());
-        final String query = tmpUri.getRawQuery();
-        if (query != null) {
-            buffer.append('?');
-            buffer.append(query);
-        }
-        final String fragment = tmpUri.getRawFragment();
-        if (fragment != null) {
-            buffer.append('#');
-            buffer.append(fragment);
-        }
-        return buffer.toString();
-    }
-
-    private String createUriDecoded() throws FileSystemException {
-        return UriParser.decode(getURI());
-    }
-
-    /**
-     * Gets the NIO file Path.
-     *
-     * @return the NIO file Path.
-     */
-    private Path getFilePath() {
-        return Paths.get(getPath());
-    }
-
     /**
      * Returns the root file for this file.
      *
@@ -109,9 +73,9 @@ public class LocalFileName extends AbstractFileName {
     @Override
     public String toString() {
         try {
-            return createUriDecoded();
+            return UriParser.decode(super.getURI());
         } catch (final FileSystemException e) {
-            return getURI();
+            return super.getURI();
         }
     }
 }
diff --git 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileObject.java
 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileObject.java
index 440ef93..8e45d8c 100644
--- 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileObject.java
+++ 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileObject.java
@@ -30,8 +30,6 @@ import org.apache.commons.vfs2.FileType;
 import org.apache.commons.vfs2.provider.AbstractFileName;
 import org.apache.commons.vfs2.provider.AbstractFileObject;
 import org.apache.commons.vfs2.provider.URLFileName;
-import org.apache.commons.vfs2.provider.UriParser;
-import org.apache.commons.vfs2.provider.local.LocalFileName;
 
 /**
  * A {@link org.apache.commons.vfs2.FileObject FileObject} implementation 
backed by a {@link URL}.
@@ -56,20 +54,17 @@ public class UrlFileObject extends 
AbstractFileObject<UrlFileSystem> {
     @Override
     protected void doAttach() throws Exception {
         if (url == null) {
+            // url = new URL(getName().getURI());
             url = createURL(getName());
         }
     }
 
-    protected URL createURL(final FileName fileName) throws 
MalformedURLException, FileSystemException, URIException {
-        // TODO Forthcoming clean up...
-        if (fileName instanceof URLFileName) {
-            final URLFileName urlFileName = (URLFileName) getName();
+    protected URL createURL(final FileName name) throws MalformedURLException, 
FileSystemException, URIException {
+        if (name instanceof URLFileName) {
+            final URLFileName urlName = (URLFileName) getName();
+
             // TODO: charset
-            return new URL(urlFileName.getURIEncoded(null));
-        }
-        if (fileName instanceof LocalFileName) {
-            // decode
-            return new URL(((LocalFileName) getName()).toString());
+            return new URL(urlName.getURIEncoded(null));
         }
         return new URL(getName().getURI());
     }
diff --git 
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/FileObjectTest.java 
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/FileObjectTest.java
deleted file mode 100644
index ee325a0..0000000
--- a/commons-vfs2/src/test/java/org/apache/commons/vfs2/FileObjectTest.java
+++ /dev/null
@@ -1,109 +0,0 @@
-/*
- * 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.apache.commons.vfs2;
-
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertNotNull;
-
-import java.io.File;
-import java.io.IOException;
-import java.io.InputStream;
-import java.net.URI;
-import java.net.URISyntaxException;
-import java.nio.charset.StandardCharsets;
-import java.nio.file.FileSystems;
-import java.nio.file.Paths;
-
-import org.apache.commons.io.FileUtils;
-import org.apache.commons.io.IOUtils;
-import org.apache.commons.lang3.function.FailableFunction;
-import org.apache.commons.vfs2.impl.StandardFileSystemManager;
-import org.junit.Test;
-
-public class FileObjectTest {
-
-    private static final String REL_PATH_GREAT = 
"src/test/resources/test-data/好.txt";
-
-    private static final String REL_PATH_SPACE = 
"src/test/resources/test-data/1 1.txt";
-
-    /**
-     * Expected contents of test files.
-     */
-    public static final String TEST_FILE_CONTENT = "aaa";
-
-    /**
-     * Test file paths.
-     */
-    public static final String[] TEST_FILE_PATHS = new String[] { 
REL_PATH_SPACE, REL_PATH_GREAT };
-
-    private static StandardFileSystemManager loadFileSystemManager() throws 
FileSystemException {
-        StandardFileSystemManager fileSystemManager = new 
StandardFileSystemManager();
-        fileSystemManager.setLogger(null);
-        fileSystemManager.init();
-        fileSystemManager.setBaseFile(new 
File(System.getProperty("user.dir")));
-        return fileSystemManager;
-    }
-
-    private static File toFile2(FileObject fileObject) throws 
FileSystemException {
-        if (fileObject == null || 
!"file".equals(fileObject.getURL().getProtocol())) {
-            return null;
-        }
-        return new File(fileObject.getName().getPathDecoded());
-    }
-
-    @SuppressWarnings("resource")
-    private void testProviderGetPath(String relPathStr) throws 
URISyntaxException {
-        FileSystems.getDefault().provider().getPath(new 
URI(Paths.get(relPathStr).toAbsolutePath().toUri().toString()));
-    }
-
-    @Test
-    public void testProviderGetPathGreat() throws URISyntaxException {
-        testProviderGetPath(REL_PATH_GREAT);
-    }
-
-    @Test
-    public void testProviderGetPathSpace() throws URISyntaxException {
-        testProviderGetPath(REL_PATH_SPACE);
-    }
-
-    @Test
-    public void testToFile() throws IOException {
-        testToFile(fileObject -> fileObject.getPath().toFile());
-    }
-
-    private void testToFile(FailableFunction<FileObject, File, IOException> 
function) throws IOException {
-        for (String testFilePath : TEST_FILE_PATHS) {
-            try (FileSystemManager fileSystemManager = loadFileSystemManager();
-                    FileObject fileObject = 
fileSystemManager.resolveFile(testFilePath);) {
-                assertNotNull(fileObject);
-                try (final FileContent content = fileObject.getContent();
-                        InputStream inputStream = content.getInputStream()) {
-                    assertEquals(TEST_FILE_CONTENT, 
IOUtils.toString(inputStream, StandardCharsets.UTF_8));
-                }
-                File file = function.apply(fileObject);
-                assertNotNull(file);
-                assertEquals(TEST_FILE_CONTENT, 
FileUtils.readFileToString(file, StandardCharsets.UTF_8));
-            }
-        }
-    }
-
-    @Test
-    public void testToFile2() throws IOException {
-        testToFile(FileObjectTest::toFile2);
-    }
-}
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 734f234..23a87a2 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -56,9 +56,6 @@ The <action> type attribute can be add,update,fix,remove.
       <action type="fix" dev="ggregory" due-to="Boris Petrov, Gary Gregory, 
Max Kellermann">
         Fix NPE when closing a stream from a different thread #167. See also 
#166.
       </action>
-      <action type="fix" dev="ggregory" issue="VFS-798" due-to="XenoAmess, 
Gary Gregory">
-        IllegalArgumentException: Bad escape for Chinese characters in 
FileObject path #168.
-      </action>
       <!-- UPDATES  -->
       <action type="update" dev="ggregory" due-to="Arturo Bernal">
         Replace construction of FileInputStream and FileOutputStream objects 
with Files NIO APIs. #164.

Reply via email to