blob: 24fbfb8e0703fba4f1770ec9965a5ccece33ab93 [file] [log] [blame]
/*
* 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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.hadoop.hdds.scm.ha;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This Utility class is to rethrow the original exception after
* executing the clean-up code.
*
* @param <E> Exception to throw on failure
*/
public final class ExecutionUtil<E extends Throwable> {
private static final Logger LOG = LoggerFactory.getLogger(
ExecutionUtil.class);
private final CheckedFunction<E> fn;
private CheckedFunction<E> onException;
private volatile boolean completed;
private ExecutionUtil(final CheckedFunction<E> fn) {
this.fn = fn;
this.completed = false;
}
public static<E extends Exception> ExecutionUtil<E> create(
CheckedFunction<E> tryBlock) {
return new ExecutionUtil<>(tryBlock);
}
public ExecutionUtil<E> onException(CheckedFunction<E> catchBlock) {
onException = catchBlock;
return this;
}
public void execute() throws E {
if (!completed) {
completed = true;
try {
fn.execute();
} catch (Exception ex) {
try {
onException.execute();
} catch (Exception error) {
LOG.warn("Got error while doing clean-up.", error);
}
throw (E) ex;
}
}
}
}