Add exit codes for some failure modes

This commit is contained in:
Paul Schaub 2022-08-27 13:45:00 +02:00
parent d8a060d0df
commit 76a5a91fe0
2 changed files with 10 additions and 2 deletions

View File

@ -42,11 +42,14 @@ public class PGPCertDCli {
static PGPainlessCertD certificateDirectory;
// https://www.cyberciti.biz/faq/linux-bash-exit-status-set-exit-statusin-bash/
public static final int EXIT_CODE_NOT_A_STORE = 30;
private int executionStrategy(CommandLine.ParseResult parseResult) {
try {
initStore();
} catch (NotAStoreException | SQLException e) {
return -1;
return EXIT_CODE_NOT_A_STORE;
}
return new CommandLine.RunLast().execute(parseResult);
}

View File

@ -27,6 +27,10 @@ public class Get implements Runnable {
private static final Logger LOGGER = LoggerFactory.getLogger(Get.class);
// https://www.cyberciti.biz/faq/linux-bash-exit-status-set-exit-statusin-bash/
public static final int EXIT_CODE_NO_SUCH_ELEMENT = 2;
public static final int EXIT_CODE_IO_ERROR = 5;
@CommandLine.Option(names = {"-a", "--armor"})
boolean armor = false;
@ -60,9 +64,10 @@ public class Get implements Runnable {
} catch (NoSuchElementException e) {
LOGGER.debug("Certificate not found.", e);
System.exit(EXIT_CODE_NO_SUCH_ELEMENT);
} catch (IOException e) {
LOGGER.error("IO Error", e);
System.exit(-1);
System.exit(EXIT_CODE_IO_ERROR);
} catch (BadDataException e) {
LOGGER.error("Certificate file contains bad data.", e);
System.exit(-1);