Class SecurityAnalysisExecutionHandler<R>

    • Constructor Detail

      • SecurityAnalysisExecutionHandler

        public SecurityAnalysisExecutionHandler​(com.powsybl.security.distributed.SecurityAnalysisExecutionHandler.ResultReader<R> reader,
                                                com.powsybl.security.distributed.SecurityAnalysisExecutionHandler.OptionsCustomizer optionsCustomizer,
                                                com.powsybl.security.distributed.SecurityAnalysisExecutionHandler.ExceptionHandler exceptionHandler,
                                                int executionCount,
                                                SecurityAnalysisExecutionInput input)
        Creates a new security analysis execution handler.
        Parameters:
        reader - Defines how results should be read from working directory.
        optionsCustomizer - If not null, defines additional command options.
        exceptionHandler - Used to translate exceptions to a ComputationException.
        executionCount - The number of executions of the command.
        input - The execution input data.
    • Method Detail

      • before

        public List<CommandExecution> before​(Path workingDir)
                                      throws IOException
        Copies case file, contingencies file, and parameters file to working directory, and creates the itools security-analysis command(s) to be executed, based on configuration and the optional options customizer.
        Parameters:
        workingDir - the working directory used for this computation. Input data may be written to it.
        Returns:
        the list of CommandExecutions to be executed.
        Throws:
        IOException - when an error occurs while wirting to working directory.
      • after

        public R after​(Path workingDir,
                       ExecutionReport report)
                throws IOException
        Reads result from the working directory, as defined by the specified reader.
        Specified by:
        after in interface ExecutionHandler<R>
        Overrides:
        after in class AbstractExecutionHandler<R>
        Parameters:
        workingDir - the working directory used for this computation. Results may be read from it.
        report - the execution report, in particular reporting command execution errors.
        Returns:
        the actual result of the processing.
        Throws:
        IOException - if and error occurs while reading results from the working directory.