122 lines
3.8 KiB
C++
122 lines
3.8 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: Wrapper4InputSource.cpp 471747 2006-11-06 14:31:56Z amassari $
|
|
*/
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Includes
|
|
// ---------------------------------------------------------------------------
|
|
#include <xercesc/framework/Wrapper4InputSource.hpp>
|
|
#include <xercesc/sax/InputSource.hpp>
|
|
#include <xercesc/util/NullPointerException.hpp>
|
|
|
|
XERCES_CPP_NAMESPACE_BEGIN
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Wrapper4InputSource: Constructor and Destructor
|
|
// ---------------------------------------------------------------------------
|
|
Wrapper4InputSource::Wrapper4InputSource(InputSource* const inputSource,
|
|
const bool adoptFlag
|
|
, MemoryManager* const manager) :
|
|
fAdoptInputSource(adoptFlag)
|
|
, fInputSource(inputSource)
|
|
{
|
|
if (!inputSource)
|
|
ThrowXMLwithMemMgr(NullPointerException, XMLExcepts::CPtr_PointerIsZero, manager);
|
|
}
|
|
|
|
Wrapper4InputSource::~Wrapper4InputSource()
|
|
{
|
|
if (fAdoptInputSource)
|
|
delete fInputSource;
|
|
}
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Wrapper4InputSource: Getter methods
|
|
// ---------------------------------------------------------------------------
|
|
bool Wrapper4InputSource::getIssueFatalErrorIfNotFound() const
|
|
{
|
|
return fInputSource->getIssueFatalErrorIfNotFound();
|
|
}
|
|
|
|
const XMLCh* Wrapper4InputSource::getEncoding() const
|
|
{
|
|
return fInputSource->getEncoding();
|
|
}
|
|
|
|
const XMLCh* Wrapper4InputSource::getSystemId() const
|
|
{
|
|
return fInputSource->getSystemId();
|
|
}
|
|
|
|
const XMLCh* Wrapper4InputSource::getPublicId() const
|
|
{
|
|
return fInputSource->getPublicId();
|
|
}
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Wrapper4InputSource: Setter methods
|
|
// ---------------------------------------------------------------------------
|
|
void Wrapper4InputSource::setIssueFatalErrorIfNotFound(bool flag)
|
|
{
|
|
fInputSource->setIssueFatalErrorIfNotFound(flag);
|
|
}
|
|
|
|
|
|
void Wrapper4InputSource::setEncoding(const XMLCh* const encodingStr)
|
|
{
|
|
fInputSource->setEncoding(encodingStr);
|
|
}
|
|
|
|
|
|
void Wrapper4InputSource::setPublicId(const XMLCh* const publicId)
|
|
{
|
|
fInputSource->setPublicId(publicId);
|
|
}
|
|
|
|
|
|
void Wrapper4InputSource::setSystemId(const XMLCh* const systemId)
|
|
{
|
|
fInputSource->setSystemId(systemId);
|
|
}
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Wrapper4InputSource: Stream methods
|
|
// ---------------------------------------------------------------------------
|
|
InputSource* Wrapper4InputSource::getByteStream() const
|
|
{
|
|
return fInputSource;
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Wrapper4InputSource: Memory methods
|
|
// ---------------------------------------------------------------------------
|
|
void Wrapper4InputSource::release()
|
|
{
|
|
Wrapper4InputSource* src = (Wrapper4InputSource*) this;
|
|
delete src;
|
|
}
|
|
|
|
XERCES_CPP_NAMESPACE_END
|
|
|