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

org.milyn.util.FreeMarkerUtils 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.util;

import freemarker.ext.dom.NodeModel;
import org.milyn.container.ExecutionContext;
import org.milyn.delivery.DOMModel;
import org.milyn.javabean.context.BeanContext;
import org.w3c.dom.Element;

import java.util.HashMap;
import java.util.Map;
import java.util.Set;

/**
 * FreeMarker utility class.
 * @author [email protected]
 */
public abstract class FreeMarkerUtils {

    /**
     * Get a "merged" model for FreeMarker templating.
     * 

* This utility merges the current set of beans being managed by the * {@link BeanContext} associated with the * current {@link ExecutionContext}, with the contents of the {@link DOMModel} * associated with the current {@link ExecutionContext}. This is very useful * for templating with FreeMarker. * * @param executionContext The current execution context. * @return A merged templating model. */ public static Map getMergedModel(ExecutionContext executionContext) { Map beans = executionContext.getBeanContext().getBeanMap(); Map model = beans; DOMModel domModel = DOMModel.getModel(executionContext); if(!domModel.getModels().isEmpty()) { Map elementToNodeModelMap = getElementToNodeModelMap(executionContext); model = new HashMap(); model.putAll(beans); Set> models = domModel.getModels().entrySet(); for (Map.Entry entry : models) { NodeModel nodeModel = getNodeModel(entry.getKey(), entry.getValue(), elementToNodeModelMap); model.put(entry.getKey(), nodeModel); } } return model; } private static NodeModel getNodeModel(String key, Element element, Map elementToNodeModelMap) { ElementToNodeModel elementToNodeModel = elementToNodeModelMap.get(key); if(elementToNodeModel == null) { elementToNodeModel = new ElementToNodeModel(); elementToNodeModelMap.put(key, elementToNodeModel); elementToNodeModel.element = element; elementToNodeModel.nodeModel = NodeModel.wrap(element); } else if(elementToNodeModel.element != element) { // Must be a new element with the same name... update the map... elementToNodeModel.element = element; elementToNodeModel.nodeModel = NodeModel.wrap(element); } return elementToNodeModel.nodeModel; } private static Map getElementToNodeModelMap(ExecutionContext executionContext) { @SuppressWarnings("unchecked") Map map = (Map) executionContext.getAttribute(ElementToNodeModel.class); if(map == null) { map = new HashMap(); executionContext.setAttribute(ElementToNodeModel.class, map); } return map; } private static class ElementToNodeModel { private Element element; private NodeModel nodeModel; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy