blob: 2d307da5f34021f02f39580f680a2ea2d1e80239 [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.
*/
#include "ElemCopy.hpp"
#include <xercesc/sax/AttributeList.hpp>
#include <xalanc/PlatformSupport/XalanMessageLoader.hpp>
#include <xalanc/DOMSupport/DOMServices.hpp>
#include "Constants.hpp"
#include "Stylesheet.hpp"
#include "StylesheetConstructionContext.hpp"
#include "StylesheetExecutionContext.hpp"
#include "StylesheetRoot.hpp"
#include "TracerEvent.hpp"
namespace XALAN_CPP_NAMESPACE {
ElemCopy::ElemCopy(
StylesheetConstructionContext& constructionContext,
Stylesheet& stylesheetTree,
const AttributeListType& atts,
XalanFileLoc lineNumber,
XalanFileLoc columnNumber) :
ElemUse(constructionContext,
stylesheetTree,
lineNumber,
columnNumber,
StylesheetConstructionContext::ELEMNAME_COPY)
{
const XalanSize_t nAttrs = atts.getLength();
for (XalanSize_t i = 0; i < nAttrs; i++)
{
const XalanDOMChar* const aname = atts.getName(i);
if (processUseAttributeSets(
constructionContext,
aname,
atts,
i) == false &&
processSpaceAttr(
Constants::ELEMNAME_COPY_WITH_PREFIX_STRING.c_str(),
aname,
atts,
i,
constructionContext) == false &&
isAttrOK(
aname,
atts,
i,
constructionContext) == false)
{
error(
constructionContext,
XalanMessages::ElementHasIllegalAttribute_2Param,
Constants::ELEMNAME_COPY_WITH_PREFIX_STRING.c_str(),
aname);
}
}
}
const XalanDOMString&
ElemCopy::getElementName() const
{
return Constants::ELEMNAME_COPY_WITH_PREFIX_STRING;
}
#if !defined(XALAN_RECURSIVE_STYLESHEET_EXECUTION)
const ElemTemplateElement*
ElemCopy::startElement(StylesheetExecutionContext& executionContext) const
{
XalanNode* const sourceNode = executionContext.getCurrentNode();
assert(sourceNode != 0);
const XalanNode::NodeType nodeType = sourceNode->getNodeType();
if(XalanNode::DOCUMENT_NODE != nodeType)
{
executionContext.cloneToResultTree(
*sourceNode,
nodeType,
true,
false,
getLocator());
if(XalanNode::ELEMENT_NODE == nodeType)
{
ElemUse::startElement(executionContext);
executionContext.copyNamespaceAttributes(*sourceNode);
return beginExecuteChildren(executionContext);
}
else
{
if(0 != executionContext.getTraceListeners())
{
executionContext.fireTraceEvent(TracerEvent(executionContext,
*this));
}
}
}
else
{
if(0 != executionContext.getTraceListeners())
{
executionContext.fireTraceEvent(TracerEvent(executionContext,
*this));
}
ElemUse::startElement(executionContext);
return beginExecuteChildren(executionContext);
}
return 0;
}
void
ElemCopy::endElement(StylesheetExecutionContext& executionContext) const
{
XalanNode* const sourceNode = executionContext.getCurrentNode();
assert(sourceNode != 0);
const XalanNode::NodeType nodeType = sourceNode->getNodeType();
if(XalanNode::DOCUMENT_NODE != nodeType)
{
if(XalanNode::ELEMENT_NODE == nodeType)
{
endExecuteChildren(executionContext);
executionContext.endElement(sourceNode->getNodeName().c_str());
ElemUse::endElement(executionContext);
}
}
else
{
endExecuteChildren(executionContext);
ElemUse::endElement(executionContext);
}
}
#endif
#if defined(XALAN_RECURSIVE_STYLESHEET_EXECUTION)
void
ElemCopy::execute(StylesheetExecutionContext& executionContext) const
{
XalanNode* const sourceNode = executionContext.getCurrentNode();
assert(sourceNode != 0);
const XalanNode::NodeType nodeType = sourceNode->getNodeType();
if(XalanNode::DOCUMENT_NODE != nodeType)
{
executionContext.cloneToResultTree(
*sourceNode,
nodeType,
true,
false,
getLocator());
if(XalanNode::ELEMENT_NODE == nodeType)
{
ElemUse::execute(executionContext);
executionContext.copyNamespaceAttributes(*sourceNode);
executeChildren(executionContext);
executionContext.endElement(sourceNode->getNodeName().c_str());
}
else
{
if(0 != executionContext.getTraceListeners())
{
executionContext.fireTraceEvent(TracerEvent(executionContext,
*this));
}
}
}
else
{
if(0 != executionContext.getTraceListeners())
{
executionContext.fireTraceEvent(TracerEvent(executionContext,
*this));
}
ElemUse::execute(executionContext);
executeChildren(executionContext);
}
}
#endif
}