blob: 3ab7242078bb887678825fa546962b8ba119ca2d [file] [log] [blame]
package org.apache.maven.doxia.macro;
/*
* 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.Map;
import org.apache.maven.doxia.parser.AbstractParser;
import org.apache.maven.doxia.parser.Parser;
import java.io.File;
/**
* <p>MacroRequest class.</p>
*
* @author <a href="mailto:jason@maven.org">Jason van Zyl</a>
* @version $Id$
* @since 1.0
*/
public class MacroRequest
{
private static final String PARAM_SOURCE_CONTENT = "sourceContent";
private static final String PARAM_PARSER = "parser";
/** The current base directory. */
private File basedir;
/** A map of parameters. */
private Map<String, Object> parameters;
/**
* Constructor.
*
* @param param A map of parameters.
* @param base The current base directory.
* @deprecated prefer other constructor
*/
public MacroRequest( Map<String, Object> param, File base )
{
this.parameters = param;
this.basedir = base;
}
public MacroRequest( String sourceContent, AbstractParser parser, Map<String, Object> param, File base )
{
this.parameters = param;
this.basedir = base;
param.put( PARAM_SOURCE_CONTENT, sourceContent );
parser.setSecondParsing( true );
param.put( PARAM_PARSER, parser );
}
/**
* Returns the current base directory.
*
* @return The base dir.
*/
public File getBasedir()
{
return basedir;
}
/**
* Sets the current base directory.
*
* @param base The current base directory.
*/
public void setBasedir( File base )
{
this.basedir = base;
}
/**
* Returns the map of parameters.
*
* @return The map of parameters.
*/
public Map<String, Object> getParameters()
{
return parameters;
}
/**
* Returns on object from the map of parameters
* that corresponds to the given key.
*
* @param key The key to lookup the object.
* @return The value object.
*/
public Object getParameter( String key )
{
return parameters.get( key );
}
public String getSourceContent()
{
return (String) getParameter( PARAM_SOURCE_CONTENT );
}
public Parser getParser()
{
return (Parser) getParameter( PARAM_PARSER );
}
public static boolean isInternalParameter( String name )
{
return PARAM_PARSER.equals( name ) || PARAM_SOURCE_CONTENT.equals( name );
}
}