ch.cyberduck.core.threading.DefaultBackgroundExecutor.java Source code

Java tutorial

Introduction

Here is the source code for ch.cyberduck.core.threading.DefaultBackgroundExecutor.java

Source

package ch.cyberduck.core.threading;

/*
 * Copyright (c) 2002-2017 iterate GmbH. All rights reserved.
 * https://cyberduck.io/
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

import ch.cyberduck.core.Controller;

import org.apache.commons.lang3.concurrent.ConcurrentUtils;
import org.apache.log4j.Logger;

import java.util.concurrent.Callable;
import java.util.concurrent.Future;
import java.util.concurrent.RejectedExecutionException;

public class DefaultBackgroundExecutor implements BackgroundExecutor {
    private static final Logger log = Logger.getLogger(DefaultBackgroundExecutor.class);

    private static final DefaultBackgroundExecutor DEFAULT = new DefaultBackgroundExecutor();

    public static BackgroundExecutor get() {
        return DEFAULT;
    }

    private final ThreadPool concurrentExecutor;

    public DefaultBackgroundExecutor() {
        this(new LoggingUncaughtExceptionHandler());
    }

    public DefaultBackgroundExecutor(final Thread.UncaughtExceptionHandler handler) {
        concurrentExecutor = ThreadPoolFactory.get(handler);
    }

    public DefaultBackgroundExecutor(final String prefix) {
        concurrentExecutor = ThreadPoolFactory.get(prefix, new LoggingUncaughtExceptionHandler());
    }

    public DefaultBackgroundExecutor(final String prefix, final Thread.UncaughtExceptionHandler handler) {
        concurrentExecutor = ThreadPoolFactory.get(prefix, handler);
    }

    @Override
    public <T> Future<T> execute(final Controller controller, final BackgroundActionRegistry registry,
            final BackgroundAction<T> action) {
        if (log.isDebugEnabled()) {
            log.debug(String.format("Run action %s in background", action));
        }
        registry.add(action);
        action.init();
        // Start background task
        final Callable<T> command = new BackgroundCallable<T>(action, controller, registry);
        try {
            final Future<T> task = concurrentExecutor.execute(command);
            if (log.isInfoEnabled()) {
                log.info(String.format("Scheduled background runnable %s for execution", action));
            }
            return task;
        } catch (RejectedExecutionException e) {
            log.error(
                    String.format("Error scheduling background task %s for execution. %s", action, e.getMessage()));
            action.cleanup();
            return ConcurrentUtils.constantFuture(null);
        }
    }

    @Override
    public void shutdown() {
        if (log.isInfoEnabled()) {
            log.info(String.format("Terminating concurrent executor thread pool %s", concurrentExecutor));
        }
        concurrentExecutor.shutdown(false);
    }
}