/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2008 by Sun Microsystems, Inc. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef INCLUDED_OOXML_FACTORY_HXX #define INCLUDED_OOXML_FACTORY_HXX #include #include #include #include #include "OOXMLFastContextHandler.hxx" namespace writerfilter { namespace ooxml { using namespace std; enum ResourceType_t { RT_NoResource, RT_Table, RT_Stream, RT_List, RT_Integer, RT_Properties, RT_Hex, RT_String, RT_Shape, RT_Boolean, RT_HexValue, RT_Value, RT_XNote, RT_TextTableCell, RT_TextTableRow, RT_TextTable, RT_PropertyTable, RT_Any }; struct AttributeInfo { ResourceType_t m_nResource; Id m_nRef; AttributeInfo(ResourceType_t nResource, Id nRef); AttributeInfo(); }; typedef hash_map AttributeToResourceMap; typedef boost::shared_ptr AttributeToResourceMapPointer; typedef hash_map AttributesMap; typedef hash_map ListValueMap; typedef boost::shared_ptr ListValueMapPointer; typedef hash_map ListValuesMap; struct CreateElement { ResourceType_t m_nResource; Id m_nId; CreateElement(ResourceType_t nResource, Id nId); CreateElement(); }; typedef hash_map CreateElementMap; typedef boost::shared_ptr CreateElementMapPointer; typedef hash_map CreateElementsMap; typedef hash_map IdToStringMap; typedef boost::shared_ptr IdToStringMapPointer; typedef hash_map TokenToIdMap; typedef boost::shared_ptr TokenToIdMapPointer; typedef hash_map TokenToIdsMap; class OOXMLFactory_ns { public: typedef boost::shared_ptr Pointer_t; virtual void startAction(OOXMLFastContextHandler * pHandler); virtual void charactersAction(OOXMLFastContextHandler * pHandler, const ::rtl::OUString & rString); virtual void endAction(OOXMLFastContextHandler * pHandler); virtual void attributeAction(OOXMLFastContextHandler * pHandler, Token_t nToken, OOXMLValue::Pointer_t pValue); virtual string getDefineName(Id nId) const; AttributeToResourceMapPointer getAttributeToResourceMap(Id nId); ListValueMapPointer getListValueMap(Id nId); CreateElementMapPointer getCreateElementMap(Id nId); TokenToIdMapPointer getTokenToIdMap(Id nId); protected: virtual ~OOXMLFactory_ns(); AttributesMap m_AttributesMap; ListValuesMap m_ListValuesMap; CreateElementsMap m_CreateElementsMap; TokenToIdsMap m_TokenToIdsMap; virtual AttributeToResourceMapPointer createAttributeToResourceMap(Id nId) = 0; virtual ListValueMapPointer createListValueMap(Id nId) = 0; virtual CreateElementMapPointer createCreateElementMap(Id nId) = 0; virtual TokenToIdMapPointer createTokenToIdMap(Id nId) = 0; }; class OOXMLFactory { public: typedef boost::shared_ptr Pointer_t; static Pointer_t getInstance(); uno::Reference< xml::sax::XFastContextHandler> createFastChildContext (OOXMLFastContextHandler * pHandler, Token_t Element); uno::Reference< xml::sax::XFastContextHandler> createFastChildContextFromStart (OOXMLFastContextHandler * pHandler, Token_t Element); void attributes(OOXMLFastContextHandler * pHandler, const uno::Reference< xml::sax::XFastAttributeList > & Attribs); void characters(OOXMLFastContextHandler * pHandler, const ::rtl::OUString & rString); void startAction(OOXMLFastContextHandler * pHandler, Token_t nToken); void endAction(OOXMLFastContextHandler * pHandler, Token_t nToken); virtual ~OOXMLFactory(); private: static Pointer_t m_Instance; OOXMLFactory(); OOXMLFactory_ns::Pointer_t getFactoryForNamespace(Id id); uno::Reference< xml::sax::XFastContextHandler> createFastChildContextFromFactory(OOXMLFastContextHandler * pHandler, OOXMLFactory_ns::Pointer_t pFactory, Token_t Element); }; } } #endif // INCLUDED_OOXML_FACTORY_HXX