org.jboss.as.cli.handlers.SetVariableHandler Maven / Gradle / Ivy
The newest version!
/*
* JBoss, Home of Professional Open Source.
* Copyright 2013, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This 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 2.1 of
* the License, or (at your option) any later version.
*
* This software 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.as.cli.handlers;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Set;
import org.jboss.as.cli.CommandContext;
import org.jboss.as.cli.CommandFormatException;
import org.jboss.as.cli.CommandLineCompleter;
import org.jboss.as.cli.CommandLineException;
import org.jboss.as.cli.Util;
import org.jboss.as.cli.impl.ArgumentWithValue;
import org.jboss.as.cli.operation.ParsedCommandLine;
/**
* @author Alexey Loubyansky
*
*/
public class SetVariableHandler extends CommandHandlerWithHelp {
public SetVariableHandler() {
super("set");
new ArgumentWithValue(this, new CommandLineCompleter(){
@Override
public int complete(CommandContext ctx, String buffer, int cursor, List candidates) {
int equals = buffer.indexOf('=');
if(equals < 1 || equals + 1 == buffer.length()) {
return -1;
}
// the problem is splitting values with whitespaces, e.g. for command substitution
final String value = buffer.substring(equals + 1);
final int valueIndex = ctx.getDefaultCommandCompleter().complete(ctx, value, cursor, candidates);
if(valueIndex < 0) {
return -1;
}
return equals + 1 + valueIndex;
}}, Integer.MAX_VALUE, "--variable") {
@Override
public boolean canAppearNext(CommandContext ctx) throws CommandFormatException {
return !helpArg.isPresent(ctx.getParsedCommandLine());
}
};
}
/* (non-Javadoc)
* @see org.jboss.as.cli.handlers.CommandHandlerWithHelp#doHandle(org.jboss.as.cli.CommandContext)
*/
@Override
protected void doHandle(CommandContext ctx) throws CommandLineException {
ParsedCommandLine parsedArgs = ctx.getParsedCommandLine();
final List vars = parsedArgs.getOtherProperties();
if(vars.isEmpty()) {
final Collection defined = ctx.getVariables();
if(defined.isEmpty()) {
return;
}
final List pairs = new ArrayList(defined.size());
for(String var : defined) {
pairs.add(var + '=' + ctx.getVariable(var));
}
Collections.sort(pairs);
for(String pair : pairs) {
ctx.printLine(pair);
}
return;
}
for(String arg : vars) {
arg = ArgumentWithValue.resolveValue(arg);
if(arg.charAt(0) == '$') {
arg = arg.substring(1);
if(arg.isEmpty()) {
throw new CommandFormatException("Variable name is missing after '$'");
}
}
final int equals = arg.indexOf('=');
if(equals < 1) {
throw new CommandFormatException("'=' is missing for variable '" + arg + "'");
}
final String name = arg.substring(0, equals);
if(name.isEmpty()) {
throw new CommandFormatException("The name is missing in '" + arg + "'");
}
if(equals == arg.length() - 1) {
ctx.setVariable(name, null);
} else {
String value = arg.substring(equals + 1);
if(value.length() > 2 && value.charAt(0) == '`' && value.charAt(value.length() - 1) == '`') {
value = Util.getResult(ctx, value.substring(1, value.length() - 1));
}
ctx.setVariable(name, value);
}
}
}
@Override
protected void recognizeArguments(CommandContext ctx) throws CommandFormatException {
final ParsedCommandLine args = ctx.getParsedCommandLine();
final Set propertyNames = args.getPropertyNames();
if(!propertyNames.isEmpty()) {
final Collection names;
if(helpArg.isPresent(args)) {
if(propertyNames.size() == 1) {
return;
}
names = new ArrayList(propertyNames);
names.remove(helpArg.getFullName());
names.remove(helpArg.getShortName());
} else {
names = propertyNames;
}
throw new CommandFormatException("Unrecognized argument names: " + names);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy