1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir #ifndef DOM_SAXBUILDER_HXX 29*cdf0e10cSrcweir #define DOM_SAXBUILDER_HXX 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #include <stack> 32*cdf0e10cSrcweir #include <map> 33*cdf0e10cSrcweir 34*cdf0e10cSrcweir #include <sal/types.h> 35*cdf0e10cSrcweir #include <osl/mutex.hxx> 36*cdf0e10cSrcweir #include <cppuhelper/implbase3.hxx> 37*cdf0e10cSrcweir #include <com/sun/star/uno/Reference.h> 38*cdf0e10cSrcweir #include <com/sun/star/uno/Sequence.h> 39*cdf0e10cSrcweir 40*cdf0e10cSrcweir #include <com/sun/star/uno/XInterface.hpp> 41*cdf0e10cSrcweir #include <com/sun/star/uno/Exception.hpp> 42*cdf0e10cSrcweir #include <com/sun/star/xml/dom/XSAXDocumentBuilder.hpp> 43*cdf0e10cSrcweir #include <com/sun/star/xml/dom/SAXDocumentBuilderState.hpp> 44*cdf0e10cSrcweir #include <com/sun/star/xml/dom/XDocument.hpp> 45*cdf0e10cSrcweir #include <com/sun/star/xml/dom/XDocumentFragment.hpp> 46*cdf0e10cSrcweir #include <com/sun/star/xml/sax/XDocumentHandler.hpp> 47*cdf0e10cSrcweir #include <com/sun/star/xml/sax/XLocator.hpp> 48*cdf0e10cSrcweir #include <com/sun/star/xml/sax/XAttributeList.hpp> 49*cdf0e10cSrcweir #include <com/sun/star/lang/XServiceInfo.hpp> 50*cdf0e10cSrcweir #include <com/sun/star/lang/XSingleServiceFactory.hpp> 51*cdf0e10cSrcweir #include <com/sun/star/lang/XMultiServiceFactory.hpp> 52*cdf0e10cSrcweir 53*cdf0e10cSrcweir using ::rtl::OUString; 54*cdf0e10cSrcweir using namespace com::sun::star::uno; 55*cdf0e10cSrcweir using namespace com::sun::star::xml::dom; 56*cdf0e10cSrcweir using namespace com::sun::star::xml::sax; 57*cdf0e10cSrcweir 58*cdf0e10cSrcweir using com::sun::star::lang::XServiceInfo; 59*cdf0e10cSrcweir using com::sun::star::lang::XSingleServiceFactory; 60*cdf0e10cSrcweir using com::sun::star::lang::XMultiServiceFactory; 61*cdf0e10cSrcweir 62*cdf0e10cSrcweir namespace DOM 63*cdf0e10cSrcweir { 64*cdf0e10cSrcweir 65*cdf0e10cSrcweir typedef std::stack< Reference< XNode > > NodeStack; 66*cdf0e10cSrcweir typedef std::map< OUString, OUString > NSMap; 67*cdf0e10cSrcweir typedef std::map< OUString, OUString > AttrMap; 68*cdf0e10cSrcweir typedef std::stack< NSMap > NSStack; 69*cdf0e10cSrcweir 70*cdf0e10cSrcweir class CSAXDocumentBuilder 71*cdf0e10cSrcweir : public ::cppu::WeakImplHelper3< XDocumentHandler, XSAXDocumentBuilder, XServiceInfo > 72*cdf0e10cSrcweir { 73*cdf0e10cSrcweir 74*cdf0e10cSrcweir private: 75*cdf0e10cSrcweir ::osl::Mutex m_Mutex; 76*cdf0e10cSrcweir const Reference< XMultiServiceFactory > m_aServiceManager; 77*cdf0e10cSrcweir 78*cdf0e10cSrcweir SAXDocumentBuilderState m_aState; 79*cdf0e10cSrcweir NodeStack m_aNodeStack; 80*cdf0e10cSrcweir NSStack m_aNSStack; 81*cdf0e10cSrcweir 82*cdf0e10cSrcweir OUString resolvePrefix(const OUString& aPrefix); 83*cdf0e10cSrcweir 84*cdf0e10cSrcweir Reference< XDocument > m_aDocument; 85*cdf0e10cSrcweir Reference< XDocumentFragment > m_aFragment; 86*cdf0e10cSrcweir Reference< XLocator > m_aLocator; 87*cdf0e10cSrcweir 88*cdf0e10cSrcweir 89*cdf0e10cSrcweir public: 90*cdf0e10cSrcweir 91*cdf0e10cSrcweir // call for factory 92*cdf0e10cSrcweir static Reference< XInterface > getInstance(const Reference < XMultiServiceFactory >& xFactory); 93*cdf0e10cSrcweir 94*cdf0e10cSrcweir // static helpers for service info and component management 95*cdf0e10cSrcweir static const char* aImplementationName; 96*cdf0e10cSrcweir static const char* aSupportedServiceNames[]; 97*cdf0e10cSrcweir static OUString _getImplementationName(); 98*cdf0e10cSrcweir static Sequence< OUString > _getSupportedServiceNames(); 99*cdf0e10cSrcweir static Reference< XInterface > _getInstance(const Reference< XMultiServiceFactory >& rSMgr); 100*cdf0e10cSrcweir 101*cdf0e10cSrcweir CSAXDocumentBuilder(const Reference< XMultiServiceFactory >& mgr); 102*cdf0e10cSrcweir 103*cdf0e10cSrcweir // XServiceInfo 104*cdf0e10cSrcweir virtual OUString SAL_CALL getImplementationName() 105*cdf0e10cSrcweir throw (RuntimeException); 106*cdf0e10cSrcweir virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) 107*cdf0e10cSrcweir throw (RuntimeException); 108*cdf0e10cSrcweir virtual Sequence< OUString > SAL_CALL getSupportedServiceNames () 109*cdf0e10cSrcweir throw (RuntimeException); 110*cdf0e10cSrcweir 111*cdf0e10cSrcweir // XDocumentHandler 112*cdf0e10cSrcweir virtual void SAL_CALL startDocument() 113*cdf0e10cSrcweir throw( RuntimeException, com::sun::star::xml::sax::SAXException ); 114*cdf0e10cSrcweir virtual void SAL_CALL endDocument() 115*cdf0e10cSrcweir throw( RuntimeException, com::sun::star::xml::sax::SAXException ); 116*cdf0e10cSrcweir virtual void SAL_CALL startElement( const OUString& aName, 117*cdf0e10cSrcweir const Reference< XAttributeList >& xAttribs ) 118*cdf0e10cSrcweir throw( RuntimeException, com::sun::star::xml::sax::SAXException ); 119*cdf0e10cSrcweir virtual void SAL_CALL endElement( const OUString& aName ) 120*cdf0e10cSrcweir throw( RuntimeException, com::sun::star::xml::sax::SAXException ); 121*cdf0e10cSrcweir virtual void SAL_CALL characters( const OUString& aChars ) 122*cdf0e10cSrcweir throw( RuntimeException, com::sun::star::xml::sax::SAXException ); 123*cdf0e10cSrcweir virtual void SAL_CALL ignorableWhitespace( const OUString& aWhitespaces ) 124*cdf0e10cSrcweir throw( RuntimeException, com::sun::star::xml::sax::SAXException ); 125*cdf0e10cSrcweir virtual void SAL_CALL processingInstruction( const OUString& aTarget, 126*cdf0e10cSrcweir const OUString& aData ) 127*cdf0e10cSrcweir throw( RuntimeException, com::sun::star::xml::sax::SAXException ); 128*cdf0e10cSrcweir virtual void SAL_CALL setDocumentLocator( const Reference< XLocator >& xLocator ) 129*cdf0e10cSrcweir throw( RuntimeException, com::sun::star::xml::sax::SAXException ); 130*cdf0e10cSrcweir 131*cdf0e10cSrcweir 132*cdf0e10cSrcweir // XSAXDocumentBuilder 133*cdf0e10cSrcweir virtual SAXDocumentBuilderState SAL_CALL getState() 134*cdf0e10cSrcweir throw (RuntimeException); 135*cdf0e10cSrcweir virtual void SAL_CALL reset() 136*cdf0e10cSrcweir throw (RuntimeException); 137*cdf0e10cSrcweir virtual Reference< XDocument > SAL_CALL getDocument() 138*cdf0e10cSrcweir throw (RuntimeException); 139*cdf0e10cSrcweir virtual Reference< XDocumentFragment > SAL_CALL getDocumentFragment() 140*cdf0e10cSrcweir throw (RuntimeException); 141*cdf0e10cSrcweir virtual void SAL_CALL startDocumentFragment(const Reference< XDocument >& ownerDoc) 142*cdf0e10cSrcweir throw (RuntimeException); 143*cdf0e10cSrcweir virtual void SAL_CALL endDocumentFragment() 144*cdf0e10cSrcweir throw (RuntimeException); 145*cdf0e10cSrcweir 146*cdf0e10cSrcweir 147*cdf0e10cSrcweir }; 148*cdf0e10cSrcweir } 149*cdf0e10cSrcweir 150*cdf0e10cSrcweir #endif 151