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

org.apache.tapestry5.internal.services.PageRenderQueue Maven / Gradle / Ivy

Go to download

Central module for Tapestry, containing interfaces to the Java Servlet API and all core services and components.

There is a newer version: 5.8.6
Show newest version
// Copyright 2007, 2008, 2009 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
//
// 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 org.apache.tapestry5.internal.services;

import org.apache.tapestry5.MarkupWriter;
import org.apache.tapestry5.internal.structure.Page;
import org.apache.tapestry5.json.JSONObject;
import org.apache.tapestry5.runtime.RenderCommand;
import org.apache.tapestry5.services.PartialMarkupRendererFilter;
import org.apache.tapestry5.services.ajax.MultiZoneUpdateEventResultProcessor;

/**
 * A wrapper around {@link org.apache.tapestry5.runtime.RenderQueue}, but referencable as a (per-thread) service. This
 * service is scoped so that we can tell it what to render in one method, then have it do the render in another. Part of
 * an elaborate scheme to keep certain interfaces public and other closely related ones private.
 */
public interface PageRenderQueue
{
    /**
     * Initializes the queue for rendering of a complete page.
     */
    void initializeForCompletePage(Page page);

    /**
     * Sets the default page that will render the response.
     */
    void setRenderingPage(Page page);

    /**
     * Returns the page that is rendering markup content.
     */
    Page getRenderingPage();

    /**
     * Initializes the queue for rendering of a portion of a page.
     */
    void initializeForPartialPageRender(RenderCommand rootCommand);

    /**
     * Obtains the value previously supplied to
     * {@link #initializeForPartialPageRender(org.apache.tapestry5.runtime.RenderCommand)}.
     * This allows the "natural" renderer to be substituted or otherwise manipulated.
     * 
     * @return the root renderer
     */
    RenderCommand getRootRenderCommand();

    /**
     * Returns true if {@link #initializeForPartialPageRender(org.apache.tapestry5.runtime.RenderCommand)} has been
     * invoked.
     */
    boolean isPartialRenderInitialized();

    /**
     * Forces the partialRenderInitialized flag to true, even if there isn't a root render command.
     * This is used by the {@link MultiZoneUpdateEventResultProcessor} which doesn't add a render command
     * until after rendering starts (care-of a stack of filters).
     * 
     * @since 5.2.2
     */
    void forcePartialRenderInitialized();

    /**
     * Render to the write, as setup by the initialize method.
     * 
     * @param writer
     *            to write markup to
     */
    void render(MarkupWriter writer);

    /**
     * Performs a partial markup render, as configured via
     * {@link #initializeForPartialPageRender(org.apache.tapestry5.runtime.RenderCommand)}.
     * 
     * @param writer
     *            to which markup should be written
     * @param reply
     *            JSONObject which will contain the partial response
     */
    void renderPartial(MarkupWriter writer, JSONObject reply);

    /**
     * Adds an optional filter to the rendering. Optional filters are temporary, used just during the current
     * partial render (as opposed to filters contributed to the
     * {@link org.apache.tapestry5.services.PartialMarkupRenderer} service which are permanent, shared and stateless.
     * 

* Filters are added to the end of the pipeline (after all permanent contributions). *

* Filters will be executed in the order in which they are added. * * @param filter * to add to the pipeline */ void addPartialMarkupRendererFilter(PartialMarkupRendererFilter filter); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy