com.cyclopsgroup.waterview.jelly.JellyPanel.java Source code

Java tutorial

Introduction

Here is the source code for com.cyclopsgroup.waterview.jelly.JellyPanel.java

Source

/* ==========================================================================
 * Copyright 2002-2005 Cyclops Group Community
 * 
 * Licensed under the Open Software License, Version 2.1 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://opensource.org/licenses/osl-2.1.php
 *
 *  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.
 * =========================================================================
 */
package com.cyclopsgroup.waterview.jelly;

import org.apache.commons.jelly.JellyContext;
import org.apache.commons.jelly.Script;
import org.apache.commons.jelly.XMLOutput;

import com.cyclopsgroup.waterview.RuntimeData;
import com.cyclopsgroup.waterview.spi.BaseModuleRunnable;
import com.cyclopsgroup.waterview.spi.JellyContextAdapter;
import com.cyclopsgroup.waterview.spi.Panel;
import com.cyclopsgroup.waterview.spi.View;

/**
 * Script based panel
 * 
 * @author <a href="mailto:jiaqi.guo@gmail.com">Jiaqi Guo </a>
 */
public class JellyPanel extends BaseModuleRunnable implements Panel {
    private static final String VIEWS_NAME = "views";

    private Script script;

    /**
     * Constructor for class ScriptPanel
     *
     * @param script Jelly script object
     * @param modulePath Path of module
     */
    public JellyPanel(Script script, String modulePath) {
        super(modulePath);
        this.script = script;
    }

    /**
     * Override or implement method of parent class or interface
     *
     * @see com.cyclopsgroup.waterview.spi.Panel#render(com.cyclopsgroup.waterview.RuntimeData, com.cyclopsgroup.waterview.spi.View[])
     */
    public void render(RuntimeData data, View[] views) throws Exception {
        JellyEngine je = (JellyEngine) data.getServiceManager().lookup(JellyEngine.ROLE);
        JellyContext jc = je.createJellyContext(data.getRequestContext());
        jc.setVariable(VIEWS_NAME, views);

        runModule(data, new JellyContextAdapter(jc));

        try {
            XMLOutput output = XMLOutput.createXMLOutput(data.getOutput());
            script.run(jc, output);
            output.flush();
        } catch (Exception e) {
            data.getOutput().println("<pre>");
            e.printStackTrace(data.getOutput());
            data.getOutput().println("</pre>");
        } finally {
            data.getOutput().flush();
        }
    }
}