1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #ifndef _CONNECTIVITY_FILE_ADATABASEMETADATARESULTSETMETADATA_HXX_ 25 #define _CONNECTIVITY_FILE_ADATABASEMETADATARESULTSETMETADATA_HXX_ 26 27 #include <com/sun/star/sdbc/XResultSetMetaData.hpp> 28 #include <cppuhelper/implbase1.hxx> 29 #ifndef _VECTOR_ 30 #include <vector> 31 #endif 32 #include "FDatabaseMetaDataResultSet.hxx" 33 #include "OColumn.hxx" 34 35 namespace connectivity 36 { 37 namespace file 38 { 39 //************************************************************** 40 //************ Class: ResultSetMetaData 41 //************************************************************** 42 typedef ::cppu::WeakImplHelper1< ::com::sun::star::sdbc::XResultSetMetaData> ODatabaseMetaResultSetMetaData_BASE; 43 44 class ODatabaseMetaDataResultSetMetaData : public ODatabaseMetaResultSetMetaData_BASE 45 { 46 friend class ODatabaseMetaDataResultSet; 47 48 ::std::vector<sal_Int32> m_vMapping; // when not every column is needed 49 ::std::map<sal_Int32,connectivity::OColumn> m_mColumns; 50 ::std::map<sal_Int32,connectivity::OColumn>::const_iterator m_mColumnsIter; 51 52 sal_Int32 m_nColCount; 53 54 protected: 55 void setColumnPrivilegesMap(); 56 void setColumnsMap(); 57 void setTablesMap(); 58 void setProcedureColumnsMap(); 59 void setPrimaryKeysMap(); 60 void setIndexInfoMap(); 61 void setTablePrivilegesMap(); 62 void setCrossReferenceMap(); 63 void setTypeInfoMap(); 64 void setProceduresMap(); 65 void setTableTypes(); 66 public: 67 // ein Konstruktor, der fuer das Returnen des Objektes benoetigt wird: ODatabaseMetaDataResultSetMetaData(ODatabaseMetaDataResultSet * _pRes)68 ODatabaseMetaDataResultSetMetaData( ODatabaseMetaDataResultSet* _pRes) 69 : m_nColCount(0) 70 { 71 } 72 ~ODatabaseMetaDataResultSetMetaData(); 73 74 /// Avoid ambigous cast error from the compiler. operator ::com::sun::star::uno::Reference<::com::sun::star::sdbc::XResultSetMetaData>()75 inline operator ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData > () throw() 76 { return this; } 77 78 virtual sal_Int32 SAL_CALL getColumnCount( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 79 virtual sal_Bool SAL_CALL isAutoIncrement( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 80 virtual sal_Bool SAL_CALL isCaseSensitive( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 81 virtual sal_Bool SAL_CALL isSearchable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 82 virtual sal_Bool SAL_CALL isCurrency( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 83 virtual sal_Int32 SAL_CALL isNullable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 84 virtual sal_Bool SAL_CALL isSigned( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 85 virtual sal_Int32 SAL_CALL getColumnDisplaySize( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 86 virtual ::rtl::OUString SAL_CALL getColumnLabel( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 87 virtual ::rtl::OUString SAL_CALL getColumnName( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 88 virtual ::rtl::OUString SAL_CALL getSchemaName( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 89 virtual sal_Int32 SAL_CALL getPrecision( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 90 virtual sal_Int32 SAL_CALL getScale( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 91 virtual ::rtl::OUString SAL_CALL getTableName( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 92 virtual ::rtl::OUString SAL_CALL getCatalogName( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 93 virtual sal_Int32 SAL_CALL getColumnType( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 94 virtual ::rtl::OUString SAL_CALL getColumnTypeName( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 95 virtual sal_Bool SAL_CALL isReadOnly( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 96 virtual sal_Bool SAL_CALL isWritable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 97 virtual sal_Bool SAL_CALL isDefinitelyWritable( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 98 virtual ::rtl::OUString SAL_CALL getColumnServiceName( sal_Int32 column ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 99 }; 100 } 101 } 102 #endif // _CONNECTIVITY_FILE_ADATABASEMETARESULTSETMETADATA_HXX_ 103 104 105