Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #ifndef INCLUDED_DBACCESS_SOURCE_FILTER_XML_XMLFILTER_HXX
21 : #define INCLUDED_DBACCESS_SOURCE_FILTER_XML_XMLFILTER_HXX
22 :
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 :
41 : #include <map>
42 : #include <memory>
43 :
44 : namespace dbaxml
45 : {
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;
55 :
56 : // - ODBFilter -
57 : class ODBFilter : public SvXMLImport
58 : {
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;
67 :
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;
78 :
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;
85 :
86 : bool implImport( const Sequence< PropertyValue >& rDescriptor ) throw (RuntimeException);
87 :
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.
93 : */
94 : static void fillPropertyMap(const Any& _rValue,TPropertyNameMap& _rMap);
95 :
96 : SvXMLImportContext* CreateStylesContext(sal_uInt16 nPrefix,const OUString& rLocalName,
97 : const Reference< XAttributeList>& xAttrList, bool bIsAutoStyle );
98 : SvXMLImportContext* CreateScriptContext( const OUString& rLocalName );
99 :
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;
105 :
106 : virtual ~ODBFilter() throw();
107 : public:
108 :
109 : ODBFilter( const Reference< XComponentContext >& _rxContext );
110 :
111 : // XFilter
112 : virtual sal_Bool SAL_CALL filter( const Sequence< PropertyValue >& rDescriptor ) throw(RuntimeException, std::exception) SAL_OVERRIDE;
113 :
114 : static OUString SAL_CALL getImplementationName_Static()
115 : throw (css::uno::RuntimeException);
116 :
117 : static css::uno::Sequence<OUString> SAL_CALL
118 : getSupportedServiceNames_Static() throw (css::uno::RuntimeException);
119 :
120 : static css::uno::Reference<css::uno::XInterface> SAL_CALL Create(
121 : css::uno::Reference<css::lang::XMultiServiceFactory> const & _rxORB);
122 :
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;
126 :
127 152 : inline Reference<XPropertySet> getDataSource() const { return m_xDataSource; }
128 :
129 4 : inline const TPropertyNameMap& getQuerySettings() const { return m_aQuerySettings;}
130 : inline const TPropertyNameMap& getTableSettings() const { return m_aTablesSettings;}
131 :
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;
142 :
143 : rtl::Reference < XMLPropertySetMapper > GetTableStylesPropertySetMapper() const;
144 : rtl::Reference < XMLPropertySetMapper > GetColumnStylesPropertySetMapper() const;
145 : rtl::Reference < XMLPropertySetMapper > GetCellStylesPropertySetMapper() const;
146 :
147 : /** add a Info to the sequence which will be appened to the data source
148 : @param _rInfo The property to append.
149 : */
150 103 : inline void addInfo(const ::com::sun::star::beans::PropertyValue& _rInfo)
151 : {
152 103 : m_aInfoSequence.push_back(_rInfo);
153 103 : }
154 :
155 : void setPropertyInfo();
156 :
157 : const ::std::map< sal_uInt16,com::sun::star::beans::Property>& GetDataSourceInfoDefaulValueMap() const;
158 :
159 55 : inline bool isNewFormat() const { return m_bNewFormat; }
160 16 : inline void setNewFormat(bool _bNewFormat) { m_bNewFormat = _bNewFormat; }
161 : };
162 :
163 : } // dbaxml
164 : #endif // INCLUDED_DBACCESS_SOURCE_FILTER_XML_XMLFILTER_HXX
165 :
166 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|