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

nextapp.echo2.webcontainer.ContainerInstance Maven / Gradle / Ivy

Go to download

Echo2 bundled with Echo2_Extras, Echo2_FileTransfer and echopointing and various improvements/bugfixes

There is a newer version: 2.0.4
Show newest version
/* 
 * This file is part of the Echo Web Application Framework (hereinafter "Echo").
 * Copyright (C) 2002-2009 NextApp, Inc.
 *
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 *
 * The contents of this file are subject to the Mozilla Public License Version
 * 1.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://www.mozilla.org/MPL/
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 * for the specific language governing rights and limitations under the
 * License.
 *
 * Alternatively, the contents of this file may be used under the terms of
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 * in which case the provisions of the GPL or the LGPL are applicable instead
 * of those above. If you wish to allow use of your version of this file only
 * under the terms of either the GPL or the LGPL, and not to allow others to
 * use your version of this file under the terms of the MPL, indicate your
 * decision by deleting the provisions above and replace them with the notice
 * and other provisions required by the GPL or the LGPL. If you do not delete
 * the provisions above, a recipient may use your version of this file under
 * the terms of any one of the MPL, the GPL or the LGPL.
 */

package nextapp.echo2.webcontainer;

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.WeakHashMap;

import javax.servlet.http.HttpSessionBindingEvent;
import javax.servlet.http.HttpSessionEvent;

import nextapp.echo2.app.ApplicationInstance;
import nextapp.echo2.app.Component;
import nextapp.echo2.app.TaskQueueHandle;
import nextapp.echo2.app.update.UpdateManager;
import nextapp.echo2.webcontainer.util.IdTable;
import nextapp.echo2.webrender.Connection;
import nextapp.echo2.webrender.UserInstance;

/**
 * Web application container user instance.
 */
public class ContainerInstance extends UserInstance {
    
    /**
     * Default asynchronous monitor callback interval (in milliseconds).
     */
    private static final int DEFAULT_CALLBACK_INTERVAL = 500;
    
    /**
     * Returns the base HTML element id that should be used when rendering the
     * specified Component.
     * 
     * @param component the component 
     * @return the base HTML element id
     */
    public static String getElementId(Component component) {
        return "c_" + component.getRenderId();
    }
    
    /**
     * Creates a new Web Application Container instance using the provided
     * client Connection.  The instance will automatically
     * be stored in the relevant HttpSession
     * 
     * @param conn the client/server Connection for which the 
     *        instance is being instantiated
     */
    public static void newInstance(Connection conn) {
        new ContainerInstance(conn);
    }
    
    private ApplicationInstance applicationInstance;
    private Map componentToRenderStateMap = new HashMap();
    private transient IdTable idTable;
    private boolean initialized = false;
    private Map initialRequestParameterMap;
    private transient Map taskQueueToCallbackIntervalMap;
    
    /**
     * Creates a new ContainerInstance.
     * 
     * @param conn the client/server Connection for which the 
     *        instance is being instantiated
     * @see #newInstance(nextapp.echo2.webrender.Connection)
     */
    private ContainerInstance(Connection conn) {
        super(conn);
        setServerDelayMessage(DefaultServerDelayMessage.INSTANCE);
        initialRequestParameterMap = new HashMap(conn.getRequest().getParameterMap());
    }
    
    /**
     * Returns the corresponding ApplicationInstance
     * for this user instance.
     * 
     * @return the relevant ApplicationInstance
     */
    public ApplicationInstance getApplicationInstance() {
        return applicationInstance;
    }
    
    /**
     * Determines the application-specified asynchronous monitoring
     * service callback interval.
     * 
     * @return the callback interval, in ms
     */
    public int getCallbackInterval() {
        if (taskQueueToCallbackIntervalMap == null || taskQueueToCallbackIntervalMap.size() == 0) {
            return DEFAULT_CALLBACK_INTERVAL;
        }
        Iterator it = taskQueueToCallbackIntervalMap.values().iterator();
        int returnInterval = Integer.MAX_VALUE;
        while (it.hasNext()) {
            int interval = ((Integer) it.next()).intValue();
            if (interval < returnInterval) {
                returnInterval = interval;
            }
        }
        return returnInterval;
    }
    
    /**
     * Retrieves the Component with the specified element id.
     * 
     * @param elementId the element id, e.g., "c_42323"
     * @return the component (e.g., the component whose id is "42323")
     */
    public Component getComponentByElementId(String elementId) {
        try {
            return applicationInstance.getComponentByRenderId(elementId.substring(2));
        } catch (IndexOutOfBoundsException ex) {
            throw new IllegalArgumentException("Invalid component element id: " + elementId);
        }
    }
    
