/* * Eoulsan development code * * This code may be freely distributed and modified under the * terms of the GNU Lesser General Public License version 2.1 or * later and CeCILL-C. This should be distributed with the code. * If you do not have a copy, see: * * http://www.gnu.org/licenses/lgpl-2.1.txt * http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.txt * * Copyright for this code is held jointly by the Genomic platform * of the Institut de Biologie de l'École normale supérieure and * the individual authors. These should be listed in @author doc * comments. * * For more information on the Eoulsan project and its aims, * or to join the Eoulsan Google group, visit the home page * at: * * http://outils.genomique.biologie.ens.fr/eoulsan * */ package fr.ens.biologie.genomique.eoulsan.core.schedulers; import java.util.Set; import fr.ens.biologie.genomique.eoulsan.core.workflow.TaskContextImpl; import fr.ens.biologie.genomique.eoulsan.core.Step; import fr.ens.biologie.genomique.eoulsan.core.workflow.StepResult; import fr.ens.biologie.genomique.eoulsan.core.workflow.StepStatus; /** * This interface define a task scheduler. * @author Laurent Jourdren * @since 2.0 */ public interface TaskScheduler { /** * Submit contexts to execute. * @param step step related to the contexts * @param contexts contexts to execute */ void submit(Step step, Set<TaskContextImpl> contexts); /** * Submit a context to execute. * @param step step related to the context * @param context context to execute */ void submit(Step step, TaskContextImpl context); /** * Get the status related to a step. * @param step a workflow step * @return the step status object related to the step */ StepStatus getStatus(Step step); /** * Get the result related to a step. * @param step a workflow step * @return the step result object related to the step */ StepResult getResult(Step step); /** * Get the count of submitted task contexts of a step. * @param step a workflow step * @return the count of submitted task contexts */ int getTaskSubmittedCount(Step step); /** * Get the count of running task contexts of a step. * @param step a workflow step * @return the count of running task contexts */ int getTaskRunningCount(Step step); /** * Get the count of done task contexts of a step. * @param step a workflow step * @return the count of done task contexts */ int getTaskDoneCount(Step step); /** * Wait the end of the task contexts. * @param step a workflow step */ void waitEndOfTasks(Step step); /** * Get the count of submitted task contexts for the workflow. * @return the count of submitted task contexts */ int getTotalTaskSubmittedCount(); /** * Get the count of running task contexts for the workflow. * @return the count of running task contexts */ int getTotalTaskRunningCount(); /** * Get the count of done task contexts for the workflow. * @return the count of done task contexts */ int getTotalTaskDoneCount(); /** * Start the scheduler. */ void start(); /** * Stop the scheduler. */ void stop(); }