87 lines
2.7 KiB
C++
87 lines
2.7 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
/*
|
|
* $Id: XPathMatcherStack.cpp 471747 2006-11-06 14:31:56Z amassari $
|
|
*/
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Includes
|
|
// ---------------------------------------------------------------------------
|
|
#include <xercesc/validators/schema/identity/XPathMatcherStack.hpp>
|
|
#include <xercesc/util/Janitor.hpp>
|
|
#include <xercesc/util/OutOfMemoryException.hpp>
|
|
|
|
XERCES_CPP_NAMESPACE_BEGIN
|
|
|
|
typedef JanitorMemFunCall<XPathMatcherStack> CleanupType;
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// XPathMatherStack: Constructors and Destructor
|
|
// ---------------------------------------------------------------------------
|
|
XPathMatcherStack::XPathMatcherStack(MemoryManager* const manager)
|
|
: fMatchersCount(0)
|
|
, fContextStack(0)
|
|
, fMatchers(0)
|
|
{
|
|
CleanupType cleanup(this, &XPathMatcherStack::cleanUp);
|
|
|
|
try {
|
|
fContextStack = new (manager) ValueStackOf<int>(8, manager);
|
|
fMatchers = new (manager) RefVectorOf<XPathMatcher>(8, true, manager);
|
|
}
|
|
catch(const OutOfMemoryException&)
|
|
{
|
|
cleanup.release();
|
|
|
|
throw;
|
|
}
|
|
|
|
cleanup.release();
|
|
}
|
|
|
|
XPathMatcherStack::~XPathMatcherStack() {
|
|
|
|
cleanUp();
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// XPathMatcherStack: Private helper methods.
|
|
// ---------------------------------------------------------------------------
|
|
void XPathMatcherStack::cleanUp()
|
|
{
|
|
delete fContextStack;
|
|
delete fMatchers;
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// XPathMatherStack: Clear methods
|
|
// ---------------------------------------------------------------------------
|
|
void XPathMatcherStack::clear() {
|
|
|
|
fContextStack->removeAllElements();
|
|
fMatchers->removeAllElements();
|
|
fMatchersCount = 0;
|
|
}
|
|
|
|
XERCES_CPP_NAMESPACE_END
|
|
|
|
/**
|
|
* End of file XPathMatcherStack.cpp
|
|
*/
|
|
|