/* * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * bstefanescu */ package org.eclipse.ecr.automation.core.rendering; import java.io.InputStream; import java.net.URL; import java.util.Collections; import java.util.LinkedHashMap; import java.util.Map; import org.eclipse.ecr.automation.OperationException; import org.eclipse.ecr.runtime.api.Framework; import org.eclipse.ecr.runtime.services.resource.ResourceService; import org.mvel2.templates.CompiledTemplate; import org.mvel2.templates.TemplateCompiler; import org.mvel2.templates.TemplateRuntime; import org.nuxeo.common.utils.FileUtils; /** * MVEL rendering using a simple cache of compiled template. * * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> * */ public class MvelRender implements Renderer { protected Map<String,CompiledTemplate> cache = Collections.synchronizedMap(new Cache()); @Override public String render(String uriOrContent, Map<String,Object> root) throws Exception { CompiledTemplate compiled = null; String content = null; if (uriOrContent.startsWith(Renderer.TEMPLATE_PREFIX)) { String name = uriOrContent.substring(Renderer.TEMPLATE_PREFIX.length()); compiled = cache.get(name); if (compiled == null) { URL url = Framework.getService(ResourceService.class).getResource(name); if (url == null) { throw new OperationException("Rendering resource not found: "+name); } InputStream in = url.openStream(); try { content = FileUtils.read(in); } finally { in.close(); } compiled = TemplateCompiler.compileTemplate(content); cache.put(name, compiled); } } else { content = uriOrContent; compiled = TemplateCompiler.compileTemplate(content); } Object obj = TemplateRuntime.execute(compiled, root); return obj == null ? "" : obj.toString(); } @SuppressWarnings("serial") private static class Cache extends LinkedHashMap<String, CompiledTemplate> { protected int maxCachedItems; private Cache() { this(128); } private Cache(int maxCachedItems) { super(maxCachedItems, 1.0f, true); this.maxCachedItems = maxCachedItems; } @Override protected boolean removeEldestEntry(Map.Entry<String, CompiledTemplate> eldest) { return size() > maxCachedItems; } } }