    /**
     * Retrieves the IdTable used by this 
     * ContainerInstance to assign weakly-referenced unique 
     * identifiers to arbitrary objects.
     * 
     * @return the IdTable
     */
    public IdTable getIdTable() {
        if (idTable == null) {
            idTable = new IdTable();
        }
        return idTable;
    }
    
    /**
     * Returns an immutable Map containing the HTTP form 
     * parameters sent on the initial request to the application.
     * 
     * @return the initial request parameter map
     */
    public Map getInitialRequestParameterMap() {
        return initialRequestParameterMap;
    }
    
    /**
     * Retrieves the RenderState of the specified
     * Component.
     * 
     * @param component the component
     * @return the rendering state
     */
    public RenderState getRenderState(Component component) {
        return (RenderState) componentToRenderStateMap.get(component);
    }
    
    /**
     * Convenience method to retrieve the application's 
     * UpdateManager, which is used to synchronize
     * client and server states.
     * This method is equivalent to invoking
     * getApplicationInstance().getUpdateManager().
     * 
     * @return the UpdateManager
     */
    public UpdateManager getUpdateManager() {
        return applicationInstance.getUpdateManager();
    }
    
    /**
     * Initializes the ContainerInstance, creating an instance
     * of the target ApplicationInstance and initializing the state
     * of the application.
     *
     * @param conn the relevant Connection
     */
    public void init(Connection conn) {
        if (initialized) {
            throw new IllegalStateException("Attempt to invoke ContainerInstance.init() on initialized instance.");
        }
        WebContainerServlet servlet = (WebContainerServlet) conn.getServlet();
        applicationInstance = servlet.newApplicationInstance();
        
        ContainerContext containerContext = new ContainerContextImpl(this);
        applicationInstance.setContextProperty(ContainerContext.CONTEXT_PROPERTY_NAME, containerContext);
        
        try {
            ApplicationInstance.setActive(applicationInstance);
            applicationInstance.doInit();
        } finally {
            ApplicationInstance.setActive(null);
        }
        initialized = true;
    }
    
    /**
     * Determines if the ContainerInstance has been initialized, 
     * i.e., whether its init() method has been invoked.
     * 
     * @return true if the ContainerInstance is initialized
     */
    boolean isInitialized() {
        return initialized;
    }
    
    /**
     * Removes the RenderState of the specified
     * Component.
     * 
     * @param component the component
     */
    public void removeRenderState(Component component) {
        componentToRenderStateMap.remove(component);
    }
    
    /**
     * Sets the RenderState of the specified 
     * Component.
     * 
     * @param component the component
     * @param renderState the render state
     */
    public void setRenderState(Component component, RenderState renderState) {
        componentToRenderStateMap.put(component, renderState);
    }
    
    /**
     * Sets the interval between asynchronous callbacks from the client to check
     * for queued tasks for a given TaskQueue.  If multiple 
     * TaskQueues are active, the smallest specified interval should
     * be used.  The default interval is 500ms.
     * Application access to this method should be accessed via the 
     * ContainerContext.
     * 
     * @param taskQueue the TaskQueue
     * @param ms the number of milliseconds between asynchronous client 
     *        callbacks
     * @see nextapp.echo2.webcontainer.ContainerContext#setTaskQueueCallbackInterval(nextapp.echo2.app.TaskQueueHandle, int)
     */
    public void setTaskQueueCallbackInterval(TaskQueueHandle taskQueue, int ms) {
        if (taskQueueToCallbackIntervalMap == null) {
            taskQueueToCallbackIntervalMap = new WeakHashMap();
        }
        taskQueueToCallbackIntervalMap.put(taskQueue, new Integer(ms));
    }

    /**
     * @see javax.servlet.http.HttpSessionActivationListener#sessionDidActivate(javax.servlet.http.HttpSessionEvent)
     */
    public void sessionDidActivate(HttpSessionEvent e) {
        super.sessionDidActivate(e);
        if (applicationInstance != null) {
            applicationInstance.activate();
        }
    }

    /**
     * @see javax.servlet.http.HttpSessionActivationListener#sessionWillPassivate(javax.servlet.http.HttpSessionEvent)
     */
    public void sessionWillPassivate(HttpSessionEvent e) {
        if (applicationInstance != null) {
            applicationInstance.passivate();
        }
        super.sessionWillPassivate(e);
    }

    /**
     * @see javax.servlet.http.HttpSessionBindingListener#valueUnbound(javax.servlet.http.HttpSessionBindingEvent)
     */
    public void valueUnbound(HttpSessionBindingEvent e) {
        if (applicationInstance != null) {
            applicationInstance.dispose();
        }
        super.valueUnbound(e);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy