1*caf5cd79SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*caf5cd79SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*caf5cd79SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*caf5cd79SAndrew Rist * distributed with this work for additional information 6*caf5cd79SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*caf5cd79SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*caf5cd79SAndrew Rist * "License"); you may not use this file except in compliance 9*caf5cd79SAndrew Rist * with the License. You may obtain a copy of the License at 10*caf5cd79SAndrew Rist * 11*caf5cd79SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*caf5cd79SAndrew Rist * 13*caf5cd79SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*caf5cd79SAndrew Rist * software distributed under the License is distributed on an 15*caf5cd79SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*caf5cd79SAndrew Rist * KIND, either express or implied. See the License for the 17*caf5cd79SAndrew Rist * specific language governing permissions and limitations 18*caf5cd79SAndrew Rist * under the License. 19*caf5cd79SAndrew Rist * 20*caf5cd79SAndrew Rist *************************************************************/ 21*caf5cd79SAndrew Rist 22*caf5cd79SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef _CONNECTIVITY_EVOAB_CONNECTION_HXX_ 25cdf0e10cSrcweir #define _CONNECTIVITY_EVOAB_CONNECTION_HXX_ 26cdf0e10cSrcweir 27cdf0e10cSrcweir #include "NDriver.hxx" 28cdf0e10cSrcweir #include <com/sun/star/sdbc/SQLWarning.hpp> 29cdf0e10cSrcweir #include <com/sun/star/beans/PropertyValue.hpp> 30cdf0e10cSrcweir #include "OSubComponent.hxx" 31cdf0e10cSrcweir #include <com/sun/star/sdbcx/XTablesSupplier.hpp> 32cdf0e10cSrcweir #include "connectivity/CommonTools.hxx" 33cdf0e10cSrcweir #include "connectivity/warningscontainer.hxx" 34cdf0e10cSrcweir #include "TConnection.hxx" 35cdf0e10cSrcweir #include <cppuhelper/weakref.hxx> 36cdf0e10cSrcweir #include <osl/module.h> 37cdf0e10cSrcweir #include "EApi.h" 38cdf0e10cSrcweir 39cdf0e10cSrcweir namespace connectivity 40cdf0e10cSrcweir { 41cdf0e10cSrcweir namespace evoab 42cdf0e10cSrcweir { 43cdf0e10cSrcweir 44cdf0e10cSrcweir namespace SDBCAddress { 45cdf0e10cSrcweir typedef enum { 46cdf0e10cSrcweir Unknown = 0, 47cdf0e10cSrcweir EVO_LOCAL = 1, 48cdf0e10cSrcweir EVO_LDAP = 2, 49cdf0e10cSrcweir EVO_GWISE = 3 50cdf0e10cSrcweir } sdbc_address_type; 51cdf0e10cSrcweir } 52cdf0e10cSrcweir 53cdf0e10cSrcweir typedef connectivity::OMetaConnection OConnection_BASE; // implements basics and text encoding 54cdf0e10cSrcweir 55cdf0e10cSrcweir class OEvoabConnection :public OConnection_BASE 56cdf0e10cSrcweir ,public connectivity::OSubComponent<OEvoabConnection, OConnection_BASE> 57cdf0e10cSrcweir { 58cdf0e10cSrcweir friend class connectivity::OSubComponent<OEvoabConnection, OConnection_BASE>; 59cdf0e10cSrcweir 60cdf0e10cSrcweir private: 61cdf0e10cSrcweir const OEvoabDriver& m_rDriver; 62cdf0e10cSrcweir SDBCAddress::sdbc_address_type m_eSDBCAddressType; 63cdf0e10cSrcweir ::com::sun::star::uno::Reference< ::com::sun::star::sdbcx::XTablesSupplier > 64cdf0e10cSrcweir m_xCatalog; 65cdf0e10cSrcweir ::rtl::OString m_aPassword; 66cdf0e10cSrcweir ::dbtools::WarningsContainer m_aWarnings; 67cdf0e10cSrcweir 68cdf0e10cSrcweir virtual ~OEvoabConnection(); 69cdf0e10cSrcweir 70cdf0e10cSrcweir public: 71cdf0e10cSrcweir OEvoabConnection( OEvoabDriver& _rDriver ); 72cdf0e10cSrcweir 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); 73cdf0e10cSrcweir getPassword()74cdf0e10cSrcweir inline rtl::OString getPassword() { return m_aPassword; } setPassword(rtl::OString aStr)75cdf0e10cSrcweir inline void setPassword( rtl::OString aStr ) { m_aPassword = aStr; } 76cdf0e10cSrcweir // own methods getDriver() const77cdf0e10cSrcweir inline const OEvoabDriver& getDriver() const { return m_rDriver; } 78cdf0e10cSrcweir getSDBCAddressType() const79cdf0e10cSrcweir SDBCAddress::sdbc_address_type getSDBCAddressType() const { return m_eSDBCAddressType;} setSDBCAddressType(SDBCAddress::sdbc_address_type _eSDBCAddressType)80cdf0e10cSrcweir void setSDBCAddressType(SDBCAddress::sdbc_address_type _eSDBCAddressType) {m_eSDBCAddressType = _eSDBCAddressType;} 81cdf0e10cSrcweir 82cdf0e10cSrcweir // OComponentHelper 83cdf0e10cSrcweir virtual void SAL_CALL disposing(void); 84cdf0e10cSrcweir // XInterface 85cdf0e10cSrcweir virtual void SAL_CALL release() throw(); 86cdf0e10cSrcweir 87cdf0e10cSrcweir // XServiceInfo 88cdf0e10cSrcweir DECLARE_SERVICE_INFO(); 89cdf0e10cSrcweir 90cdf0e10cSrcweir // XConnection 91cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbcx::XTablesSupplier > createCatalog(); 92cdf0e10cSrcweir 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); 93cdf0e10cSrcweir 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); 94cdf0e10cSrcweir 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); 95cdf0e10cSrcweir virtual ::rtl::OUString SAL_CALL nativeSQL( const ::rtl::OUString& sql ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 96cdf0e10cSrcweir virtual void SAL_CALL setAutoCommit( sal_Bool autoCommit ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 97cdf0e10cSrcweir virtual sal_Bool SAL_CALL getAutoCommit( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 98cdf0e10cSrcweir virtual void SAL_CALL commit( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 99cdf0e10cSrcweir virtual void SAL_CALL rollback( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 100cdf0e10cSrcweir virtual sal_Bool SAL_CALL isClosed( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 101cdf0e10cSrcweir 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); 102cdf0e10cSrcweir virtual void SAL_CALL setReadOnly( sal_Bool readOnly ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 103cdf0e10cSrcweir virtual sal_Bool SAL_CALL isReadOnly( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 104cdf0e10cSrcweir virtual void SAL_CALL setCatalog( const ::rtl::OUString& catalog ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 105cdf0e10cSrcweir virtual ::rtl::OUString SAL_CALL getCatalog( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 106cdf0e10cSrcweir virtual void SAL_CALL setTransactionIsolation( sal_Int32 level ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 107cdf0e10cSrcweir virtual sal_Int32 SAL_CALL getTransactionIsolation( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 108cdf0e10cSrcweir 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); 109cdf0e10cSrcweir 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); 110cdf0e10cSrcweir 111cdf0e10cSrcweir // XCloseable 112cdf0e10cSrcweir virtual void SAL_CALL close( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 113cdf0e10cSrcweir // XWarningsSupplier 114cdf0e10cSrcweir virtual ::com::sun::star::uno::Any SAL_CALL getWarnings( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 115cdf0e10cSrcweir virtual void SAL_CALL clearWarnings( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 116cdf0e10cSrcweir }; 117cdf0e10cSrcweir } 118cdf0e10cSrcweir } 119cdf0e10cSrcweir #endif // _CONNECTIVITY_EVOAB_CONNECTION_HXX_ 120