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

io.github.floto.util.task.TaskRunnable Maven / Gradle / Ivy

package io.github.floto.util.task;

import org.apache.commons.lang3.exception.ExceptionUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.time.Instant;
import java.util.concurrent.Callable;

class TaskRunnable implements Runnable {
    private Logger log = LoggerFactory.getLogger(TaskRunnable.class);

    private TaskService taskService;
    private TaskInfo taskInfo;
    private Callable taskCallable;

    public TaskRunnable(TaskService taskService, TaskInfo taskInfo, Callable taskCallable) {
        this.taskService = taskService;
        this.taskInfo = taskInfo;
        this.taskCallable = taskCallable;
    }

    @Override
    public void run() {
        String oldThreadName = null;
        Thread currentThread = Thread.currentThread();
        String threadName = taskInfo.getThreadName();
        try {
            oldThreadName = currentThread.getName();
            taskService.registerThread(threadName, taskInfo);
            currentThread.setName(threadName);
            Task.setCurrentTaskInfo(taskInfo);
            taskInfo.setStartDate(Instant.now());
            log.info("Task started: {}", taskInfo.getTitle());
            taskInfo.setStatus(TaskInfo.Status.RUNNING);
            taskService.save(taskInfo);
            RESULT_TYPE result = taskCallable.call();
            taskInfo.complete(result);
            log.info("Task completed: {}", taskInfo.getTitle());
            taskInfo.setStatus(TaskInfo.Status.SUCCESS);
        } catch (Throwable throwable) {
            log.error("Task completed with exception: {}", ExceptionUtils.getMessage(throwable), throwable);
            taskInfo.completeExceptionally(throwable);
            taskInfo.setStatus(TaskInfo.Status.ERROR);
        } finally {
            Task.setCurrentTaskInfo(null);
            if(oldThreadName != null) {
                currentThread.setName(oldThreadName);
            }
            taskInfo.setEndDate(Instant.now());
            taskService.unregisterThread(threadName);
            taskService.save(taskInfo);
            taskService.closeLogFile(taskInfo.getId());
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy