1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
21 #include <sal/config.h>
23 #include <com/sun/star/sdbc/SQLException.hpp>
24 #include <com/sun/star/beans/XPropertySet.hpp>
25 #include <com/sun/star/util/XNumberFormatter.hpp>
26 #include <com/sun/star/container/XNameAccess.hpp>
27 #include <com/sun/star/lang/Locale.hpp>
28 #include <com/sun/star/util/Date.hpp>
29 #include <com/sun/star/uno/XComponentContext.hpp>
32 #include <comphelper/stl_types.hxx>
33 #include "TypeInfo.hxx"
34 #include "WTypeSelect.hxx"
35 #include "commontypes.hxx"
36 #include "IUpdateHelper.hxx"
38 namespace com::sun::star
{
40 struct FontDescriptor
;
43 class XPreparedStatement
;
44 class XDatabaseMetaData
;
48 #define COLUMN_POSITION_NOT_FOUND (sal_Int32(-1))
50 class SvNumberFormatter
;
53 class OFieldDescription
;
57 typedef std::map
<OUString
, OFieldDescription
*, ::comphelper::UStringMixLess
> TColumns
;
58 typedef std::vector
<TColumns::const_iterator
> TColumnVector
;
59 typedef std::vector
< std::pair
<sal_Int32
,sal_Int32
> > TPositions
;
62 TPositions m_vColumnPositions
; ///< columns to be used
63 std::vector
<sal_Int32
> m_vColumnTypes
; ///< ColumnTypes for faster access
64 std::vector
<sal_Int32
> m_vColumnSize
;
65 std::vector
<sal_Int16
> m_vNumberFormat
;
66 css::lang::Locale m_aLocale
;
68 TColumns m_aDestColumns
; ///< container for new created columns
69 TColumnVector m_vDestVector
;
71 css::uno::Reference
< css::beans::XPropertySet
> m_xTable
; ///< dest table
72 css::uno::Reference
< css::container::XNameAccess
> m_xTables
; ///< container
73 SharedConnection m_xConnection
; ///< dest conn
75 std::shared_ptr
<IUpdateHelper
> m_pUpdateHelper
;
76 css::uno::Reference
< css::util::XNumberFormatter
> m_xFormatter
; ///< a number formatter working with the connection's NumberFormatsSupplier
77 css::uno::Reference
< css::uno::XComponentContext
> m_xContext
;
78 css::util::Date m_aNullDate
;
80 SvNumberFormatter
* m_pFormatter
;
81 SvStream
& m_rInputStream
;
82 /// for saving the selected tablename
83 OUString m_sDefaultTableName
;
85 OUString m_sTextToken
; ///< cell content
86 OUString m_sNumToken
; ///< SDNUM value
87 TOTypeInfoSP m_pTypeInfo
; ///< contains the default type
88 const TColumnVector
* m_pColumnList
;
89 const OTypeInfoMap
* m_pInfoMap
;
90 sal_Int32 m_nColumnPos
; ///< current column position
91 sal_Int32 m_nRows
; ///< number of rows to be searched
92 sal_Int32 m_nRowCount
; ///< current count of rows
93 bool m_bError
; ///< error and termination code
94 bool m_bInTbl
; ///< true, if parser is in RTF table
95 bool m_bHead
; ///< true, if the header hasn't been read yet
96 bool m_bDontAskAgain
;///< if there is an error when pasting, don't show it again
97 bool m_bIsAutoIncrement
; ///< if PKey is set by user
98 bool m_bFoundTable
; ///< set to true when a table was found
100 bool m_bAppendFirstLine
;
103 virtual TypeSelectionPageFactory
104 getTypeSelectionPageFactory() = 0;
106 void CreateDefaultColumn(const OUString
& _rColumnName
);
107 sal_Int16
CheckString(const OUString
& aToken
, sal_Int16 _nOldNumberFormat
);
110 void insertValueIntoColumn();
112 void showErrorDialog(const css::sdbc::SQLException
& e
);
113 void ensureFormatter();
115 /** executeWizard calls a wizard to create/append data
117 @param _sTableName the tablename
118 @param _aTextColor the text color of the new created table
119 @param _rFont the font of the new table
121 @return true when an error occurs
123 bool executeWizard( const OUString
& _sTableName
,
124 const css::uno::Any
& _aTextColor
,
125 const css::awt::FontDescriptor
& _rFont
);
127 virtual ~ODatabaseExport();
131 const SharedConnection
& _rxConnection
,
132 const css::uno::Reference
< css::util::XNumberFormatter
>& _rxNumberF
,
133 const css::uno::Reference
< css::uno::XComponentContext
>& _rxContext
,
134 SvStream
& _rInputStream
137 // required for automatic type recognition
140 TPositions
&& _rColumnPositions
,
141 const css::uno::Reference
< css::util::XNumberFormatter
>& _rxNumberF
,
142 const css::uno::Reference
< css::uno::XComponentContext
>& _rxContext
,
143 const TColumnVector
* rList
,
144 const OTypeInfoMap
* _pInfoMap
,
145 bool _bAutoIncrementEnabled
,
146 SvStream
& _rInputStream
149 void SetColumnTypes(const TColumnVector
* rList
,const OTypeInfoMap
* _pInfoMap
);
151 void SetTableName(const OUString
&_sTableName
){ m_sDefaultTableName
= _sTableName
; }
153 void enableCheckOnly() { m_bCheckOnly
= true; }
154 bool isCheckEnabled() const { return m_bCheckOnly
; }
156 static css::uno::Reference
< css::sdbc::XPreparedStatement
> createPreparedStatement( const css::uno::Reference
< css::sdbc::XDatabaseMetaData
>& _xMetaData
157 ,const css::uno::Reference
< css::beans::XPropertySet
>& _xDestTable
158 ,const TPositions
& _rvColumnPositions
);
162 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */