All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.palantir.util.TimedRunner Maven / Gradle / Ivy

There is a newer version: 0.1152.0
Show newest version
/*
 * (c) Copyright 2021 Palantir Technologies Inc. All rights reserved.
 *
 * Licensed 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 com.palantir.util;

import com.palantir.common.concurrent.PTExecutors;
import com.palantir.logsafe.SafeArg;
import com.palantir.logsafe.logger.SafeLogger;
import com.palantir.logsafe.logger.SafeLoggerFactory;
import java.time.Duration;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import org.immutables.value.Value;

public final class TimedRunner {
    private static final SafeLogger log = SafeLoggerFactory.get(TimedRunner.class);

    private final ExecutorService executor;
    private final Duration timeoutDuration;

    private TimedRunner(ExecutorService executor, Duration timeoutDuration) {
        this.executor = executor;
        this.timeoutDuration = timeoutDuration;
    }

    public static TimedRunner create(Duration timeoutDuration) {
        return new TimedRunner(PTExecutors.newCachedThreadPoolWithoutSpan("timed-runner"), timeoutDuration);
    }

    public  T run(TaskContext taskContext) throws Exception {
        Future future = executor.submit(() -> taskContext.task().call());
        final Exception failure;
        try {
            return future.get(timeoutDuration.toMillis(), TimeUnit.MILLISECONDS);
        } catch (InterruptedException e) {
            log.warn("Execution failed with exception", e);
            Thread.currentThread().interrupt();
            failure = e;
        } catch (ExecutionException e) {
            log.warn("Execution failed with exception", e);
            if (e.getCause() instanceof Error) {
                throw (Error) e.getCause();
            } else {
                failure = (Exception) e.getCause();
            }
        } catch (TimeoutException e) {
            log.warn("Execution timed out", SafeArg.of("timeoutDuration", timeoutDuration), e);
            future.cancel(true);
            failure = e;
        }

        try {
            taskContext.taskFailureHandler().run();
        } catch (Throwable t) {
            log.warn("Shutdown failure handler threw an exception itself!", t);
            failure.addSuppressed(t);
        }
        throw failure;
    }

    @Value.Immutable
    public interface TaskContext {
        /**
         * Executed to shut down an object.
         */
        Callable task();

        /**
         * Executed only if the task times out or otherwise has an exception.
         */
        Runnable taskFailureHandler();

        static  TaskContext create(Callable task, Runnable taskFailureHandler) {
            return ImmutableTaskContext.builder()
                    .task(task)
                    .taskFailureHandler(taskFailureHandler)
                    .build();
        }

        static TaskContext createRunnable(Runnable task, Runnable taskFailureHandler) {
            return ImmutableTaskContext.builder()
                    .task(() -> {
                        task.run();
                        return null;
                    })
                    .taskFailureHandler(taskFailureHandler)
                    .build();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy