blob: 7058974a2a26c41dbcae51f2e86baec4694f5fa2 [file] [log] [blame]
/*
* Copyright 1999-2005 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.lenya.cms.authoring;
import java.util.Map;
import org.apache.avalon.framework.configuration.Configuration;
import org.apache.avalon.framework.container.ContainerUtil;
import org.apache.avalon.framework.logger.AbstractLogEnabled;
import org.apache.avalon.framework.logger.Logger;
import org.apache.avalon.framework.service.ServiceManager;
import org.apache.lenya.cms.cocoon.source.SourceUtil;
import org.apache.lenya.cms.publication.DocumentException;
import org.w3c.dom.Document;
/**
* Base creator for creating documents
* @version $Id$
*/
public abstract class DefaultCreator extends AbstractLogEnabled implements NodeCreatorInterface {
private String sampleResourceName = null;
private ServiceManager manager;
/**
* @see org.apache.lenya.cms.authoring.NodeCreatorInterface#init(Configuration, ServiceManager,
* Logger)
*/
public void init(Configuration conf, ServiceManager _manager, Logger _logger) {
// parameter conf ignored: nothing to configure in current implementation
this.manager = _manager;
ContainerUtil.enableLogging(this, _logger);
}
/**
* Create Child Name for tree entry
* @param childname a <code>String</code> value
* @return a <code>String</code> for Child Name for tree entry
* @exception Exception if an error occurs
*/
public String getChildName(String childname) throws Exception {
if (childname.length() != 0) {
return childname;
}
return "abstract_default";
}
/**
* @see NodeCreatorInterface#create(String, org.apache.lenya.cms.publication.Document, Map)
*/
public void create(String initialContentsURI, org.apache.lenya.cms.repo.Document document,
Map parameters) throws Exception {
if (getLogger().isDebugEnabled())
getLogger().debug("DefaultCreator::create() called with\n" + "\t initialContentsURI ["
+ initialContentsURI + "]\n" + "\t document [" + document + "]\n"
+ "\t non-empty parameters [" + (parameters != null) + "]\n");
// Read initial contents as DOM
if (getLogger().isDebugEnabled())
getLogger().debug("DefaultCreator::create(), ready to read initial contents from URI ["
+ initialContentsURI + "]");
Document xmlDoc = null;
try {
xmlDoc = SourceUtil.readDOM(initialContentsURI, manager);
} catch (Exception e) {
throw new DocumentException("could not read document at location [ "
+ initialContentsURI + "]", e);
}
if (getLogger().isDebugEnabled())
getLogger().debug("transform sample file: ");
// transform the xml if needed
transformXML(xmlDoc, document, parameters);
// write the document
SourceUtil.writeDOM(xmlDoc, document.getOutputStream(), manager);
}
/**
* Create the language suffix for a file name given a language string
* @param language the language
* @return the suffix for the language dependant file name
*/
protected String getLanguageSuffix(String language) {
return (language != null) ? "_" + language : "";
}
/**
* Apply some transformation on the newly created document.
* @param doc the xml document
* @param document the Lenya document
* @param parameters additional parameters that can be used in the transformation
* @throws Exception if the transformation fails
*/
protected void transformXML(Document doc, org.apache.lenya.cms.repo.Document document,
Map parameters) throws Exception {
}
}