blob: ba8d8b3ae71ee5c603a66a216b98df297bc2c201 [file] [log] [blame]
package org.apache.velocity.tools.config;
/*
* 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.
*/
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.SortedSet;
import java.util.TreeSet;
import org.apache.velocity.tools.ToolboxFactory;
/**
* <p>This class serves to define configuration info for a {@link ToolboxFactory}.
* It contains the {@link ToolboxConfiguration}s for the factory as well
* as any {@link Data} which is to be made available in the application scope
* by the factory and any {@link Property}s which you intend to be available
* to <strong>all</strong> tools managed by the factory, regardless of
* toolbox or scope.
* </p><p>
* Most users will not find themselves directly using the API of this class,
* as its subclasses generally provide much simpler means of inputting
* the actual configuration info whether from XML, Java or a Properties files.
* </p><p>
* When combining any {@link Configuration}s via the various
* {@link #addConfiguration} methods in each class, it is
* <strong>essential</strong> to remember that subsequent configurations
* always override previous ones. This is a "last entry wins" approach
* to configuration!
* </p><p>
* For debugging, this class tracks its "sources", keeping a chronological list
* of all sources for configuration data. When you add configuration info
* to this class via {@link #addConfiguration}, the source lists from those
* {@link FactoryConfiguration}s is appended to this instance's list. The
* initial item in this list will typically be the name of the FactoryConfiguration
* class (or subclass) along with a caller-provided string identifying where
* this instance was created. This aids greatly in debugging combined, complex
* configurations. You may add further sources at any time via
* {@link #addSource}.
* </p><p>
* The {@link #toString()} method of this class provides a complete and
* well-formatted listing of the configuration info contained within this
* instance and is also very useful for debugging.
* </p>
*
* @author Nathan Bubna
* @version $Id: FactoryConfiguration.java 511959 2007-02-26 19:24:39Z nbubna $
*/
public class FactoryConfiguration
extends CompoundConfiguration<ToolboxConfiguration>
{
private final SortedSet<Data> data = new TreeSet<Data>();
private final List<String> sources = new ArrayList<String>();
public FactoryConfiguration()
{
this("");
}
/**
* Creates a new instance with the specified source name
* combined with this class's name as the initial source.
* @param source configuration source name
*/
public FactoryConfiguration(String source)
{
this(FactoryConfiguration.class, source);
}
/**
* Allows subclasses to construct an instance that uses their classname.
* @param clazz FactoryConfiguration class name
* @param source configuration source name
*/
protected FactoryConfiguration(Class clazz, String source)
{
addSource(clazz.getName()+"("+source+")");
}
/**
* Returns the original source of this particular instance.
* @return configuration source
*/
public String getSource()
{
return this.sources.get(0);
}
/**
* Sets the name of the original source of this particular instance.
* This does not affect subsequently added sources.
* @param source configuration source name
*/
public void setSource(String source)
{
this.sources.set(0, source);
}
/**
* Returns the list of sources for this configuration info in
* order starting from the source name given to this instance
* (if any) and going to the most recently added source.
* @return list of all configuration sources
*/
public List<String> getSources()
{
return this.sources;
}
/**
* @param source source to add
*/
public void addSource(String source)
{
this.sources.add(source);
}
/**
* @param newDatum data to add
*/
public void addData(Data newDatum)
{
// check if we already have a matching datum
Data datum = getData(newDatum);
if (datum != null)
{
// newer overrides older, so...
// remove the old datum
removeData(datum);
}
// add the new datum
data.add(newDatum);
}
/**
* @param datum data to remove
* @return <code>true</code> if removed
*/
public boolean removeData(Data datum)
{
return data.remove(datum);
}
/**
* Search for Data by key
* @param key key of data to get
* @return found Data or null
*/
public Data getData(String key)
{
// create an example to search with
Data findme = new Data();
findme.setKey(key);
return getData(findme);
}
/**
* Search for Data by value
* @param findme value to find
* @return found Data or null
*/
public Data getData(Data findme)
{
for (Data datum : data)
{
if (datum.equals(findme))
{
return datum;
}
}
return null;
}
public boolean hasData()
{
return !data.isEmpty();
}
public SortedSet<Data> getData()
{
return data;
}
public void setData(Collection<Data> data)
{
for (Data datum : data)
{
addData(datum);
}
}
public void addToolbox(ToolboxConfiguration toolbox)
{
addChild(toolbox);
}
public void removeToolbox(ToolboxConfiguration toolbox)
{
removeChild(toolbox);
}
public ToolboxConfiguration getToolbox(String scope)
{
for (ToolboxConfiguration toolbox : getToolboxes())
{
if (scope.equals(toolbox.getScope()))
{
return toolbox;
}
}
return null;
}
public Collection<ToolboxConfiguration> getToolboxes()
{
return getChildren();
}
public void setToolboxes(Collection<ToolboxConfiguration> toolboxes)
{
setChildren(toolboxes);
}
public void addConfiguration(FactoryConfiguration config)
{
// add config's Data to our own
setData(config.getData());
// add config's sources to our own
for (String source : config.getSources())
{
addSource(source);
}
// pass to CompoundConfiguration's to add properties
super.addConfiguration(config);
}
@Override
public void validate()
{
super.validate();
for (Data datum : data)
{
datum.validate();
}
}
/**
* This will consider the object equal if it is a FactoryConfiguration
* and whose {@link #toString(boolean)} method, when passed <code>false</code>,
* returns a String equal to that returned by a call to toString(false) on this
* instance. {@link #toString(boolean)} is used since that returns a String
* encompassing all relevant info about the configuration except for the
* source information. In other words, two FactoryConfigurations are considered
* equal if they have the same data, properties and toolboxes in String form.
* @param o object to compare to
* @return equality
*/
@Override
public boolean equals(Object o)
{
if (o instanceof FactoryConfiguration)
{
FactoryConfiguration that = (FactoryConfiguration)o;
return that.toString(false).equals(this.toString(false));
}
return false;
}
@Override
public int hashCode()
{
return toString(false).hashCode();
}
@Override
public String toString()
{
return toString(true);
}
public String toString(boolean includeSources)
{
StringBuilder out = new StringBuilder();
out.append("\nFactoryConfiguration from ");
if (includeSources)
{
out.append(getSources().size());
out.append(" sources ");
}
appendProperties(out);
if (hasData())
{
out.append("including ");
out.append(data.size());
out.append(" data");
}
if (getToolboxes().isEmpty())
{
out.append("\n ");
}
else
{
appendChildren(out, "toolboxes: \n ", "\n ");
}
if (hasData())
{
for (Data datum : data)
{
out.append(datum);
out.append("\n ");
}
}
if (includeSources)
{
int count = 0;
for (String source : getSources())
{
out.append("\n Source ");
out.append(count++);
out.append(": ");
out.append(source);
}
out.append("\n");
}
return out.toString();
}
public ToolboxFactory createFactory()
{
ToolboxFactory factory = new ToolboxFactory();
factory.configure(this);
return factory;
}
}