![JAR search and dependency download from the Maven repository](/logo.png)
com.powsybl.computation.slurm.SbatchCmdResult Maven / Gradle / Ivy
/**
* Copyright (c) 2019, RTE (http://www.rte-france.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package com.powsybl.computation.slurm;
/**
* @author Yichen Tang
*/
class SbatchCmdResult extends AbstractSlurmCmdResult {
SbatchCmdResult(CommandResult commandResult) {
super(commandResult);
}
long getSubmittedJobId() throws SlurmCmdNonZeroException {
if (isOk()) {
String jobId = commandResult.getStdOut().replaceAll("[^0-9]", "");
return Long.parseLong(jobId);
} else {
throw new SlurmCmdNonZeroException("Sbatch failed:" + toString() +
"\nexitcode:" + commandResult.getExitCode() +
"\nerr:" + commandResult.getStdErr() +
"\nout:" + commandResult.getStdOut());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy