blob: a698552a25ef6f6b80df9370ab23fab1e0182b16 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.cocoon.components.treeprocessor.sitemap;
import org.apache.avalon.framework.component.ComponentManager;
import org.apache.avalon.framework.component.Composable;
import org.apache.avalon.framework.logger.Logger;
import org.apache.cocoon.ConnectionResetException;
import org.apache.cocoon.ResourceNotFoundException;
import org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode;
import org.apache.cocoon.components.treeprocessor.InvokeContext;
import org.apache.cocoon.components.treeprocessor.ParameterizableProcessingNode;
import org.apache.cocoon.components.treeprocessor.ProcessingNode;
import org.apache.cocoon.environment.Environment;
import org.apache.cocoon.sitemap.SitemapErrorHandler;
import java.util.Map;
/**
* Handles <map:pipeline>
*
* @author <a href="mailto:juergen.seitz@basf-it-services.com">J&uuml;rgen Seitz</a>
* @author <a href="mailto:bluetkemeier@s-und-n.de">Bj&ouml;rn L&uuml;tkemeier</a>
* @author <a href="mailto:sylvain@apache.org">Sylvain Wallez</a>
* @author <a href="mailto:gianugo@apache.org">Gianugo Rabellino</a>
* @author <a href="mailto:cziegeler@apache.org">Carsten Ziegeler</a>
* @version $Id$
*/
public class PipelineNode extends AbstractParentProcessingNode
implements Composable, ParameterizableProcessingNode {
// TODO: handle a 'fail-hard' environment attribute
// can be useful to stop off-line generation when there's an error
private ProcessingNode[] children;
private ErrorHandlerHelper errorHandlerHelper;
private boolean internalOnly;
/** Is it the last <pipeline> in the enclosing <pipelines> ? */
private boolean isLast;
/** The component name of the processing pipeline */
protected String processingPipeline;
/** Optional sitemap parameters */
protected Map parameters;
/**
* A constructor to receive the optional expires parameter
* and optional parameters for the processing pipeline
*/
public PipelineNode(String name) {
this.processingPipeline = name;
this.errorHandlerHelper = new ErrorHandlerHelper();
}
/**
* The component manager is used to create error pipelines
*/
public void compose(ComponentManager manager) {
this.errorHandlerHelper.compose(manager);
}
public void enableLogging(Logger logger) {
super.enableLogging(logger);
this.errorHandlerHelper.enableLogging(logger);
}
public void setChildren(ProcessingNode[] nodes) {
this.children = nodes;
}
public void setParameters(Map parameterMap) {
this.parameters = parameterMap;
}
public void setLast(boolean isLast) {
this.isLast = isLast;
}
public void set404Handler(ProcessingNode node) {
this.errorHandlerHelper.set404Handler(node);
}
public void set500Handler(ProcessingNode node) {
this.errorHandlerHelper.set500Handler(node);
}
public void setInternalOnly(boolean internalOnly) {
this.internalOnly = internalOnly;
}
public final boolean invoke(Environment env, InvokeContext context)
throws Exception {
boolean passThrough;
Object passThroughRaw = env.getAttribute(MountNode.COCOON_PASS_THROUGH);
if (passThroughRaw == null) {
// Use default value
passThrough = false;
} else {
passThrough = ((Boolean) passThroughRaw).booleanValue();
}
// Always fail on external request if pipeline is internal only.
if (this.internalOnly && env.isExternal()) {
if (!this.isLast || passThrough) {
return false;
}
// Do not use internal-only pipeline error handler for external requests.
throw new ResourceNotFoundException("No pipeline matched request: " +
env.getURIPrefix() + env.getURI());
}
context.inform(this.processingPipeline, this.parameters, env.getObjectModel());
try {
if (this.errorHandlerHelper.isInternal()) {
// Set internal error handler in the pipeline
context.setErrorHandler(
new SitemapErrorHandler(this.errorHandlerHelper, env, context));
} else {
// Reset internal error handler (previous pipeline might had set it)
context.setErrorHandler(null);
}
if (invokeNodes(children, env, context)) {
return true;
} else if (!this.isLast || passThrough) {
return false;
}
throw new ResourceNotFoundException("No pipeline matched request: " +
env.getURIPrefix() + env.getURI());
} catch (ConnectionResetException e) {
// Will be reported by CocoonServlet, rethrowing
throw e;
} catch (Exception e) {
// Invoke error handler
return this.errorHandlerHelper.invokeErrorHandler(e, env, context);
}
}
}