blob: afb2586961d364fb51bd1212cdbb1419d0b63ccd [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.tools.ant.property;
import java.text.ParsePosition;
import java.util.Collection;
import java.util.Iterator;
import org.apache.tools.ant.Project;
/**
* Parse properties using a collection of expanders.
*/
public class ParseProperties implements ParseNextProperty {
private final Project project;
private final GetProperty getProperty;
private final Collection expanders;
/**
* Constructor with a getProperty.
* @param project the current ant project.
* @param expanders a sequence of exapanders
* @param getProperty property resolver.
*/
public ParseProperties(
Project project, Collection expanders, GetProperty getProperty) {
this.project = project;
this.expanders = expanders;
this.getProperty = getProperty;
}
/**
* Get the project.
* @return the current ant project.
*/
public Project getProject() {
return project;
}
/**
* Decode properties from a String representation. If the entire
* contents of the String resolve to a single property, that value
* is returned. Otherwise a String is returned.
*
* @param value The string to be scanned for property references.
* May be <code>null</code>, in which case this
* method returns immediately with no effect.
*
* @return the original string with the properties replaced, or
* <code>null</code> if the original string is <code>null</code>.
*/
public Object parseProperties(String value) {
if (value == null || "".equals(value) || value.indexOf('$') == -1) {
return value;
}
ParsePosition pos = new ParsePosition(0);
Object o = parseNextProperty(value, pos);
if (o != null && pos.getIndex() == value.length()) {
return o;
}
StringBuffer sb = new StringBuffer(value.length() * 2);
if (o == null) {
sb.append(value.charAt(pos.getIndex()));
pos.setIndex(pos.getIndex() + 1);
} else {
sb.append(o);
}
while (pos.getIndex() < value.length()) {
o = parseNextProperty(value, pos);
if (o == null) {
sb.append(value.charAt(pos.getIndex()));
pos.setIndex(pos.getIndex() + 1);
} else {
sb.append(o);
}
}
return sb.toString();
}
/**
* Learn whether a String contains replaceable properties.
* @param value the String to check.
* @return <code>true</code> if <code>value</code> contains property notation.
*/
public boolean containsProperties(String value) {
if (value == null) {
return false;
}
for (ParsePosition pos = new ParsePosition(0); pos.getIndex() < value.length();) {
if (parsePropertyName(value, pos) != null) {
return true;
}
pos.setIndex(pos.getIndex() + 1);
}
return false;
}
/**
* Return any property that can be parsed from the specified position
* in the specified String.
* @param value String to parse
* @param pos ParsePosition
* @return Object or null if no property is at the current location.
*/
public Object parseNextProperty(String value, ParsePosition pos) {
int start = pos.getIndex();
String propertyName = parsePropertyName(value, pos);
if (propertyName != null) {
Object result = getProperty(propertyName);
if (result != null) {
return result;
}
if (project != null) {
project.log(
"Property \"" + propertyName
+ "\" has not been set", Project.MSG_VERBOSE);
}
return value.substring(start, pos.getIndex());
}
return null;
}
private String parsePropertyName(String value, ParsePosition pos) {
for (Iterator iter = expanders.iterator(); iter.hasNext();) {
String propertyName = ((PropertyExpander) iter.next())
.parsePropertyName(value, pos, this);
if (propertyName == null) {
continue;
}
return propertyName;
}
return null;
}
private Object getProperty(String propertyName) {
return getProperty.getProperty(propertyName);
}
}