All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.milyn.templating.xslt.XalanJavabeanExtension Maven / Gradle / Ivy

There is a newer version: 1.7.1
Show newest version
/*
	Milyn - Copyright (C) 2006 - 2010

	This library is free software; you can redistribute it and/or
	modify it under the terms of the GNU Lesser General Public
	License (version 2.1) as published by the Free Software 
	Foundation.

	This library is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
    
	See the GNU Lesser General Public License for more details:    
	http://www.gnu.org/licenses/lgpl.txt
*/
package org.milyn.templating.xslt;

import java.util.Hashtable;
import java.util.Map;

import ognl.Ognl;
import ognl.OgnlException;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.xalan.extensions.XSLProcessorContext;
import org.apache.xalan.templates.AVT;
import org.apache.xalan.templates.ElemExtensionCall;
import org.milyn.container.ExecutionContext;
import org.milyn.delivery.Filter;
import org.milyn.javabean.repository.BeanRepositoryManager;

/**
 * Javabean access Xalan XSLT extension for XSLT templating.
 * 

* Provides XSLT template population using OGNL expressions * embedded in an XSLT element or function extension. The OGNL expressions * are targeted at the Javabean data gathered through use of the * Smooks JavaBean Cartridge. * *

Usage

*
 * <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 *                 xmlns:xalan="http://xml.apache.org/xalan"
 * 		xmlns:smooks-bean="org.milyn.templating.xslt.XalanJavabeanExtension"
 * 		extension-element-prefixes="smooks-bean" 
 * 		version="1.0">
 * 
 * 	<xsl:template match="*">
 * 		<!-- Using the XSLT extension element... -->
 * 		<smooks-bean:select ognl="ognl-expression" />
 * 
 * 		<!-- Using the XSLT extension function... -->
 * 		<xsl:value-of select="smooks-bean:select('ognl-expression')"/>
 * 
 * 	</xsl:template>
 * 
 * </xsl:stylesheet>
* * @author tfennelly */ public class XalanJavabeanExtension { /** * Logger. */ private static Log logger = LogFactory.getLog(XalanJavabeanExtension.class); /** * Static cache of preparsed expressions. */ private static Hashtable expressionCache = new Hashtable(); /** * Support OGNL based bean value injection via an XSLT extension element. *

* The OGNL expression is expected to be specified in * the "ognl" attribute. *

* See Usage. * @param context Processor context. * @param element Extension element instance. * @return The bean value, or null if the bean is unknown. * @throws OgnlException Extension element syntax is incorrectly formed, or the * OGNL expression is unspecified or its * syntax is incorrectly formed. */ public Object select(XSLProcessorContext context, ElemExtensionCall element) throws OgnlException { AVT ognlAVT = element.getLiteralResultAttribute("ognl"); if(ognlAVT == null) { throw new OgnlException("'ognl' expression attribute not specified."); } return select(ognlAVT.getSimpleString()); } /** * Support OGNL based bean value injection via an XSLT extension function. *

* The OGNL expression is expected to be specified in * the function call. *

* See Usage. * @param ognlExpression OGNL expression. * @return The bean value, or null if the bean is unknown. * @throws OgnlException OGNL expression is unspecified or its * syntax is incorrectly formed. */ public Object select(String ognlExpression) throws OgnlException { if(ognlExpression == null || (ognlExpression = ognlExpression.trim()).equals("")) { throw new OgnlException("'ognl' expression not specified, or is blank."); } ExecutionContext activeRequest = Filter.getCurrentExecutionContext(); if(activeRequest == null) { String message = getClass().getName() + " can only be used within the context of a SmooksDOMFilter operation.."; logger.error(message); throw new IllegalStateException(message); } Map beans = activeRequest.getBeanContext().getBeanMap(); Object parsedExpression = expressionCache.get(ognlExpression); if(parsedExpression == null) { try { // Parse and store the expression... parsedExpression = Ognl.parseExpression(ognlExpression); expressionCache.put(ognlExpression, parsedExpression); } catch (OgnlException e) { logger.error("Exception parsing OGNL expression [" + ognlExpression + "]. Make sure the expression is properly constructed (http://www.ognl.org).", e); throw e; } } try { return Ognl.getValue(parsedExpression, beans); } catch (OgnlException e) { logger.error("Unexpected exception using OGNL expression [" + ognlExpression + "] on Smooks Javabean cache.", e); throw e; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy