com.sshtools.server.vsession.CliHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maverick-virtual-session Show documentation
Show all versions of maverick-virtual-session Show documentation
Support for a virtual sessions, custom command execution etc.
The newest version!
package com.sshtools.server.vsession;
/*-
* #%L
* Virtual Sessions
* %%
* Copyright (C) 2002 - 2024 JADAPTIVE Limited
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
import java.util.Objects;
public class CliHelper {
public static boolean hasOption(String[] args, char shortOpt, String longOpt) {
return hasShortOption(args, shortOpt) || hasLongOption(args, longOpt);
}
public static String getValue(String[] args, char shortOpt, String longOpt) throws UsageException {
return getValue(args, shortOpt, longOpt, null);
}
public static String getValue(String[] args, char shortOpt, String longOpt, String defaultValue) throws UsageException {
if(hasShortOption(args, shortOpt)) {
return getShortValue(args, shortOpt);
} else if(hasLongOption(args, longOpt)) {
return getLongValue(args, longOpt);
} else {
if(Objects.isNull(defaultValue)) {
throw new UsageException(String.format("Missing -%c or --%s option", shortOpt, longOpt));
}
}
return defaultValue;
}
public static boolean hasShortOption(String[] args, char opt) {
for(String arg : args) {
if(arg.startsWith("-") && !arg.startsWith("--")) {
if(arg.length()==2 && arg.indexOf(opt) == 1) {
return true;
}
}
}
return false;
}
public static boolean hasLongOption(String[] args, String opt) {
while(!opt.startsWith("--")) {
opt = "-" + opt;
}
for(String arg : args) {
if(arg.equals(opt)) {
return true;
}
}
return false;
}
public static String getLongValue(String[] args, String opt) throws UsageException {
while(!opt.startsWith("--")) {
opt = "-" + opt;
}
for(int i=0; i i+1) {
return args[i+1];
} else {
throw new UsageException("Missing value for long option " + opt);
}
}
}
}
throw new UsageException("Missing long option " + opt);
}
public static String getShortValue(String[] args, char opt) throws UsageException {
for(int i=0; i i+1) {
return args[i+1];
} else {
throw new UsageException("Missing value for option " + opt);
}
}
}
}
throw new UsageException("Missing option " + opt);
}
public static boolean isOption(String opt, String shortOptions) {
if(opt.startsWith("--")) {
return shortOptions.contains(opt.substring(2));
} else if(opt.startsWith("-")) {
return shortOptions.contains(opt.substring(1));
}
return false;
}
}