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

com.github.robozonky.common.async.Tasks Maven / Gradle / Ivy

/*
 * Copyright 2019 The RoboZonky Project
 *
 * 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.github.robozonky.common.async;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ForkJoinPool;
import java.util.concurrent.ScheduledExecutorService;
import java.util.function.Supplier;
import java.util.stream.Stream;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import static com.github.robozonky.common.async.TaskConstants.BACKGROUND_THREAD_FACTORY;
import static com.github.robozonky.common.async.TaskConstants.REALTIME_THREAD_FACTORY;
import static com.github.robozonky.common.async.TaskConstants.SCHEDULING_THREAD_FACTORY;
import static com.github.robozonky.common.async.TaskConstants.SUPPORTING_THREAD_FACTORY;

/**
 * Provides different {@link Scheduler} instances based on the needs of a particular task. There are three categories
 * of tasks:
 *
 * 
    *
  • {@link #REALTIME} tasks are essentially just the primary and secondary marketplace checks, which * are absolutely necessary, must be scheduled immediately and processed as soon as possible. There will be a fixed * pool of 2 threads always available to execute these tasks, one for each marketplace. These tasks will get * {@link Thread#MAX_PRIORITY}.
  • *
  • {@link #SUPPORTING} tasks carry functionality which is still very important for the robot or for the user, * but can be postponed momentarily. These would be tasks such as selling participations or updating strategies from * a remote server. There will be 2 threads always available to execute these tasks, and they will be given * {@link Thread#NORM_PRIORITY}.
  • *
  • {@link #BACKGROUND} tasks carry functionality which is either unimportant or can be easily postponed. There will * be up to 1 thread available to execute these tasks, and it will be given {@link Thread#MIN_PRIORITY}.
  • *
*

* None of these tasks are restricted from spinning up their own threads. In fact, many of the {@link #REALTIME} * and {@link #SUPPORTING} tasks may start entire {@link ForkJoinPool}s as a side-effect of using * {@link Stream#parallel()}. *

* Each of these tasks will use {@link ThreadPoolExecutorBasedScheduler} as its underlying {@link Scheduler} * implementation. */ public enum Tasks implements AutoCloseable { REALTIME(() -> Executors.newFixedThreadPool(2, REALTIME_THREAD_FACTORY)), SUPPORTING(() -> Executors.newFixedThreadPool(2, SUPPORTING_THREAD_FACTORY)), BACKGROUND(() -> Executors.newSingleThreadExecutor(BACKGROUND_THREAD_FACTORY)); private static final Logger LOGGER = LogManager.getLogger(Tasks.class); private static final Reloadable SCHEDULING_EXECUTOR = Reloadable.with(Tasks::createSchedulingExecutor).build(); private final Reloadable scheduler; Tasks(final Supplier service) { this.scheduler = Reloadable.with(() -> createScheduler(service.get())).build(); } private static ScheduledExecutorService createSchedulingExecutor() { return Executors.newSingleThreadScheduledExecutor(SCHEDULING_THREAD_FACTORY); } public static void closeAll() { if (SCHEDULING_EXECUTOR.hasValue()) { schedulingExecutor().shutdown(); SCHEDULING_EXECUTOR.clear(); } Stream.of(values()).forEach(Tasks::close); } static ScheduledExecutorService schedulingExecutor() { return SCHEDULING_EXECUTOR.get().getOrElseThrow(() -> new IllegalStateException("Impossible.")); } private Scheduler createScheduler(final ExecutorService actualExecutor) { LOGGER.debug("Instantiating new background scheduler {}.", this); return new ThreadPoolExecutorBasedScheduler(schedulingExecutor(), actualExecutor, this::clear); } private void clear() { scheduler.clear(); LOGGER.debug("Cleared background scheduler: {}.", this); } public Scheduler scheduler() { return scheduler.get().getOrElseThrow(() -> new IllegalStateException("Impossible.")); } @Override public void close() { if (!scheduler.hasValue()) { LOGGER.debug("No scheduler to close: {}.", this); return; } try { scheduler().close(); } catch (final Exception ex) { // nothing we can actually do here LOGGER.debug("Failed closing scheduler {}.", this, ex); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy