blob: bcb80d4d9d85504b8da0044a17a3e4dec39f1e27 [file] [log] [blame]
/*
* Copyright 1999-2004 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.
*/
#include "XercesDOMParsedSource.hpp"
#include <xercesc/sax/InputSource.hpp>
#include <xalanc/XalanDOM/XalanDocument.hpp>
#include <xalanc/PlatformSupport/URISupport.hpp>
XALAN_CPP_NAMESPACE_BEGIN
XercesDOMParsedSourceHelper::XercesDOMParsedSourceHelper() :
m_domSupport(),
m_parserLiaison()
{
}
XercesDOMParsedSourceHelper::~XercesDOMParsedSourceHelper()
{
}
DOMSupport&
XercesDOMParsedSourceHelper::getDOMSupport()
{
return m_domSupport;
}
XMLParserLiaison&
XercesDOMParsedSourceHelper::getParserLiaison()
{
return m_parserLiaison;
}
XercesDOMParsedSource::XercesDOMParsedSource(
const InputSourceType& theInputSource,
bool fValidate,
ErrorHandlerType* theErrorHandler,
EntityResolverType* theEntityResolver,
const XalanDOMChar* theExternalSchemaLocation,
const XalanDOMChar* theExternalNoNamespaceSchemaLocation) :
XalanParsedSource(),
m_parserLiaison(),
m_parsedSource(0)
{
m_parserLiaison.setUseValidation(fValidate);
m_parserLiaison.setEntityResolver(theEntityResolver);
m_parserLiaison.setErrorHandler(theErrorHandler);
m_parserLiaison.setExternalSchemaLocation(theExternalSchemaLocation);
m_parserLiaison.setExternalNoNamespaceSchemaLocation(theExternalNoNamespaceSchemaLocation);
m_parsedSource = m_parserLiaison.parseXMLStream(theInputSource);
assert(m_parsedSource != 0);
const XalanDOMChar* const theSystemID = theInputSource.getSystemId();
if (theSystemID != 0)
{
try
{
m_uri = URISupport::getURLStringFromString(theSystemID);
}
catch(const XERCES_CPP_NAMESPACE_QUALIFIER XMLException&)
{
// Assume that any exception here relates to get the url from
// the system ID. We'll assume that it's just a fake base identifier
// since the parser would have thrown an error if the system ID
// wasn't resolved.
m_uri = theSystemID;
}
}
}
XercesDOMParsedSource::~XercesDOMParsedSource()
{
}
XalanDocument*
XercesDOMParsedSource::getDocument() const
{
return m_parsedSource;
}
XalanParsedSourceHelper*
XercesDOMParsedSource::createHelper() const
{
return new XercesDOMParsedSourceHelper;
}
const XalanDOMString&
XercesDOMParsedSource::getURI() const
{
return m_uri;
}
XALAN_CPP_NAMESPACE_END