org.jboss.as.cli.handlers.ifelse.IfElseBlock Maven / Gradle / Ivy
/*
* 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.ifelse;
import org.jboss.as.cli.CommandContext;
import org.jboss.as.cli.CommandFormatException;
import org.jboss.as.cli.CommandLineException;
import org.jboss.dmr.ModelNode;
/**
*
* @author Alexey Loubyansky
*/
public class IfElseBlock {
private static final String IF_BLOCK = "IF";
public static IfElseBlock create(CommandContext ctx) throws CommandLineException {
if(ctx.get(IF_BLOCK) != null) {
throw new CommandLineException("Nesting if blocks are not supported.");
}
final IfElseBlock ifBlock = new IfElseBlock();
ctx.set(IF_BLOCK, ifBlock);
return ifBlock;
}
public static IfElseBlock get(CommandContext ctx) throws CommandLineException {
final IfElseBlock ifBlock = (IfElseBlock) ctx.get(IF_BLOCK);
if(ifBlock == null) {
throw new CommandLineException("Not in an if block.");
}
return ifBlock;
}
public static IfElseBlock remove(CommandContext ctx) throws CommandLineException {
final IfElseBlock ifBlock = (IfElseBlock) ctx.remove(IF_BLOCK);
if(ifBlock == null) {
throw new CommandLineException("Not in an if block.");
}
return ifBlock;
}
private static final byte IN_IF = 0;
private static final byte IN_ELSE = 1;
private byte state;
private Operation conditionExpression;
private ModelNode conditionRequest;
private ModelNode ifRequest;
public void setCondition(String condition, ModelNode request) throws CommandLineException {
if(condition == null) {
throw new CommandFormatException("The path of the if condition can't be null.");
}
if(request == null) {
throw new CommandFormatException("The request in the if condition can't be null.");
}
conditionExpression = new ExpressionParser().parseExpression(condition);
this.conditionRequest = request;
state = IN_IF;
}
public ModelNode getConditionRequest() {
return this.conditionRequest;
}
public Operation getConditionExpression() {
return conditionExpression;
}
public void setIfRequest(ModelNode request) throws CommandLineException {
if(request == null) {
throw new CommandLineException("if request is null.");
}
if(this.ifRequest != null) {
throw new CommandLineException("if request is already initialized: " + this.ifRequest);
}
this.ifRequest = request;
}
public ModelNode getIfRequest() {
return ifRequest;
}
public boolean isInIf() {
return state == IN_IF;
}
public boolean isInElse() {
return state == IN_ELSE;
}
public void setInElse() {
this.state = IN_ELSE;
}
}