bump product version to 4.1.6.2
[LibreOffice.git] / dbaccess / source / filter / xml / xmlfilter.hxx
blobd8c29c57fc4415765fde55c40a28ae7b71128d1b
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 DBA_XMLFILTER_HXX
21 #define DBA_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>
40 #include "apitools.hxx"
41 #include <comphelper/stl_types.hxx>
43 #include <memory>
45 namespace dbaxml
47 using namespace ::xmloff::token;
48 using namespace ::com::sun::star::uno;
49 using namespace ::com::sun::star::container;
50 using namespace ::com::sun::star::lang;
51 using namespace ::com::sun::star::beans;
52 using namespace ::com::sun::star::document;
53 using namespace ::com::sun::star::text;
54 using namespace ::com::sun::star::io;
55 using namespace ::com::sun::star::xml::sax;
57 // -------------
58 // - ODBFilter -
59 // -------------
60 class ODBFilter : public SvXMLImport
62 public:
63 DECLARE_STL_USTRINGACCESS_MAP(Sequence<PropertyValue>,TPropertyNameMap);
64 typedef ::std::vector< ::com::sun::star::beans::PropertyValue> TInfoSequence;
65 private:
66 TPropertyNameMap m_aQuerySettings;
67 TPropertyNameMap m_aTablesSettings;
68 TInfoSequence m_aInfoSequence;
69 Reference< XComponent > m_xSrcDoc;
71 SAL_WNODEPRECATED_DECLARATIONS_PUSH
72 mutable ::std::auto_ptr<SvXMLTokenMap> m_pDocElemTokenMap;
73 mutable ::std::auto_ptr<SvXMLTokenMap> m_pDatabaseElemTokenMap;
74 mutable ::std::auto_ptr<SvXMLTokenMap> m_pDataSourceElemTokenMap;
75 mutable ::std::auto_ptr<SvXMLTokenMap> m_pLoginElemTokenMap;
76 mutable ::std::auto_ptr<SvXMLTokenMap> m_pDatabaseDescriptionElemTokenMap;
77 mutable ::std::auto_ptr<SvXMLTokenMap> m_pDataSourceInfoElemTokenMap;
78 mutable ::std::auto_ptr<SvXMLTokenMap> m_pDocumentsElemTokenMap;
79 mutable ::std::auto_ptr<SvXMLTokenMap> m_pComponentElemTokenMap;
80 mutable ::std::auto_ptr<SvXMLTokenMap> m_pQueryElemTokenMap;
81 mutable ::std::auto_ptr<SvXMLTokenMap> m_pColumnElemTokenMap;
82 SAL_WNODEPRECATED_DECLARATIONS_POP
84 mutable UniReference < XMLPropertySetMapper > m_xTableStylesPropertySetMapper;
85 mutable UniReference < XMLPropertySetMapper > m_xColumnStylesPropertySetMapper;
86 mutable UniReference < XMLPropertySetMapper > m_xCellStylesPropertySetMapper;
87 Reference<XPropertySet> m_xDataSource;
88 sal_Int32 m_nPreviewMode;
89 bool m_bNewFormat;
91 sal_Bool implImport( const Sequence< PropertyValue >& rDescriptor ) throw (RuntimeException);
94 /** fills the map with the Properties
95 @param _rValue
96 The Any where the sequence resists in.
97 @param _rMap
98 The map to fill.
100 void fillPropertyMap(const Any& _rValue,TPropertyNameMap& _rMap);
102 SvXMLImportContext* CreateStylesContext(sal_uInt16 nPrefix,const OUString& rLocalName,
103 const Reference< XAttributeList>& xAttrList, sal_Bool bIsAutoStyle );
104 SvXMLImportContext* CreateScriptContext( const OUString& rLocalName );
106 protected:
107 // SvXMLImport
108 virtual SvXMLImportContext *CreateContext( sal_uInt16 nPrefix,
109 const OUString& rLocalName,
110 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
112 virtual ~ODBFilter() throw();
113 public:
115 ODBFilter( const Reference< XComponentContext >& _rxContext );
117 // XFilter
118 virtual sal_Bool SAL_CALL filter( const Sequence< PropertyValue >& rDescriptor ) throw(RuntimeException);
120 // XServiceInfo
121 DECLARE_SERVICE_INFO_STATIC( );
123 // helper class
124 virtual void SetViewSettings(const com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue>& aViewProps);
125 virtual void SetConfigurationSettings(const com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue>& aConfigProps);
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 UniReference < XMLPropertySetMapper > GetTableStylesPropertySetMapper() const;
144 UniReference < XMLPropertySetMapper > GetColumnStylesPropertySetMapper() const;
145 UniReference < 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 // -----------------------------------------------------------------------------
164 } // dbaxml
165 // -----------------------------------------------------------------------------
166 #endif // DBA_XMLFILTER_HXX
168 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */