blob: 6374e15a50c267bb159fa3a61d7603c5084f2e36 [file] [log] [blame]
// 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 <em>temporary</em>, 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.
* <p/>
* Filters are added to the <em>end</em> of the pipeline (after all permanent contributions).
* <p/>
* Filters will be executed in the order in which they are added.
*
* @param filter
* to add to the pipeline
*/
void addPartialMarkupRendererFilter(PartialMarkupRendererFilter filter);
}