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_EVOAB_CONNECTION_HXX_ 25 #define _CONNECTIVITY_EVOAB_CONNECTION_HXX_ 26 27 #include "NDriver.hxx" 28 #include <com/sun/star/sdbc/SQLWarning.hpp> 29 #include <com/sun/star/beans/PropertyValue.hpp> 30 #include "OSubComponent.hxx" 31 #include <com/sun/star/sdbcx/XTablesSupplier.hpp> 32 #include "connectivity/CommonTools.hxx" 33 #include "connectivity/warningscontainer.hxx" 34 #include "TConnection.hxx" 35 #include <cppuhelper/weakref.hxx> 36 #include <osl/module.h> 37 #include "EApi.h" 38 39 namespace connectivity 40 { 41 namespace evoab 42 { 43 44 namespace SDBCAddress { 45 typedef enum { 46 Unknown = 0, 47 EVO_LOCAL = 1, 48 EVO_LDAP = 2, 49 EVO_GWISE = 3 50 } sdbc_address_type; 51 } 52 53 typedef connectivity::OMetaConnection OConnection_BASE; // implements basics and text encoding 54 55 class OEvoabConnection :public OConnection_BASE 56 ,public connectivity::OSubComponent<OEvoabConnection, OConnection_BASE> 57 { 58 friend class connectivity::OSubComponent<OEvoabConnection, OConnection_BASE>; 59 60 private: 61 const OEvoabDriver& m_rDriver; 62 SDBCAddress::sdbc_address_type m_eSDBCAddressType; 63 ::com::sun::star::uno::Reference< ::com::sun::star::sdbcx::XTablesSupplier > 64 m_xCatalog; 65 ::rtl::OString m_aPassword; 66 ::dbtools::WarningsContainer m_aWarnings; 67 68 virtual ~OEvoabConnection(); 69 70 public: 71 OEvoabConnection( OEvoabDriver& _rDriver ); 72 virtual void construct(const ::rtl::OUString& _rUrl,const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& _rInfo ) throw( ::com::sun::star::sdbc::SQLException); 73 getPassword()74 inline rtl::OString getPassword() { return m_aPassword; } setPassword(rtl::OString aStr)75 inline void setPassword( rtl::OString aStr ) { m_aPassword = aStr; } 76 // own methods getDriver() const77 inline const OEvoabDriver& getDriver() const { return m_rDriver; } 78 getSDBCAddressType() const79 SDBCAddress::sdbc_address_type getSDBCAddressType() const { return m_eSDBCAddressType;} setSDBCAddressType(SDBCAddress::sdbc_address_type _eSDBCAddressType)80 void setSDBCAddressType(SDBCAddress::sdbc_address_type _eSDBCAddressType) {m_eSDBCAddressType = _eSDBCAddressType;} 81 82 // OComponentHelper 83 virtual void SAL_CALL disposing(void); 84 // XInterface 85 virtual void SAL_CALL release() throw(); 86 87 // XServiceInfo 88 DECLARE_SERVICE_INFO(); 89 90 // XConnection 91 virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbcx::XTablesSupplier > createCatalog(); 92 virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XStatement > SAL_CALL createStatement( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 93 virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XPreparedStatement > SAL_CALL prepareStatement( const ::rtl::OUString& sql ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 94 virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XPreparedStatement > SAL_CALL prepareCall( const ::rtl::OUString& sql ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 95 virtual ::rtl::OUString SAL_CALL nativeSQL( const ::rtl::OUString& sql ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 96 virtual void SAL_CALL setAutoCommit( sal_Bool autoCommit ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 97 virtual sal_Bool SAL_CALL getAutoCommit( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 98 virtual void SAL_CALL commit( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 99 virtual void SAL_CALL rollback( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 100 virtual sal_Bool SAL_CALL isClosed( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 101 virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData > SAL_CALL getMetaData( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 102 virtual void SAL_CALL setReadOnly( sal_Bool readOnly ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 103 virtual sal_Bool SAL_CALL isReadOnly( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 104 virtual void SAL_CALL setCatalog( const ::rtl::OUString& catalog ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 105 virtual ::rtl::OUString SAL_CALL getCatalog( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 106 virtual void SAL_CALL setTransactionIsolation( sal_Int32 level ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 107 virtual sal_Int32 SAL_CALL getTransactionIsolation( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 108 virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > SAL_CALL getTypeMap( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 109 virtual void SAL_CALL setTypeMap( const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& typeMap ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 110 111 // XCloseable 112 virtual void SAL_CALL close( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 113 // XWarningsSupplier 114 virtual ::com::sun::star::uno::Any SAL_CALL getWarnings( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 115 virtual void SAL_CALL clearWarnings( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 116 }; 117 } 118 } 119 #endif // _CONNECTIVITY_EVOAB_CONNECTION_HXX_ 120