/* * 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.forms.generation; import java.io.IOException; import java.util.Locale; import java.util.Map; import org.apache.avalon.framework.parameters.Parameters; import org.apache.cocoon.ProcessingException; import org.apache.cocoon.environment.SourceResolver; import org.apache.cocoon.forms.FormsConstants; import org.apache.cocoon.forms.formmodel.Form; import org.apache.cocoon.forms.transformation.FormsPipelineConfig; import org.apache.cocoon.generation.AbstractGenerator; import org.xml.sax.Attributes; import org.xml.sax.SAXException; /** * A generator that streams an XML representation of a {@link Form}. This will * recursively contain the XML for all widgets on the form. This can then be styled * using an XSLT. * * <p>An alternative approach that requires less (or even none) XSLT work is offered by * the {@link org.apache.cocoon.forms.transformation.FormsTemplateTransformer}. * * <p>The Form whose XML should be produced should reside either * <ol><li> In a request attribute, whose name should be provided to this * generator as a sitemap parameter called "attribute-name".</li> * <li> Or else at its default-location in the flow context-object.</li> * </ol> * * @version $Id$ */ public class FormsGenerator extends AbstractGenerator { protected FormsPipelineConfig config; private static final String FORM_GENERATED_EL = "form-generated"; public void setup(SourceResolver resolver, Map objectModel, String src, Parameters par) throws ProcessingException, SAXException, IOException { super.setup(resolver, objectModel, src, par); this.config = FormsPipelineConfig.createConfig(objectModel, parameters); // enforce a default POST method when using the generator. if (this.config.getFormMethod() == null) { this.config.setFormMethod("POST"); } } public void recycle() { super.recycle(); this.config = null; } public void generate() throws IOException, SAXException, ProcessingException { contentHandler.startDocument(); contentHandler.startPrefixMapping(FormsConstants.INSTANCE_PREFIX, FormsConstants.INSTANCE_NS); Attributes formAtts = this.config.getFormAttributes(); contentHandler.startElement(FormsConstants.INSTANCE_NS, FORM_GENERATED_EL, FormsConstants.INSTANCE_PREFIX_COLON +FORM_GENERATED_EL, formAtts); Form form = config.findForm(); form.generateSaxFragment(contentHandler, Locale.US); contentHandler.endElement(FormsConstants.INSTANCE_NS, FORM_GENERATED_EL, FormsConstants.INSTANCE_PREFIX_COLON +FORM_GENERATED_EL); contentHandler.endPrefixMapping(FormsConstants.INSTANCE_PREFIX); contentHandler.endDocument(); } }