异常安全地返回Autoclosesable对象

时间:2019-04-01 12:35:57

标签: java autocloseable

当您要使用某些AutoClosable对象时,应使用try-with-resources。好。但是,如果我想编写返回AutoClosable的方法,该怎么办?在某个地方创建了AutoCloseable对象或从中接收到AutoCloseable对象之后,应将其关闭,以防出现异常,例如:

    public static AutoCloseable methodReturningAutocloseable() {
        AutoCloseable autoCloseable = ... // create some AutoClosable
        try {
            ... // some work
        }
        catch (Throwable exception) {
            autoCloseable.close();
            throw exception;
        }
        return autoCloseable;
    }

如果不编写try/catch块,则会泄漏资源,如果// some work行中有异常,则该autoCloseable对象将保留。 但是这个try/catch是不够的,因为autoCloseable.close()也会抛出异常(根据设计)。因此,以上代码转换为

    public static AutoCloseable methodReturningAutocloseable() {
        AutoCloseable autoCloseable = ... // create some autoclosable
        try {
            ... // some work
        }
        catch (Throwable exception) {
            try {
                autoCloseable.close();
            }
            catch (Throwable exceptionInClose) {
                exception.addSuppressed(exceptionInClose);
                throw exception;
            }
            throw exception;
        }
        return autoCloseable;
    }

很多样板。在Java中有更好的方法吗?

1 个答案:

答案 0 :(得分:3)

有很多方法可以解决。

  • 使用Execute Around idiom。重新设计界面以简化客户端实施并消除问题。
  • 忽略该问题。听起来很傻,但这通常是使用I / O流装饰器包装时发生的情况。
  • 包装在代理服务器AutoCloseable中,并将其放入您的try-with-resource中。
  • 写出与try-with-resource等效的方法,使用try-catch和try-finally。 (我不会-讨厌。)
  • 将修改后的try-with-resource写为库功能。此代码将成为Execute Around的客户端。
  • 用try-catch和try-finally编写处理旧学校风格的异常。

编辑:我想我会重新回答一下,添加一些有趣的示例代码。

围绕习语执行

简单,最佳的解决方案。不幸的是,Java库使用得很少(AccessController.doPrivileged是一个很大的例外),并且约定也没有很好的建立。与以往一样,Java不支持功能的检查异常使事情变得棘手。我们不能使用java.util.function,而必须发明自己的功能接口。

// Like Consumer, but with an exception.
interface Use<R, EXC extends Exception> {
    void use(R resource) throws EXC;
}

public static void withThing(String name, Use<InputStream,IOException> use) throws IOException {
     try (InputStream in = new FileInputStream(name)) {
         use.use(in);
     }
}

又好又简单。无需担心客户端代码会搞乱资源处理,因为它不会这样做。很好。

经过修改的尝试使用资源作为库功能,在尝试使用资源中作为代理AutoCloseable实现

这将变得丑陋。我们需要将获取,发布和初始化作为lambda传递。直接在此方法中创建资源会打开一个小窗口,意外的异常会导致泄漏。

public static InputStream newThing(String name) throws IOException {
    return returnResource(
        () -> new FileInputStream(name),
        InputStream::close,
        in -> {
            int ignore = in.read(); // some work
        }
    );
}

returnResource的一般实现如下所示。骇客,因为try-with-resource不支持这种事情,而Java库也不很好地支持检查的异常。请注意,仅限于一种异常(您可以将未检查的异常用于没有检查的异常)。

interface Acquire<R, EXC extends Exception> {
    R acquire() throws EXC;
}
// Effectively the same as Use, but different.
interface Release<R, EXC extends Exception> {
    void release(R resource) throws EXC;
}

public static <R, EXC extends Exception> R returnResource(
    Acquire<R, EXC> acquire, Release<R, EXC> release, Use<R, EXC> initialize
) throws EXC {
    try (var adapter = new AutoCloseable() { // anonymous classes still define type
        private R resource = acquire.acquire();
        R get() {
            return resource;
        }
        void success() {
            resource = null;;
        }
        public void close() throws EXC {
           if (resource != null) {
               release.release(resource);
           }
        }
    }) {
        R resource = adapter.get();
        initialize.use(resource);
        adapter.success();
        return resource;
    }
}

如果我们从资源的构造中分离出正在构造资源的论点,这也许会更干净。

public static InputStream newThing(String name) throws IOException {
    return returnResource(
        name,
        FileInputStream::new,
        InputStream::close,
        in -> {
            int ignore = in.read(); // some work
        }
    );
}

// Like Function, but with a more descriptive name for a functional interface.
interface AcquireFrom<T, R, EXC extends Exception> {
    R acquire(T t) throws EXC;
}

public static <T, R, EXC extends Exception> R returnResource(
    T t, AcquireFrom<T, R, EXC> acquire, Release<R, EXC> release, Use<R, EXC> initialize
 ) throws EXC {
     return returnResource(() -> acquire.acquire(t), release, initialize);
 }

因此,总而言之,以下几点很痛苦:

  • 转移资源所有权。保持在本地。
  • java.util.function不支持检查的异常。
  • 该Java库不支持Execute Around。
  • AutoCloseable::close声明它抛出Exception而不是类型的类型参数。
  • 已检查的异常,没有求和类型。
  • 一般的Java语言语法。