blob: ebd63e79139e2bfa56d4485ca2de2f35ffdf0521 [file] [log] [blame]
package org.apache.velocity.runtime;
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
* any, must include the following acknowlegement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowlegement may appear in the software itself,
* if and wherever such third-party acknowlegements normally appear.
*
* 4. The names "The Jakarta Project", "Tomcat", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
* from this software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache"
* nor may "Apache" appear in their names without prior written
* permission of the Apache Group.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
import java.io.InputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.net.URL;
import java.net.MalformedURLException;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.Hashtable;
import java.util.Properties;
import java.util.Stack;
import java.util.Enumeration;
import java.util.TreeMap;
import java.util.Vector;
import org.apache.log.LogKit;
import org.apache.log.Logger;
import org.apache.log.LogTarget;
import org.apache.log.Formater;
import org.apache.log.output.FileOutputLogTarget;
import org.apache.velocity.runtime.log.VelocityFormater;
import org.apache.velocity.Template;
import org.apache.velocity.runtime.parser.Parser;
import org.apache.velocity.runtime.parser.ParseException;
import org.apache.velocity.runtime.parser.node.SimpleNode;
import org.apache.velocity.runtime.loader.TemplateFactory;
import org.apache.velocity.runtime.loader.TemplateLoader;
import org.apache.velocity.runtime.directive.Directive;
import org.apache.velocity.runtime.VelocimacroFactory;
import org.apache.velocity.util.SimplePool;
import org.apache.velocity.util.StringUtils;
import org.apache.velocity.runtime.configuration.VelocityResources;
/**
* This is the Runtime system for Velocity. It is the
* single access point for all functionality in Velocity.
* It adheres to the mediator pattern and is the only
* structure that developers need to be familiar with
* in order to get Velocity to perform.
*
* <pre>
* Runtime.init(properties);
*
* Template template = Runtime.getTemplate("template.vm");
*
* Runtime.warn(message);
* Runtime.info(message);
* Runtime.error(message);
* Runtime.debug(message);
* </pre>
*
* The Runtime will also cooperate with external
* systems like Turbine. Normally the Runtime will
* be fully initialized from a properties file, but
* certain phases of initialization can be delayed
* if vital pieces of information are provided by
* an external system.
*
* Turbine for example knows where the templates
* are to be loaded from, and where the velocity
* log file should be placed.
*
* In order for this to happen the velocity.properties
* file must look something like the following:
*
* runtime.log = system
* template.path = system
*
* Having these properties set to 'system' lets the
* Velocity Runtime know that an external system
* will set these properties and initialized
* the appropriates sub systems when these properties
* are set.
*
* So in the case of Velocity cooperating with Turbine
* the code might look something like the following:
*
* <pre>
* Runtime.setProperty(Runtime.RUNTIME_LOG, pathToVelocityLog);
* Runtime.initializeLogger();
*
* Runtime.setProperty(Runtime.TEMPLATE_PATH, pathToTemplates);
* Runtime.initializeTemplateLoader();
* </pre>
*
* It is simply a matter of setting the appropriate property
* an initializing the matching sub system.
*
* @author <a href="mailto:jvanzyl@periapt.com">Jason van Zyl</a>
* @author <a href="mailto:jlb@houseofdistraction.com">Jeff Bowden</a>
* @author <a href="mailto:geirm@optonline.net">Geir Magusson Jr.</a>
* @version $Id: Runtime.java,v 1.66 2000/12/06 05:58:02 geirm Exp $
*/
public class Runtime implements RuntimeConstants
{
/** Prefix for warning messages */
private final static String WARN = " [warn] ";
/** Prefix for info messages */
private final static String INFO = " [info] ";
/** Prefix for debug messages */
private final static String DEBUG = " [debug] ";
/** Prefix for error messages */
private final static String ERROR = " [error] ";
/** Turn Runtime debugging on with this field */
private final static boolean DEBUG_ON = true;
/** Default Runtime properties */
private final static String DEFAULT_RUNTIME_PROPERTIES =
"org/apache/velocity/runtime/defaults/velocity.properties";
/** Default Runtime properties */
private final static String DEFAULT_RUNTIME_DIRECTIVES =
"org/apache/velocity/runtime/defaults/directive.properties";
/** Include paths property used by Runtime for #included content */
private final static String INCLUDE_PATHS = "include.path";
/**
* Number of parsers to create
*/
private static final int NUMBER_OF_PARSERS = 20;
/**
* VelocimacroFactory object to manage VMs
*/
private static VelocimacroFactory vmFactory_ = new VelocimacroFactory();
/** A list of paths that we can pull static content from. */
private static String[] includePaths;
/** The Runtime logger */
private static Logger logger;
/** TemplateLoader used by the Runtime */
private static TemplateLoader templateLoader;
/** The caching system used by the Velocity Runtime */
//private static GlobalCache globalCache;
private static Hashtable globalCache;
/**
* The List of templateLoaders that the Runtime will
* use to locate the InputStream source of a template.
*/
private static List templateLoaders;
/**
* The Runtime parser. This has to be changed to
* a pool of parsers!
*/
private static SimplePool parserPool;
/** Indicate whether the Runtime has been fully initialized */
private static boolean initialized;
private static boolean initializedPublic = false;
/**
* The logging systems initialization may be defered if
* it is to be initialized by an external system. There
* may be messages that need to be stored until the
* logger is instantiated. They will be stored here
* until the logger is alive.
*/
private static Vector pendingMessages = new Vector();
/**
* This is a list of the template stream source
* initializers, basically properties for a particular
* template stream source. The order in this list
* reflects numbering of the properties i.e.
* template.loader.1.<property> = <value>
* template.loader.2.<property> = <value>
*/
private static List sourceInitializerList;
/**
* This is a map of public name of the template
* stream source to it's initializer. This is so
* that clients of velocity can set properties of
* a template source stream with its public name.
* So for example, a client could set the
* File.template.path property and this would
* change the template.path property for the
* file template stream source.
*/
private static Map sourceInitializerMap;
private static boolean sourceInitializersAssembled = false;
/**
* This is a hashtable of initialized directives.
* The directives that populate this hashtable are
* taken from the RUNTIME_DEFAULT_DIRECTIVES
* property file. This hashtable is passed
* to each parser that is created.
*/
private static Hashtable runtimeDirectives;
/**
* Initializes the Velocity Runtime.
*/
public synchronized static void init( Properties p )
throws Exception
{
if (initializedPublic)
return;
/*
* set the default properties, and don't call assembleSourceInitializers()
*/
setDefaultProperties( false);
/*
* now add the new ones from the calling app
*/
if (p != null)
addPropertiesFromProperties( p );
/*
* now call init to do the real work
*/
init();
initializedPublic = true;
}
public synchronized static void init(String propertiesFileName)
throws Exception
{
/*
* if we have been initialized fully, don't do it again
*/
if (initializedPublic)
return;
/*
* new way. Start by loading the default properties to have a hopefully complete
* base of properties to work from.
* then load the local properties to layover the default ones. This should make
* life easy for users.
*/
setDefaultProperties( false );
/*
* if we were passed propertis, try loading propertiesFile as a straight file first,
* if that fails, then try and use the classpath
*/
if (propertiesFileName != null && !propertiesFileName.equals(""))
{
File file = new File(propertiesFileName);
try
{
if( file.exists() )
{
FileInputStream is = new FileInputStream( file );
addPropertiesFromStream( is, propertiesFileName );
}
else
{
info ("Override Properties : " + file.getPath() + " not found. Looking in classpath.");
/*
* lets try the classpath
*/
ClassLoader classLoader = Runtime.class.getClassLoader();
InputStream inputStream = classLoader.getResourceAsStream( propertiesFileName );
if (inputStream!= null)
addPropertiesFromStream( inputStream, propertiesFileName );
else
info ("Override Properties : " + propertiesFileName + " not found in classpath.");
}
}
catch (Exception ex)
{
error("Exception finding properties " + propertiesFileName + " : " + ex);
}
}
/*
* now call init to do the real work
*/
init();
initializedPublic = true;
}
/**
* adds / replaces properties in VelocityResources from a stream.
*/
private static boolean addPropertiesFromStream( InputStream is, String sourceName )
throws Exception
{
if( is == null)
return false;
/*
* lets load the properties, and then iterate them out
*/
Properties p = new Properties();
p.load( is );
info ("Override Properties : " + sourceName );
return addPropertiesFromProperties( p );
}
/**
* adds / replaces properties in VelocityResources from a properties object.
*/
private static boolean addPropertiesFromProperties( Properties p )
throws Exception
{
if( p == null)
return false;
/*
* iterate them out
*/
for (Enumeration e = p.keys(); e.hasMoreElements() ; )
{
String s = (String) e.nextElement();
VelocityResources.setProperty( s, p.getProperty(s) );
info (" ** Property Override : " + s + " = " + p.getProperty(s));
}
return true;
}
/*
* This is the primary initialization method in the Velocity
* Runtime. The systems that are setup/initialized here are
* as follows:
*
* <ul>
* <li>Logging System</li>
* <li>Template Sources</li>
* <li>Parser Pool</li>
* <li>Global Cache</li>
* <li>Static Content Include System</li>
* <li>Velocimacro System</li>
* </ul>
*/
public synchronized static void init()
throws Exception
{
if (! initialized)
{
try
{
initializeLogger();
initializeTemplateLoader();
initializeDirectives();
initializeParserPool();
initializeGlobalCache();
initializeIncludePaths();
/*
* initialize the VM Factory. It will use the properties
* accessable from Runtime, so keep this here at the end.
*/
vmFactory_.initVelocimacro();
info("Velocity successfully started.");
initialized = true;
}
catch (Exception e)
{
System.out.println(e);
e.printStackTrace();
}
}
}
/**
* Allow an external mechanism to set the properties for
* Velocity Runtime. This is being use right now by Turbine.
* There is a standard velocity properties file that is
* employed by Turbine/Velocity apps, but certain properties
* like the location of log file, and the template path
* must be set by Turbine because the location of the
* log file, and the template path are based on
* the location of the context root.
*
* So common properties can be set with a standard properties
* file, then certain properties can be changed before
* the Velocity Runtime is initialized.
*/
public static void setProperties(String propertiesFileName)
throws Exception
{
/*
* Try loading propertiesFile as a straight file first,
* if that fails, then try and use the classpath, if
* that fails then use the default values.
*/
try
{
VelocityResources.setPropertiesFileName( propertiesFileName );
assembleSourceInitializers();
info ("Properties File: " + new File(propertiesFileName).getAbsolutePath());
}
catch(Exception ex)
{
ClassLoader classLoader = Runtime.class.getClassLoader();
InputStream inputStream = classLoader.getResourceAsStream(propertiesFileName);
if (inputStream != null)
{
VelocityResources.setPropertiesInputStream( inputStream );
assembleSourceInitializers();
info ("Properties File: " + new File(propertiesFileName).getAbsolutePath());
}
else
throw new Exception("Cannot find " + propertiesFileName + "!");
}
}
/**
* Initializes the Velocity Runtime with properties file.
* The properties file may be in the file system proper,
* or the properties file may be in the classpath.
*/
public static void setDefaultProperties()
{
setDefaultProperties( true );
}
private static void setDefaultProperties( boolean doAssoc)
{
ClassLoader classLoader = Runtime.class.getClassLoader();
try
{
InputStream inputStream = classLoader.getResourceAsStream( DEFAULT_RUNTIME_PROPERTIES );
VelocityResources.setPropertiesInputStream( inputStream );
if (doAssoc)
assembleSourceInitializers();
info ("Default Properties File: " + new File(DEFAULT_RUNTIME_PROPERTIES).getPath());
}
catch (IOException ioe)
{
System.err.println("Cannot get Velocity Runtime default properties!");
}
}
/**
* Allows an external system to set a property in
* the Velocity Runtime.
*/
public static void setProperty(String key, String value)
{
VelocityResources.setProperty( key, value );
}
/**
* Initialize the Velocity logging system.
*/
private static void initializeLogger() throws
MalformedURLException
{
/*
* Let's look at the log file entry and
* correct it if it is not a property
* fomratted URL.
*/
String logFile = VelocityResources.getString(RUNTIME_LOG);
/*
* Initialize the logger.
*/
logger = LogKit.createLogger("velocity",
fileToURL(logFile), "DEBUG");
LogTarget[] t = logger.getLogTargets();
((FileOutputLogTarget)t[0])
.setFormater((Formater) new VelocityFormater());
((FileOutputLogTarget)t[0])
.setFormat("%{time} %{message}\\n%{throwable}" );
if ( !pendingMessages.isEmpty())
{
/*
* iterate and log each individual message...
*/
for( Enumeration e = pendingMessages.elements(); e.hasMoreElements(); )
logger.info( (String) e.nextElement());
}
Runtime.info("Log file being used is: " + new File(logFile).getAbsolutePath());
}
/**
* This was borrowed form xml-fop. Convert a file
* name into a string that represents a well-formed
* URL.
*
* d:\path\to\logfile
* file://d:/path/to/logfile
*
* NOTE: this is a total hack-a-roo! This should
* be dealt with in the org.apache.log package. Client
* packages should not have to mess around making
* properly formed URLs when log files are almost
* always going to be specified with file paths!
*/
private static String fileToURL(String filename)
throws MalformedURLException
{
File file = new File(filename);
String path = file.getAbsolutePath();
String fSep = System.getProperty("file.separator");
if (fSep != null && fSep.length() == 1)
path = "file://" + path.replace(fSep.charAt(0), '/');
return path;
}
/**
* Initialize the template loader if there
* is a real path set for the template.path
* property. Otherwise defer initialization
* of the template loader because it is going
* to be set by some external mechanism: Turbine
* for example.
*/
private static void initializeTemplateLoader() throws Exception
{
if(!sourceInitializersAssembled)
assembleSourceInitializers();
templateLoaders = new ArrayList();
for (int i = 0; i < sourceInitializerList.size(); i++)
{
Map initializer = (Map) sourceInitializerList.get(i);
String loaderClass = (String) initializer.get("class");
templateLoader = TemplateFactory.getLoader(loaderClass);
templateLoader.init(initializer);
templateLoaders.add(templateLoader);
}
}
/**
* This will produce a List of Hashtables, each
* hashtable contains the intialization info for
* a particular template loader. This Hastable
* will be passed in when initializing the
* the template loader.
*/
private static void assembleSourceInitializers()
{
sourceInitializerList = new ArrayList();
sourceInitializerMap = new Hashtable();
for (int i = 0; i < 10; i++)
{
String loaderID = "template.loader." + new Integer(i).toString();
Enumeration e = VelocityResources.getKeys(loaderID);
if (!e.hasMoreElements())
continue;
Hashtable sourceInitializer = new Hashtable();
while (e.hasMoreElements())
{
String property = (String) e.nextElement();
String value = VelocityResources.getString(property);
property = property.substring(loaderID.length() + 1);
sourceInitializer.put(property, value);
/*
* Make a Map of the public names for the sources
* to the sources property identifier so that external
* clients can set source properties. For example:
* File.template.path would get translated into
* template.loader.1.template.path and the translated
* name would be used to set the property.
*/
if (property.equals("public.name"))
sourceInitializerMap.put(value, sourceInitializer);
}
sourceInitializerList.add(sourceInitializer);
sourceInitializersAssembled = true;
}
}
/**
* This methods initializes all the directives
* that are used by the Velocity Runtime. The
* directives to be initialized are listed in
* the RUNTIME_DEFAULT_DIRECTIVES properties
* file.
*/
private static void initializeDirectives() throws Exception
{
/*
* Initialize the runtime directive table.
* This will be used for creating parsers.
*/
runtimeDirectives = new Hashtable();
Properties directiveProperties = new Properties();
/*
* Grab the properties file with the list of directives
* that we should initialize.
*/
ClassLoader classLoader = Runtime.class.getClassLoader();
InputStream inputStream = classLoader
.getResourceAsStream(DEFAULT_RUNTIME_DIRECTIVES);
if (inputStream == null)
throw new Exception("Error loading directive.properties! " +
"Something is very wrong if these properties " +
"aren't being located. Either your Velocity " +
"distribution is incomplete or your Velocity " +
"jar file is corrupted!");
directiveProperties.load(inputStream);
/*
* Grab all the values of the properties. These
* are all class names for example:
*
* org.apache.velocity.runtime.directive.Foreach
*
*/
Enumeration directiveClasses = directiveProperties.elements();
while (directiveClasses.hasMoreElements())
{
String directiveClass = (String) directiveClasses.nextElement();
try
{
/*
* Attempt to instantiate the directive class. This
* should usually happen without error because the
* properties file that lists the directives is
* not visible. It's in a package that isn't
* readily accessible.
*
*/
Class clazz = Class.forName(directiveClass);
Directive directive = (Directive) clazz.newInstance();
runtimeDirectives.put(directive.getName(), directive);
Runtime.info("Loaded Pluggable Directive: "
+ directiveClass);
}
catch (Exception e)
{
Runtime.error("Error Loading Pluggable Directive: "
+ directiveClass);
}
}
}
/**
* Allow clients of Velocity to set a template stream
* source property before the template source streams
* are initialized. This would for example allow clients
* to set the template path that would be used by the
* file template stream source. Right now these properties
* have to be set before the template stream source is
* initialized. Maybe we should allow these properties
* to be changed on the fly.
*/
public static void setSourceProperty(String key, String value)
{
String publicName = key.substring(0, key.indexOf("."));
String property = key.substring(key.indexOf(".") + 1);
((Map)sourceInitializerMap.get(publicName)).put(property, value);
}
/**
* Initializes the Velocity parser pool.
* This still needs to be implemented.
*/
private static void initializeParserPool()
{
parserPool = new SimplePool(NUMBER_OF_PARSERS);
for (int i=0;i<NUMBER_OF_PARSERS ;i++ )
{
parserPool.put (createNewParser());
}
Runtime.info ("Created: " + NUMBER_OF_PARSERS + " parsers.");
}
/**
* Returns a parser
*/
public static Parser createNewParser()
{
Parser parser = new Parser();
parser.setDirectives(runtimeDirectives);
return parser;
}
/**
* Parse the input stream and return the root of
* AST node structure.
*/
public static SimpleNode parse(InputStream inputStream, String strTemplateName )
throws ParseException
{
SimpleNode AST = null;
Parser parser = (Parser) parserPool.get();
if (parser != null)
{
AST = parser.parse(inputStream, strTemplateName);
parserPool.put(parser);
return AST;
}
else
error("Runtime : ran out of parsers!");
return null;
}
/**
* Initialize the global cache use by the Velocity
* runtime. Cached templates will be stored here,
* as well as cached content pulled in by the #include
* directive. Who knows what else we'll find to
* cache.
*/
private static void initializeGlobalCache()
{
//globalCache = new GlobalCache();
globalCache = new Hashtable();
}
private static void initializeIncludePaths()
{
includePaths = VelocityResources.getStringArray(INCLUDE_PATHS);
}
public static String[] getIncludePaths()
{
return includePaths;
}
/**
* Set an object in the global cache for
* subsequent use.
*/
public static void setCacheObject(String key, Object object)
{
globalCache.put(key,object);
}
/**
* Get an object from the cache.
*
* Hmm. Getting an object requires catching
* an ObjectExpiredException, but how can we do
* this without tying ourselves to the to
* the caching system?
*/
public static Object getCacheObject(String key)
{
try
{
return globalCache.get(key);
}
catch (Exception e)
{
/*
* This is an ObjectExpiredException, but
* I don't want to try the structure of the
* caching system to the Runtime.
*/
return null;
}
}
/**
* Get a template via the TemplateLoader.
*/
public static Template getTemplate(String template)
throws Exception
{
InputStream is = null;
Template t= null;
TemplateLoader tl = null;
/*
* Check to see if the template was placed in the cache.
* If it was placed in the cache then we will use
* the cached version of the template. If not we
* will load it.
*/
if (globalCache.containsKey(template))
{
t = (Template) globalCache.get(template);
tl = t.getTemplateLoader();
/*
* The template knows whether it needs to be checked
* or not, and the template's loader can check to
* see if the source has been modified. If both
* these conditions are true then we must reload
* the input stream and parse it to make a new
* AST for the template.
*/
if (t.requiresChecking() && tl.isSourceModified(t))
{
try
{
is = tl.getTemplateStream(template);
t.setDocument(parse(is, t.getName() ));
t.initDocument();
return t;
}
catch (Exception e)
{
error(e);
}
}
return t;
}
else
{
try
{
t = new Template();
t.setName(template);
/*
* Now we have to try to find the appropriate
* loader for this template. We have to cycle through
* the list of available template loaders and see
* which one gives us a stream that we can use to
* make a template with.
*/
for (int i = 0; i < templateLoaders.size(); i++)
{
tl = (TemplateLoader) templateLoaders.get(i);
is = tl.getTemplateStream(template);
/*
* If we get an InputStream then we have found
* our loader.
*/
if (is != null)
break;
}
/*
* Return null if we can't find a template.
*/
if (is == null)
throw new Exception("Can't find " + template + "!");
t.setLastModified(tl.getLastModified(t));
t.setModificationCheckInterval(tl.getModificationCheckInterval());
t.setTemplateLoader(tl);
t.setDocument(parse(is, t.getName() ));
t.initDocument();
t.touch();
/*
* Place the template in the cache if the template
* loader says to.
*/
if (tl.useCache())
globalCache.put(template, t);
}
catch (Exception e)
{
error(e);
}
}
return t;
}
private static void log(String message)
{
if (logger != null)
logger.info(message);
else
pendingMessages.addElement(message);
}
/** Log a warning message */
public static void warn(Object message)
{
String out = null;
if ( getBoolean(RUNTIME_LOG_WARN_STACKTRACE, false) && (message instanceof Throwable || message instanceof Exception) )
out = StringUtils.stackTrace((Throwable)message);
else
out = message.toString();
log(WARN + out);
}
/** Log an info message */
public static void info(Object message)
{
String out = null;
if ( getBoolean(RUNTIME_LOG_INFO_STACKTRACE, false) && ( message instanceof Throwable || message instanceof Exception) )
out = StringUtils.stackTrace((Throwable)message);
else
out = message.toString();
log(INFO + out);
}
/** Log an error message */
public static void error(Object message)
{
String out = null;
if ( getBoolean(RUNTIME_LOG_ERROR_STACKTRACE, false) && ( message instanceof Throwable || message instanceof Exception ) )
out = StringUtils.stackTrace((Throwable)message);
else
out = message.toString();
log(ERROR + out);
}
/** Log a debug message */
public static void debug(Object message)
{
if (DEBUG_ON)
log(DEBUG + message.toString());
}
public static void main(String[] args) throws Exception
{
System.out.println(fileToURL(args[0]));
}
/**
* String property accessor method with defaultto hide the VelocityResources implementation
* @param strKey property key
* @param strDefault default value to return if key not found in resource manager
* @return String value of key or default
*/
public static String getString( String strKey, String strDefault)
{
return VelocityResources.getString(strKey, strDefault);
}
/**
* returns the appropriate VelocimacroProxy object if strVMname
* is a valid current Velocimacro
*
* @param strVMName Name of velocimacro requested
* @return VelocimacroProxy
*/
public static Directive getVelocimacro( String strVMName )
{
return vmFactory_.getVelocimacro( strVMName );
}
/**
* adds a new Velocimacro. Usually called by Macro only while parsing
*
* @param strName Name of velocimacro
* @param strMacro String form of macro body
* @param strArgArray Array of strings, containing the #macro() arguments. the 0th is the name.
* @param strMacroArray The macro body as an array of strings. Basically, the tokenized literal representation
* @param tmArgIndexMap Indexes to the args in the macro body string
* @return boolean True if added, false if rejected for some reason (either parameters or permission settings)
*/
public static boolean addVelocimacro( String strName, String strMacro, String strArgArray[],
String strMacroArray[], TreeMap tmArgIndexMap, String strSourceTemplate )
{
return vmFactory_.addVelocimacro( strName, strMacro, strArgArray, strMacroArray, tmArgIndexMap, strSourceTemplate);
}
/**
* Checks to see if a VM exists
*
* @param strName Name of velocimacro
* @return boolean True if VM by that name exists, false if not
*/
public static boolean isVelocimacro( String strVMName )
{
return vmFactory_.isVelocimacro( strVMName );
}
/* --------------------------------------------------------------------
* R U N T I M E A C C E S S O R M E T H O D S
* --------------------------------------------------------------------
* These are the getXXX() methods that are a simple wrapper
* around the VelocityResources object. This is an attempt
* to make a the Velocity Runtime the single access point
* for all things Velocity, and allow the Runtime to
* adhere as closely as possible the the Mediator pattern
* which is the ultimate goal.
* --------------------------------------------------------------------
*/
/**
* String property accessor method to hide the VelocityResources implementation
* @param strKey property key
* @return value of key or null
*/
public static String getString( String strKey)
{
return VelocityResources.getString( strKey );
}
/**
* int property accessor method to hide the VelocityResources implementation
* @param strKey property key
* @return int alue
*/
public static int getInt( String strKey )
{
return VelocityResources.getInt( strKey );
}
public static int getInt( String strKey, int defaultValue )
{
return VelocityResources.getInt( strKey, defaultValue );
}
/**
* boolean property accessor method to hide the VelocityResources implementation
* @param strKey property key
* @param default default value if property not found
* @return boolean value of key or default value
*/
public static boolean getBoolean( String strKey, boolean def )
{
return VelocityResources.getBoolean( strKey, def );
}
}