bump product version to 5.0.4.1
[LibreOffice.git] / dbaccess / source / filter / xml / xmlfilter.hxx
blob6e92433454597a1641d39b23d9a2cd9a94da1cc9
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_DBACCESS_SOURCE_FILTER_XML_XMLFILTER_HXX
21 #define INCLUDED_DBACCESS_SOURCE_FILTER_XML_XMLFILTER_HXX
23 #include <com/sun/star/container/XNamed.hpp>
24 #include <com/sun/star/document/XFilter.hpp>
25 #include <com/sun/star/document/XImporter.hpp>
26 #include <com/sun/star/document/XExporter.hpp>
27 #include <com/sun/star/lang/XInitialization.hpp>
28 #include <com/sun/star/lang/XServiceInfo.hpp>
29 #include <com/sun/star/beans/XPropertySet.hpp>
30 #include <com/sun/star/lang/XComponent.hpp>
31 #include <cppuhelper/implbase1.hxx>
32 #include <cppuhelper/implbase5.hxx>
33 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
34 #include <com/sun/star/io/XActiveDataSource.hpp>
35 #include <osl/diagnose.h>
36 #include <unotools/tempfile.hxx>
37 #include <unotools/localfilehelper.hxx>
38 #include <unotools/ucbstreamhelper.hxx>
39 #include <xmloff/xmlimp.hxx>
41 #include <map>
42 #include <memory>
44 namespace dbaxml
46 using namespace ::xmloff::token;
47 using namespace ::com::sun::star::uno;
48 using namespace ::com::sun::star::container;
49 using namespace ::com::sun::star::lang;
50 using namespace ::com::sun::star::beans;
51 using namespace ::com::sun::star::document;
52 using namespace ::com::sun::star::text;
53 using namespace ::com::sun::star::io;
54 using namespace ::com::sun::star::xml::sax;
56 // - ODBFilter -
57 class ODBFilter : public SvXMLImport
59 public:
60 typedef std::map< OUString, Sequence<PropertyValue> > TPropertyNameMap;
61 typedef ::std::vector< ::com::sun::star::beans::PropertyValue> TInfoSequence;
62 private:
63 TPropertyNameMap m_aQuerySettings;
64 TPropertyNameMap m_aTablesSettings;
65 TInfoSequence m_aInfoSequence;
66 Reference< XComponent > m_xSrcDoc;
68 mutable ::std::unique_ptr<SvXMLTokenMap> m_pDocElemTokenMap;
69 mutable ::std::unique_ptr<SvXMLTokenMap> m_pDatabaseElemTokenMap;
70 mutable ::std::unique_ptr<SvXMLTokenMap> m_pDataSourceElemTokenMap;
71 mutable ::std::unique_ptr<SvXMLTokenMap> m_pLoginElemTokenMap;
72 mutable ::std::unique_ptr<SvXMLTokenMap> m_pDatabaseDescriptionElemTokenMap;
73 mutable ::std::unique_ptr<SvXMLTokenMap> m_pDataSourceInfoElemTokenMap;
74 mutable ::std::unique_ptr<SvXMLTokenMap> m_pDocumentsElemTokenMap;
75 mutable ::std::unique_ptr<SvXMLTokenMap> m_pComponentElemTokenMap;
76 mutable ::std::unique_ptr<SvXMLTokenMap> m_pQueryElemTokenMap;
77 mutable ::std::unique_ptr<SvXMLTokenMap> m_pColumnElemTokenMap;
79 mutable rtl::Reference < XMLPropertySetMapper > m_xTableStylesPropertySetMapper;
80 mutable rtl::Reference < XMLPropertySetMapper > m_xColumnStylesPropertySetMapper;
81 mutable rtl::Reference < XMLPropertySetMapper > m_xCellStylesPropertySetMapper;
82 Reference<XPropertySet> m_xDataSource;
83 sal_Int32 m_nPreviewMode;
84 bool m_bNewFormat;
86 bool implImport( const Sequence< PropertyValue >& rDescriptor ) throw (RuntimeException);
88 /** fills the map with the Properties
89 @param _rValue
90 The Any where the sequence resists in.
91 @param _rMap
92 The map to fill.
94 static void fillPropertyMap(const Any& _rValue,TPropertyNameMap& _rMap);
96 SvXMLImportContext* CreateStylesContext(sal_uInt16 nPrefix,const OUString& rLocalName,
97 const Reference< XAttributeList>& xAttrList, bool bIsAutoStyle );
98 SvXMLImportContext* CreateScriptContext( const OUString& rLocalName );
100 protected:
101 // SvXMLImport
102 virtual SvXMLImportContext *CreateContext( sal_uInt16 nPrefix,
103 const OUString& rLocalName,
104 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList ) SAL_OVERRIDE;
106 virtual ~ODBFilter() throw();
107 public:
109 ODBFilter( const Reference< XComponentContext >& _rxContext );
111 // XFilter
112 virtual sal_Bool SAL_CALL filter( const Sequence< PropertyValue >& rDescriptor ) throw(RuntimeException, std::exception) SAL_OVERRIDE;
114 static OUString SAL_CALL getImplementationName_Static()
115 throw (css::uno::RuntimeException);
117 static css::uno::Sequence<OUString> SAL_CALL
118 getSupportedServiceNames_Static() throw (css::uno::RuntimeException);
120 static css::uno::Reference<css::uno::XInterface> SAL_CALL Create(
121 css::uno::Reference<css::lang::XMultiServiceFactory> const & _rxORB);
123 // helper class
124 virtual void SetViewSettings(const com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue>& aViewProps) SAL_OVERRIDE;
125 virtual void SetConfigurationSettings(const com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue>& aConfigProps) SAL_OVERRIDE;
127 inline Reference<XPropertySet> getDataSource() const { return m_xDataSource; }
129 inline const TPropertyNameMap& getQuerySettings() const { return m_aQuerySettings;}
130 inline const TPropertyNameMap& getTableSettings() const { return m_aTablesSettings;}
132 const SvXMLTokenMap& GetDocElemTokenMap() const;
133 const SvXMLTokenMap& GetDatabaseElemTokenMap() const;
134 const SvXMLTokenMap& GetDataSourceElemTokenMap() const;
135 const SvXMLTokenMap& GetLoginElemTokenMap() const;
136 const SvXMLTokenMap& GetDatabaseDescriptionElemTokenMap() const;
137 const SvXMLTokenMap& GetDataSourceInfoElemTokenMap() const;
138 const SvXMLTokenMap& GetDocumentsElemTokenMap() const;
139 const SvXMLTokenMap& GetComponentElemTokenMap() const;
140 const SvXMLTokenMap& GetQueryElemTokenMap() const;
141 const SvXMLTokenMap& GetColumnElemTokenMap() const;
143 rtl::Reference < XMLPropertySetMapper > GetTableStylesPropertySetMapper() const;
144 rtl::Reference < XMLPropertySetMapper > GetColumnStylesPropertySetMapper() const;
145 rtl::Reference < XMLPropertySetMapper > GetCellStylesPropertySetMapper() const;
147 /** add a Info to the sequence which will be appened to the data source
148 @param _rInfo The property to append.
150 inline void addInfo(const ::com::sun::star::beans::PropertyValue& _rInfo)
152 m_aInfoSequence.push_back(_rInfo);
155 void setPropertyInfo();
157 const ::std::map< sal_uInt16,com::sun::star::beans::Property>& GetDataSourceInfoDefaulValueMap() const;
159 inline bool isNewFormat() const { return m_bNewFormat; }
160 inline void setNewFormat(bool _bNewFormat) { m_bNewFormat = _bNewFormat; }
163 } // dbaxml
164 #endif // INCLUDED_DBACCESS_SOURCE_FILTER_XML_XMLFILTER_HXX
166 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */