1caf5cd79SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3caf5cd79SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4caf5cd79SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5caf5cd79SAndrew Rist  * distributed with this work for additional information
6caf5cd79SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7caf5cd79SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8caf5cd79SAndrew Rist  * "License"); you may not use this file except in compliance
9caf5cd79SAndrew Rist  * with the License.  You may obtain a copy of the License at
10caf5cd79SAndrew Rist  *
11caf5cd79SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12caf5cd79SAndrew Rist  *
13caf5cd79SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14caf5cd79SAndrew Rist  * software distributed under the License is distributed on an
15caf5cd79SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16caf5cd79SAndrew Rist  * KIND, either express or implied.  See the License for the
17caf5cd79SAndrew Rist  * specific language governing permissions and limitations
18caf5cd79SAndrew Rist  * under the License.
19caf5cd79SAndrew Rist  *
20caf5cd79SAndrew Rist  *************************************************************/
21caf5cd79SAndrew Rist 
22caf5cd79SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef _CONNECTIVITY_ADO_ADATABASEMETADATARESULTSET_HXX_
25cdf0e10cSrcweir #define _CONNECTIVITY_ADO_ADATABASEMETADATARESULTSET_HXX_
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include <com/sun/star/sdbc/XResultSet.hpp>
28cdf0e10cSrcweir #include <com/sun/star/sdbc/XRow.hpp>
29cdf0e10cSrcweir #include <com/sun/star/sdbc/XResultSetMetaDataSupplier.hpp>
30cdf0e10cSrcweir #include <com/sun/star/sdbc/XCloseable.hpp>
31cdf0e10cSrcweir #include <com/sun/star/sdbc/XColumnLocate.hpp>
32cdf0e10cSrcweir #include <com/sun/star/util/XCancellable.hpp>
33cdf0e10cSrcweir #include <com/sun/star/sdbc/XWarningsSupplier.hpp>
34cdf0e10cSrcweir #include <com/sun/star/sdbc/XResultSetUpdate.hpp>
35cdf0e10cSrcweir #include <com/sun/star/sdbc/XRowUpdate.hpp>
36cdf0e10cSrcweir #include <cppuhelper/compbase7.hxx>
37cdf0e10cSrcweir #include <comphelper/proparrhlp.hxx>
38cdf0e10cSrcweir #include "ado/AStatement.hxx"
39cdf0e10cSrcweir //#ifndef _CONNECTIVITY_COMMONTOOLS_HXX_
40cdf0e10cSrcweir //#include "connectivity/CommonTools.hxx"
41cdf0e10cSrcweir //#endif
42cdf0e10cSrcweir #include <comphelper/broadcasthelper.hxx>
43cdf0e10cSrcweir #include "connectivity/StdTypeDefs.hxx"
44cdf0e10cSrcweir 
45cdf0e10cSrcweir namespace connectivity
46cdf0e10cSrcweir {
47cdf0e10cSrcweir 	namespace ado
48cdf0e10cSrcweir 	{
49cdf0e10cSrcweir 		class ODatabaseMetaDataResultSetMetaData;
50cdf0e10cSrcweir 		/*
51cdf0e10cSrcweir 		**	java_sql_ResultSet
52cdf0e10cSrcweir 		*/
53cdf0e10cSrcweir         typedef ::cppu::WeakComponentImplHelper7<	::com::sun::star::sdbc::XResultSet,
54cdf0e10cSrcweir                                                     ::com::sun::star::sdbc::XRow,
55cdf0e10cSrcweir                                                     ::com::sun::star::sdbc::XResultSetMetaDataSupplier,
56cdf0e10cSrcweir                                                     ::com::sun::star::util::XCancellable,
57cdf0e10cSrcweir                                                     ::com::sun::star::sdbc::XWarningsSupplier,
58cdf0e10cSrcweir                                                     ::com::sun::star::sdbc::XCloseable,
59cdf0e10cSrcweir                                                     ::com::sun::star::sdbc::XColumnLocate> ODatabaseMetaDataResultSet_BASE;
60cdf0e10cSrcweir 
61cdf0e10cSrcweir 		class ODatabaseMetaDataResultSet :	public comphelper::OBaseMutex,
62cdf0e10cSrcweir 									public	ODatabaseMetaDataResultSet_BASE,
63cdf0e10cSrcweir 									public	::cppu::OPropertySetHelper,
64cdf0e10cSrcweir 									public	::comphelper::OPropertyArrayUsageHelper<ODatabaseMetaDataResultSet>
65cdf0e10cSrcweir 		{
66*07a3d7f1SPedro Giffuni 			::std::vector<sal_Int32>		m_aColMapping; // pos 0 is unused so we don't have to decrement 1 every time
67cdf0e10cSrcweir 
68cdf0e10cSrcweir 			::std::map<sal_Int32, TInt2IntMap >	m_aValueRange;
69cdf0e10cSrcweir 			::std::map<sal_Int32, TInt2IntMap >::iterator	m_aValueRangeIter;
70cdf0e10cSrcweir 
71cdf0e10cSrcweir 			::std::map<sal_Int32, ::std::map< ::rtl::OUString,sal_Int32> >				m_aStrValueRange;
72cdf0e10cSrcweir 			::std::map<sal_Int32, ::std::map< ::rtl::OUString,sal_Int32> >::iterator	m_aStrValueRangeIter;
73cdf0e10cSrcweir 
74cdf0e10cSrcweir 			::std::map<sal_Int32, ::std::map< sal_Int32,::rtl::OUString> >				m_aIntValueRange;
75cdf0e10cSrcweir 			::std::map<sal_Int32, ::std::map< sal_Int32,::rtl::OUString> >::iterator	m_aIntValueRangeIter;
76cdf0e10cSrcweir 
77cdf0e10cSrcweir 			ADORecordset*					m_pRecordSet;
78cdf0e10cSrcweir                         ::com::sun::star::uno::WeakReferenceHelper    m_aStatement;
79cdf0e10cSrcweir                         ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData>        m_xMetaData;
80cdf0e10cSrcweir 			OLEVariant						m_aValue;
81cdf0e10cSrcweir 			sal_Int32						m_nRowPos;
82cdf0e10cSrcweir 			sal_Bool						m_bWasNull;
83cdf0e10cSrcweir 			sal_Bool						m_bEOF;
84cdf0e10cSrcweir 			sal_Bool						m_bOnFirstAfterOpen;
85cdf0e10cSrcweir 
86cdf0e10cSrcweir 			sal_Int32 getResultSetConcurrency() const throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
87cdf0e10cSrcweir 			sal_Int32 getResultSetType()		const throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
88cdf0e10cSrcweir 			sal_Int32 getFetchDirection()		const throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
89cdf0e10cSrcweir 			sal_Int32 getFetchSize()			const throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
90cdf0e10cSrcweir 			::rtl::OUString getCursorName()		const throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
91cdf0e10cSrcweir 
92cdf0e10cSrcweir 			void setFetchDirection(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
93cdf0e10cSrcweir 			void setFetchSize(sal_Int32 _par0) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
94cdf0e10cSrcweir 
95cdf0e10cSrcweir 
96cdf0e10cSrcweir 			inline sal_Int32 mapColumn (sal_Int32	column);
97cdf0e10cSrcweir 			void checkRecordSet() throw(::com::sun::star::sdbc::SQLException);
98cdf0e10cSrcweir 			OLEVariant getValue(sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
99cdf0e10cSrcweir 
100cdf0e10cSrcweir 		protected:
101cdf0e10cSrcweir 
102cdf0e10cSrcweir 			// OPropertyArrayUsageHelper
103cdf0e10cSrcweir 			virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const;
104cdf0e10cSrcweir 			// OPropertySetHelper
105cdf0e10cSrcweir 			virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper();
106cdf0e10cSrcweir 
107cdf0e10cSrcweir 			virtual sal_Bool SAL_CALL convertFastPropertyValue(
108cdf0e10cSrcweir                                                                 ::com::sun::star::uno::Any & rConvertedValue,
109cdf0e10cSrcweir                                                                 ::com::sun::star::uno::Any & rOldValue,
110cdf0e10cSrcweir 								sal_Int32 nHandle,
111cdf0e10cSrcweir                                                                 const ::com::sun::star::uno::Any& rValue )
112cdf0e10cSrcweir 									throw (::com::sun::star::lang::IllegalArgumentException);
113cdf0e10cSrcweir 			virtual void SAL_CALL setFastPropertyValue_NoBroadcast(
114cdf0e10cSrcweir 									sal_Int32 nHandle,
115cdf0e10cSrcweir                                                                         const ::com::sun::star::uno::Any& rValue
116cdf0e10cSrcweir 													 )
117cdf0e10cSrcweir                                                                                                          throw (::com::sun::star::uno::Exception);
118cdf0e10cSrcweir 			virtual void SAL_CALL getFastPropertyValue(
119cdf0e10cSrcweir                                                                         ::com::sun::star::uno::Any& rValue,
120cdf0e10cSrcweir 									sal_Int32 nHandle
121cdf0e10cSrcweir 										 ) const;
122cdf0e10cSrcweir 		public:
123cdf0e10cSrcweir 			// ein Konstruktor, der fuer das Returnen des Objektes benoetigt wird:
124cdf0e10cSrcweir 			ODatabaseMetaDataResultSet( ADORecordset* _pRecordSet);
125cdf0e10cSrcweir 			~ODatabaseMetaDataResultSet();
126cdf0e10cSrcweir 
127cdf0e10cSrcweir 			// ::cppu::OComponentHelper
128cdf0e10cSrcweir 			virtual void SAL_CALL disposing(void);
129cdf0e10cSrcweir 			// XInterface
130cdf0e10cSrcweir             virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException);
131cdf0e10cSrcweir 			virtual void SAL_CALL acquire() throw();
132cdf0e10cSrcweir             virtual void SAL_CALL release() throw();
133cdf0e10cSrcweir 			//XTypeProvider
134cdf0e10cSrcweir             virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes(  ) throw(::com::sun::star::uno::RuntimeException);
135cdf0e10cSrcweir 			// XPropertySet
136cdf0e10cSrcweir             virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo(  ) throw(::com::sun::star::uno::RuntimeException);
137cdf0e10cSrcweir 			// XResultSet
138cdf0e10cSrcweir             virtual sal_Bool SAL_CALL next(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
139cdf0e10cSrcweir             virtual sal_Bool SAL_CALL isBeforeFirst(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
140cdf0e10cSrcweir             virtual sal_Bool SAL_CALL isAfterLast(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
141cdf0e10cSrcweir             virtual sal_Bool SAL_CALL isFirst(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
142cdf0e10cSrcweir             virtual sal_Bool SAL_CALL isLast(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
143cdf0e10cSrcweir             virtual void SAL_CALL beforeFirst(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
144cdf0e10cSrcweir             virtual void SAL_CALL afterLast(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
145cdf0e10cSrcweir             virtual sal_Bool SAL_CALL first(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
146cdf0e10cSrcweir             virtual sal_Bool SAL_CALL last(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
147cdf0e10cSrcweir             virtual sal_Int32 SAL_CALL getRow(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
148cdf0e10cSrcweir             virtual sal_Bool SAL_CALL absolute( sal_Int32 row ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
149cdf0e10cSrcweir             virtual sal_Bool SAL_CALL relative( sal_Int32 rows ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
150cdf0e10cSrcweir             virtual sal_Bool SAL_CALL previous(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
151cdf0e10cSrcweir             virtual void SAL_CALL refreshRow(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
152cdf0e10cSrcweir             virtual sal_Bool SAL_CALL rowUpdated(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
153cdf0e10cSrcweir             virtual sal_Bool SAL_CALL rowInserted(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
154cdf0e10cSrcweir             virtual sal_Bool SAL_CALL rowDeleted(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
155cdf0e10cSrcweir             virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL getStatement(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
156cdf0e10cSrcweir 			// XRow
157cdf0e10cSrcweir 			virtual sal_Bool SAL_CALL wasNull(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
158cdf0e10cSrcweir 			virtual ::rtl::OUString SAL_CALL getString( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
159cdf0e10cSrcweir 			virtual sal_Bool SAL_CALL getBoolean( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
160cdf0e10cSrcweir 			virtual sal_Int8 SAL_CALL getByte( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
161cdf0e10cSrcweir 			virtual sal_Int16 SAL_CALL getShort( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
162cdf0e10cSrcweir 			virtual sal_Int32 SAL_CALL getInt( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
163cdf0e10cSrcweir 			virtual sal_Int64 SAL_CALL getLong( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
164cdf0e10cSrcweir 			virtual float SAL_CALL getFloat( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
165cdf0e10cSrcweir 			virtual double SAL_CALL getDouble( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
166cdf0e10cSrcweir 			virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getBytes( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
167cdf0e10cSrcweir 			virtual ::com::sun::star::util::Date SAL_CALL getDate( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
168cdf0e10cSrcweir 			virtual ::com::sun::star::util::Time SAL_CALL getTime( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
169cdf0e10cSrcweir 			virtual ::com::sun::star::util::DateTime SAL_CALL getTimestamp( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
170cdf0e10cSrcweir 			virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getBinaryStream( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
171cdf0e10cSrcweir 			virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getCharacterStream( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
172cdf0e10cSrcweir 			virtual ::com::sun::star::uno::Any SAL_CALL getObject( sal_Int32 columnIndex, const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& typeMap ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
173cdf0e10cSrcweir 			virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRef > SAL_CALL getRef( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
174cdf0e10cSrcweir 			virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XBlob > SAL_CALL getBlob( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
175cdf0e10cSrcweir 			virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XClob > SAL_CALL getClob( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
176cdf0e10cSrcweir 			virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XArray > SAL_CALL getArray( sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
177cdf0e10cSrcweir 			// XResultSetMetaDataSupplier
178cdf0e10cSrcweir             virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData > SAL_CALL getMetaData(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
179cdf0e10cSrcweir 			// XCancellable
180cdf0e10cSrcweir             virtual void SAL_CALL cancel(  ) throw(::com::sun::star::uno::RuntimeException);
181cdf0e10cSrcweir 			// XCloseable
182cdf0e10cSrcweir             virtual void SAL_CALL close(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
183cdf0e10cSrcweir 			// XWarningsSupplier
184cdf0e10cSrcweir             virtual ::com::sun::star::uno::Any SAL_CALL getWarnings(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
185cdf0e10cSrcweir             virtual void SAL_CALL clearWarnings(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
186cdf0e10cSrcweir 			// XColumnLocate
187cdf0e10cSrcweir             virtual sal_Int32 SAL_CALL findColumn( const ::rtl::OUString& columnName ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
188cdf0e10cSrcweir 
getColumnMapping()189cdf0e10cSrcweir 			const ::std::vector<sal_Int32>& getColumnMapping() { return m_aColMapping; }
190cdf0e10cSrcweir 
191cdf0e10cSrcweir 			void setCatalogsMap();
192cdf0e10cSrcweir 			void setSchemasMap();
193cdf0e10cSrcweir 			void setColumnPrivilegesMap();
194cdf0e10cSrcweir 			void setColumnsMap();
195cdf0e10cSrcweir 			void setTablesMap();
196cdf0e10cSrcweir 			void setProcedureColumnsMap();
197cdf0e10cSrcweir 			void setProceduresMap();
198cdf0e10cSrcweir 			void setExportedKeysMap();
199cdf0e10cSrcweir 			void setImportedKeysMap();
200cdf0e10cSrcweir 			void setPrimaryKeysMap();
201cdf0e10cSrcweir 			void setIndexInfoMap();
202cdf0e10cSrcweir 			void setTablePrivilegesMap();
203cdf0e10cSrcweir 			void setCrossReferenceMap();
204cdf0e10cSrcweir 			void setTypeInfoMap(sal_Bool _bJetEngine);
205cdf0e10cSrcweir 		};
206cdf0e10cSrcweir 		// -------------------------------------------------------------------------
mapColumn(sal_Int32 column)207cdf0e10cSrcweir 		inline sal_Int32 ODatabaseMetaDataResultSet::mapColumn (sal_Int32	column)
208cdf0e10cSrcweir 		{
209cdf0e10cSrcweir 			sal_Int32	map = column;
210cdf0e10cSrcweir 
211cdf0e10cSrcweir 			if (!m_aColMapping.empty())
212cdf0e10cSrcweir 			{
213cdf0e10cSrcweir 				// Validate column number
214cdf0e10cSrcweir 				map = m_aColMapping[column];
215cdf0e10cSrcweir 			}
216cdf0e10cSrcweir 
217cdf0e10cSrcweir 			return map;
218cdf0e10cSrcweir 		}
219cdf0e10cSrcweir 	}
220cdf0e10cSrcweir 
221cdf0e10cSrcweir }
222cdf0e10cSrcweir #endif // _CONNECTIVITY_ADO_ADATABASEMETADATARESULTSET_HXX_
223cdf0e10cSrcweir 
224