Files
loongoffice/include/sax/tools/documenthandleradapter.hxx
Noel Grandin e4acd26406 com::sun::star->css in include/linguistic to include/sfx2
Change-Id: Id69e293fda98ee6cf2cc3d3296a0cd2e06bd847e
Reviewed-on: https://gerrit.libreoffice.org/19527
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-10-23 07:08:51 +00:00

235 lines
8.3 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef INCLUDED_SAX_TOOLS_DOCUMENTHANDLERADAPTER_HXX
#define INCLUDED_SAX_TOOLS_DOCUMENTHANDLERADAPTER_HXX
#include <com/sun/star/xml/sax/SAXException.hpp>
#include <com/sun/star/xml/sax/XDocumentHandler.hpp>
#include <com/sun/star/xml/sax/XExtendedDocumentHandler.hpp>
namespace sax
{
/**
* DocumentHandlerAdapter provides a base class for simple decorators to XDocumentHandlers.
* It forwards all method calls to a delegate. An inheriting class only needs to override the
* methods it actually wants to modify.
*
* See filters/source/odfflatxml/FlatXml.cxx for an example.
*/
class DocumentHandlerAdapter : public css::xml::sax::XDocumentHandler
{
public:
// XDocumentHandler
virtual void SAL_CALL
startDocument() throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override
{
m_handler->startDocument();
}
virtual void SAL_CALL
endDocument() throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override
{
m_handler->endDocument();
}
virtual void SAL_CALL
startElement(const OUString& aName,
const css::uno::Reference< css::xml::sax::XAttributeList > & xAttribs)
throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override
{
m_handler->startElement(aName, xAttribs);
}
virtual void SAL_CALL
endElement(const OUString& aName) throw (css::xml::sax::SAXException,
css::uno::RuntimeException, std::exception) override
{
m_handler->endElement(aName);
}
virtual void SAL_CALL
characters(const OUString& aChars) throw (css::xml::sax::SAXException,
css::uno::RuntimeException, std::exception) override
{
m_handler->characters(aChars);
}
virtual void SAL_CALL
ignorableWhitespace(const OUString& aWhitespaces) throw (css::xml::sax::SAXException,
css::uno::RuntimeException, std::exception) override
{
m_handler->ignorableWhitespace(aWhitespaces);
}
virtual void SAL_CALL
processingInstruction(const OUString& aTarget, const OUString& aData)
throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override
{
m_handler->processingInstruction(aTarget, aData);
}
virtual void SAL_CALL
setDocumentLocator(const css::uno::Reference< css::xml::sax::XLocator > & xLocator)
throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override
{
m_handler->setDocumentLocator(xLocator);
}
DocumentHandlerAdapter(const css::uno::Reference< css::xml::sax::XDocumentHandler >& delegate);
DocumentHandlerAdapter() :
m_handler(css::uno::Reference< css::xml::sax::XDocumentHandler > (0, css::uno::UNO_QUERY))
{
}
;
protected:
virtual void SAL_CALL
setDelegate(const css::uno::Reference< css::xml::sax::XDocumentHandler >& delegate)
{
m_handler = delegate;
}
virtual css::uno::Reference< css::xml::sax::XDocumentHandler > SAL_CALL
getDelegate()
{
return m_handler;
}
virtual
~DocumentHandlerAdapter()
{
}
private:
css::uno::Reference< css::xml::sax::XDocumentHandler > m_handler;
};
/**
* ExtendedDocumentHandlerAdapter provides a base class for simple decorators to XExtendedDocumentHandlers.
* It forwards all method calls to a delegate. An inheriting class only needs to override the
* methods it actually wants to modify.
*/
class ExtendedDocumentHandlerAdapter : public css::xml::sax::XExtendedDocumentHandler
{
public:
// XDocumentHandler
virtual void SAL_CALL
startDocument() throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override
{
m_handler->startDocument();
}
virtual void SAL_CALL
endDocument() throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override
{
m_handler->endDocument();
}
virtual void SAL_CALL
startElement(const OUString& aName,
const css::uno::Reference< css::xml::sax::XAttributeList > & xAttribs)
throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override
{
m_handler->startElement(aName, xAttribs);
}
virtual void SAL_CALL
endElement(const OUString& aName) throw (css::xml::sax::SAXException,
css::uno::RuntimeException, std::exception) override
{
m_handler->endElement(aName);
}
virtual void SAL_CALL
characters(const OUString& aChars) throw (css::xml::sax::SAXException,
css::uno::RuntimeException, std::exception) override
{
m_handler->characters(aChars);
}
virtual void SAL_CALL
ignorableWhitespace(const OUString& aWhitespaces) throw (css::xml::sax::SAXException,
css::uno::RuntimeException, std::exception) override
{
m_handler->ignorableWhitespace(aWhitespaces);
}
virtual void SAL_CALL
processingInstruction(const OUString& aTarget, const OUString& aData)
throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override
{
m_handler->processingInstruction(aTarget, aData);
}
virtual void SAL_CALL
setDocumentLocator(const css::uno::Reference< css::xml::sax::XLocator > & xLocator)
throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override
{
m_handler->setDocumentLocator(xLocator);
}
// XExtendedDocumentHandler
virtual void SAL_CALL
startCDATA() throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override
{
m_handler->startCDATA();
}
virtual void SAL_CALL
endCDATA() throw (css::uno::RuntimeException, std::exception) override
{
m_handler->endCDATA();
}
virtual void SAL_CALL
comment(const OUString& sComment) throw (css::xml::sax::SAXException,
css::uno::RuntimeException, std::exception) override
{
m_handler->comment(sComment);
}
virtual void SAL_CALL
unknown(const OUString& sString) throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override
{
m_handler->unknown(sString);
}
virtual void SAL_CALL
allowLineBreak() throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override
{
m_handler->allowLineBreak();
}
protected:
ExtendedDocumentHandlerAdapter() :
m_handler(css::uno::Reference< css::xml::sax::XExtendedDocumentHandler > (0, css::uno::UNO_QUERY))
{
}
ExtendedDocumentHandlerAdapter(
const css::uno::Reference< css::xml::sax::XExtendedDocumentHandler >& delegate) :
m_handler(delegate)
{
}
virtual void SAL_CALL
setDelegate(const css::uno::Reference< css::xml::sax::XExtendedDocumentHandler >& delegate)
{
m_handler = delegate;
}
virtual css::uno::Reference< css::xml::sax::XExtendedDocumentHandler > SAL_CALL
getDelegate()
{
return m_handler;
}
virtual
~ExtendedDocumentHandlerAdapter()
{
}
private:
css::uno::Reference< css::xml::sax::XExtendedDocumentHandler > m_handler;
};
}
#endif // INCLUDED_SAX_TOOLS_DOCUMENTHANDLERADAPTER_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */