You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by si...@apache.org on 2015/05/18 14:22:28 UTC

svn commit: r1680005 - in /lucene/dev/trunk/lucene/test-framework/src: java/org/apache/lucene/mockfile/HandleTrackingFS.java test/org/apache/lucene/mockfile/TestHandleTrackingFS.java

Author: simonw
Date: Mon May 18 12:22:28 2015
New Revision: 1680005

URL: http://svn.apache.org/r1680005
Log:
LUCENE-6488: Ensure files are closed if onClose/onOpen throws an Exception

Added:
    lucene/dev/trunk/lucene/test-framework/src/test/org/apache/lucene/mockfile/TestHandleTrackingFS.java
Modified:
    lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/mockfile/HandleTrackingFS.java

Modified: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/mockfile/HandleTrackingFS.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/mockfile/HandleTrackingFS.java?rev=1680005&r1=1680004&r2=1680005&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/mockfile/HandleTrackingFS.java (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/mockfile/HandleTrackingFS.java Mon May 18 12:22:28 2015
@@ -96,11 +96,14 @@ public abstract class HandleTrackingFS e
       
       @Override
       public void close() throws IOException {
-        if (!closed) {
-          closed = true;
-          onClose(path, this);
+        try {
+          if (!closed) {
+            closed = true;
+            onClose(path, this);
+          }
+        } finally {
+          super.close();
         }
-        super.close();
       }
 
       @Override
@@ -130,11 +133,14 @@ public abstract class HandleTrackingFS e
 
       @Override
       public void close() throws IOException {
-        if (!closed) {
-          closed = true;
-          onClose(path, this);
+        try {
+          if (!closed) {
+            closed = true;
+            onClose(path, this);
+          }
+        } finally {
+          super.close();
         }
-        super.close();
       }
       
       @Override
@@ -166,9 +172,12 @@ public abstract class HandleTrackingFS e
       protected void implCloseChannel() throws IOException {
         if (!closed) {
           closed = true;
-          onClose(path, this);
+          try {
+            onClose(path, this);
+          } finally {
+            super.implCloseChannel();
+          }
         }
-        super.implCloseChannel();
       }
 
       @Override
@@ -198,11 +207,14 @@ public abstract class HandleTrackingFS e
       
       @Override
       public void close() throws IOException {
-        if (!closed) {
-          closed = true;
-          onClose(path, this);
+        try {
+          if (!closed) {
+            closed = true;
+            onClose(path, this);
+          }
+        } finally {
+          super.close();
         }
-        super.close();
       }
 
       @Override
@@ -232,11 +244,14 @@ public abstract class HandleTrackingFS e
       
       @Override
       public void close() throws IOException {
-        if (!closed) {
-          closed = true;
-          onClose(path, this);
+        try {
+          if (!closed) {
+            closed = true;
+            onClose(path, this);
+          }
+        } finally {
+          super.close();
         }
-        super.close();
       }
 
       @Override
@@ -273,11 +288,14 @@ public abstract class HandleTrackingFS e
       
       @Override
       public void close() throws IOException {
-        if (!closed) {
-          closed = true;
-          onClose(dir, this);
+        try {
+          if (!closed) {
+            closed = true;
+            onClose(dir, this);
+          }
+        } finally {
+          super.close();
         }
-        super.close();
       }
       
       @Override

Added: lucene/dev/trunk/lucene/test-framework/src/test/org/apache/lucene/mockfile/TestHandleTrackingFS.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/test/org/apache/lucene/mockfile/TestHandleTrackingFS.java?rev=1680005&view=auto
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/test/org/apache/lucene/mockfile/TestHandleTrackingFS.java (added)
+++ lucene/dev/trunk/lucene/test-framework/src/test/org/apache/lucene/mockfile/TestHandleTrackingFS.java Mon May 18 12:22:28 2015
@@ -0,0 +1,145 @@
+package org.apache.lucene.mockfile;
+
+/*
+ * 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.
+ */
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.lang.Object;
+import java.lang.Override;
+import java.lang.RuntimeException;
+import java.net.URI;
+import java.nio.channels.AsynchronousFileChannel;
+import java.nio.channels.ByteChannel;
+import java.nio.channels.FileChannel;
+import java.nio.channels.SeekableByteChannel;
+import java.nio.file.DirectoryStream;
+import java.nio.file.FileSystem;
+import java.nio.file.Files;
+import java.nio.file.Path;
+
+import org.apache.lucene.mockfile.HandleTrackingFS;
+import org.apache.lucene.mockfile.LeakFS;
+
+/** Basic tests for HandleTrackingFS */
+public class TestHandleTrackingFS extends MockFileSystemTestCase {
+  
+  @Override
+  protected Path wrap(Path path) {
+    FileSystem fs = new LeakFS(path.getFileSystem()).getFileSystem(URI.create("file:///"));
+    return new FilterPath(path, fs);
+  }
+  
+  /** Test that the delegate gets closed on exception in HandleTrackingFS#onClose */
+  public void testOnCloseThrowsException() throws IOException {
+    Path path = wrap(createTempDir()); // we are using LeakFS under the hood if we don't get closed the test fails
+    FileSystem fs = new HandleTrackingFS("test://", path.getFileSystem()) {
+      @Override
+      protected void onClose(Path path, Object stream) throws IOException {
+        throw new IOException("boom");
+      }
+
+      @Override
+      protected void onOpen(Path path, Object stream) throws IOException {
+        //
+      }
+    }.getFileSystem(URI.create("file:///"));
+    Path dir = new FilterPath(path, fs);
+
+    OutputStream file = Files.newOutputStream(dir.resolve("somefile"));
+    file.write(5);
+    try {
+      file.close();
+      fail("expected IOException");
+    } catch (IOException ex) {
+      // expected
+    }
+
+    SeekableByteChannel channel = Files.newByteChannel(dir.resolve("somefile"));
+    try {
+      channel.close();
+      fail("expected IOException");
+    } catch (IOException ex) {
+      // expected
+    }
+
+    InputStream stream = Files.newInputStream(dir.resolve("somefile"));
+    try {
+      stream.close();
+      fail("expected IOException");
+    } catch (IOException ex) {
+      // expected
+    }
+    fs.close();
+
+    DirectoryStream<Path> dirStream = Files.newDirectoryStream(dir);
+    try {
+      dirStream.close();
+      fail("expected IOException");
+    } catch (IOException ex) {
+      // expected
+    }
+  }
+
+
+  /** Test that the delegate gets closed on exception in HandleTrackingFS#onOpen */
+  public void testOnOpenThrowsException() throws IOException {
+    Path path = wrap(createTempDir()); // we are using LeakFS under the hood if we don't get closed the test fails
+    FileSystem fs = new HandleTrackingFS("test://", path.getFileSystem()) {
+      @Override
+      protected void onClose(Path path, Object stream) throws IOException {
+      }
+
+      @Override
+      protected void onOpen(Path path, Object stream) throws IOException {
+        throw new IOException("boom");
+      }
+    }.getFileSystem(URI.create("file:///"));
+    Path dir = new FilterPath(path, fs);
+
+    try {
+      OutputStream file = Files.newOutputStream(dir.resolve("somefile"));
+      fail("expected IOException");
+    } catch (IOException ex) {
+      // expected
+    }
+
+    try {
+      SeekableByteChannel channel = Files.newByteChannel(dir.resolve("somefile"));
+      fail("expected IOException");
+    } catch (IOException ex) {
+      // expected
+    }
+
+    try {
+      InputStream stream = Files.newInputStream(dir.resolve("somefile"));
+      fail("expected IOException");
+    } catch (IOException ex) {
+      // expected
+    }
+    fs.close();
+
+    try {
+      DirectoryStream<Path> dirStream = Files.newDirectoryStream(dir);
+      fail("expected IOException");
+    } catch (IOException ex) {
+      // expected
+    }
+    fs.close();
+  }
+}