gpt4 book ai didi

java - 异常安全地返回 Autoclosable 对象

转载 作者:搜寻专家 更新时间:2023-11-01 02:56:51 26 4
gpt4 key购买 nike

当你想使用一些 AutoClosable 对象时,你应该使用 try-with-resources .行。但是,如果我想编写返回 AutoClosable 的方法怎么办?在您创建或从某处接收到一个 AutoCloseable 对象后,您应该关闭它以防出现异常,如下所示:

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

如果您不编写 try/catch block ,您将泄漏资源,该 autoCloseable 对象将保留,以防 //some work 行中出现异常。但是这个 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 中有更好的方法吗?

最佳答案

有一些方法。

  • 使用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 编写异常处理老派风格。

编辑:我想我会重新审视答案,添加一些示例代码来获得乐趣。

Execute Around 成语

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

// 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);
}
}

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

修改后的 try-with-resource 作为库功能实现为 try-with-resource 中的代理 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 的一般实现如下所示。一个 hack,因为 try-with-resource 不支持这种事情,而且 Java 库不能很好地支持已检查的异常。注意仅限于一种异常(对于没有检查过的异常可以使用unchecked exception)。

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 语言语法。

关于java - 异常安全地返回 Autoclosable 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55455284/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com