/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.ant;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.taskdefs.Sequential;
import org.apache.tools.ant.taskdefs.condition.IsSet;
/**
* If (condition) then: {@link Sequential} else: {@link Sequential}.
*
* In XML:
*
*
*
*
*
*
*
* or
*
*
*
*
*
*
*
*
* both and behave like .
*
* The presence of both and is not required, but one of them must be present.
*
*
*
*
* is perfectly valid.
*
*/
public class IfElseTask extends Task {
private boolean mCondition;
private boolean mConditionIsSet = false;
private Sequential mThen;
private Sequential mElse;
/**
* Sets the condition value
*/
public void setCondition(boolean condition) {
if (mConditionIsSet) {
throw new BuildException("Cannot use both condition and isset attribute");
}
mCondition = condition;
mConditionIsSet = true;
}
public void setIsset(String name) {
if (mConditionIsSet) {
throw new BuildException("Cannot use both condition and isset attribute");
}
Project antProject = getProject();
// use Isset to ensure the implementation is correct
IsSet isSet = new IsSet();
isSet.setProject(antProject);
isSet.setProperty(name);
mCondition = isSet.eval();
mConditionIsSet = true;
}
/**
* Creates and returns the {@link Sequential}
*/
public Object createThen() {
mThen = new Sequential();
return mThen;
}
/**
* Creates and returns the {@link Sequential}
*/
public Object createElse() {
mElse = new Sequential();
return mElse;
}
@Override
public void execute() throws BuildException {
if (mConditionIsSet == false) {
throw new BuildException("condition or isset attribute is missing");
}
// need at least one.
if (mThen == null && mElse == null) {
throw new BuildException("Need at least or ");
}
if (mCondition) {
if (mThen != null) {
mThen.execute();
}
} else {
if (mElse != null) {
mElse.execute();
}
}
}
}