org.jboss.as.cli.handlers.UnsetVariableHandler Maven / Gradle / Ivy
The newest version!
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, 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.CommandLineException;
import org.jboss.as.cli.impl.ArgumentWithValue;
import org.jboss.as.cli.impl.DefaultCompleter;
import org.jboss.as.cli.operation.ParsedCommandLine;
/**
*
* @author Alexey Loubyansky
*/
public class UnsetVariableHandler extends CommandHandlerWithHelp {
public UnsetVariableHandler() {
super("unset");
new ArgumentWithValue(this, new DefaultCompleter(new DefaultCompleter.CandidatesProvider() {
@Override
public Collection getAllCandidates(CommandContext ctx) {
final List specified = ctx.getParsedCommandLine().getOtherProperties();
if(specified.isEmpty()) {
return ctx.getVariables();
}
if(ctx.getVariables().isEmpty()) {
return Collections.emptyList();
}
final ArrayList all = new ArrayList(ctx.getVariables());
all.removeAll(specified);
return all;
}
}), 0, "--variable") {
@Override
public boolean canAppearNext(CommandContext ctx) {
try {
if(helpArg.isPresent(ctx.getParsedCommandLine())) {
return false;
}
} catch (CommandFormatException e) {
return false;
}
return true;
}
};
}
/* (non-Javadoc)
* @see org.jboss.as.cli.handlers.CommandHandlerWithHelp#handle(org.jboss.as.cli.CommandContext, java.lang.String)
*/
@Override
protected void doHandle(CommandContext ctx) throws CommandLineException {
final List names = ctx.getParsedCommandLine().getOtherProperties();
if(names.isEmpty()) {
throw new CommandFormatException("Variable name is missing");
}
for (String name : names) {
if (name.charAt(0) == '$') {
name = name.substring(1);
if (name.isEmpty()) {
throw new CommandFormatException("Variable name is missing after '$'");
}
}
ctx.setVariable(name, null);
}
}
@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