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 10cdf0e10cSrcweir * 11*caf5cd79SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 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. 19cdf0e10cSrcweir * 20*caf5cd79SAndrew Rist *************************************************************/ 21*caf5cd79SAndrew Rist 22*caf5cd79SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef _CONNECTIVITY_KAB_CONNECTION_HXX_ 25cdf0e10cSrcweir #define _CONNECTIVITY_KAB_CONNECTION_HXX_ 26cdf0e10cSrcweir 27cdf0e10cSrcweir #include <map> 28cdf0e10cSrcweir #include "OSubComponent.hxx" 29cdf0e10cSrcweir #include "connectivity/CommonTools.hxx" 30cdf0e10cSrcweir #include <com/sun/star/lang/XServiceInfo.hpp> 31cdf0e10cSrcweir #include <com/sun/star/sdbc/SQLWarning.hpp> 32cdf0e10cSrcweir #include <com/sun/star/sdbc/XWarningsSupplier.hpp> 33cdf0e10cSrcweir #include <com/sun/star/sdbc/XConnection.hpp> 34cdf0e10cSrcweir #include <com/sun/star/sdbcx/XTablesSupplier.hpp> 35cdf0e10cSrcweir #include <comphelper/broadcasthelper.hxx> 36cdf0e10cSrcweir #include <cppuhelper/compbase3.hxx> 37cdf0e10cSrcweir 38cdf0e10cSrcweir namespace KABC 39cdf0e10cSrcweir { 40cdf0e10cSrcweir class StdAddressBook; 41cdf0e10cSrcweir class AddressBook; 42cdf0e10cSrcweir } 43cdf0e10cSrcweir 44cdf0e10cSrcweir namespace connectivity 45cdf0e10cSrcweir { 46cdf0e10cSrcweir namespace kab 47cdf0e10cSrcweir { 48cdf0e10cSrcweir 49cdf0e10cSrcweir typedef ::cppu::WeakComponentImplHelper3< ::com::sun::star::sdbc::XConnection, 50cdf0e10cSrcweir ::com::sun::star::sdbc::XWarningsSupplier, 51cdf0e10cSrcweir ::com::sun::star::lang::XServiceInfo 52cdf0e10cSrcweir > OMetaConnection_BASE; 53cdf0e10cSrcweir 54cdf0e10cSrcweir class KabStatement_Base; 55cdf0e10cSrcweir class KabDriver; 56cdf0e10cSrcweir class KabDatabaseMetaData; 57cdf0e10cSrcweir 58cdf0e10cSrcweir typedef OMetaConnection_BASE KabConnection_BASE; // implements basics and text encoding 59cdf0e10cSrcweir typedef std::vector< ::com::sun::star::uno::WeakReferenceHelper > OWeakRefArray; 60cdf0e10cSrcweir 61cdf0e10cSrcweir class KabConnection : public comphelper::OBaseMutex, 62cdf0e10cSrcweir public KabConnection_BASE, 63cdf0e10cSrcweir public OSubComponent<KabConnection, KabConnection_BASE> 64cdf0e10cSrcweir { 65cdf0e10cSrcweir friend class OSubComponent<KabConnection, KabConnection_BASE>; 66cdf0e10cSrcweir 67cdf0e10cSrcweir protected: 68cdf0e10cSrcweir //==================================================================== 69cdf0e10cSrcweir // Data attributes 70cdf0e10cSrcweir //==================================================================== 71cdf0e10cSrcweir ::com::sun::star::uno::WeakReference< ::com::sun::star::sdbc::XDatabaseMetaData > m_xMetaData; 72cdf0e10cSrcweir 73cdf0e10cSrcweir OWeakRefArray m_aStatements; // vector containing a list of all the Statement objects 74cdf0e10cSrcweir // for this Connection 75cdf0e10cSrcweir 76cdf0e10cSrcweir ::KABC::StdAddressBook* m_pAddressBook; // the address book 77cdf0e10cSrcweir KabDriver* m_pDriver; // pointer to the owning driver object 78cdf0e10cSrcweir ::com::sun::star::uno::Reference< ::com::sun::star::sdbcx::XTablesSupplier> 79cdf0e10cSrcweir m_xCatalog; // needed for the SQL interpreter 80cdf0e10cSrcweir 81cdf0e10cSrcweir public: 82cdf0e10cSrcweir virtual void construct( const ::rtl::OUString& url,const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& info) throw(::com::sun::star::sdbc::SQLException); 83cdf0e10cSrcweir 84cdf0e10cSrcweir KabConnection(KabDriver* _pDriver); 85cdf0e10cSrcweir virtual ~KabConnection(); 86cdf0e10cSrcweir 87cdf0e10cSrcweir void closeAllStatements () throw( ::com::sun::star::sdbc::SQLException); 88cdf0e10cSrcweir 89cdf0e10cSrcweir // OComponentHelper 90cdf0e10cSrcweir virtual void SAL_CALL disposing(void); 91cdf0e10cSrcweir 92cdf0e10cSrcweir // XInterface 93cdf0e10cSrcweir virtual void SAL_CALL release() throw(); 94cdf0e10cSrcweir 95cdf0e10cSrcweir // XServiceInfo 96cdf0e10cSrcweir DECLARE_SERVICE_INFO(); 97cdf0e10cSrcweir 98cdf0e10cSrcweir // XConnection 99cdf0e10cSrcweir 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); 100cdf0e10cSrcweir 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); 101cdf0e10cSrcweir 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); 102cdf0e10cSrcweir virtual ::rtl::OUString SAL_CALL nativeSQL( const ::rtl::OUString& sql ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 103cdf0e10cSrcweir virtual void SAL_CALL setAutoCommit( sal_Bool autoCommit ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 104cdf0e10cSrcweir virtual sal_Bool SAL_CALL getAutoCommit( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 105cdf0e10cSrcweir virtual void SAL_CALL commit( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 106cdf0e10cSrcweir virtual void SAL_CALL rollback( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 107cdf0e10cSrcweir virtual sal_Bool SAL_CALL isClosed( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 108cdf0e10cSrcweir 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); 109cdf0e10cSrcweir virtual void SAL_CALL setReadOnly( sal_Bool readOnly ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 110cdf0e10cSrcweir virtual sal_Bool SAL_CALL isReadOnly( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 111cdf0e10cSrcweir virtual void SAL_CALL setCatalog( const ::rtl::OUString& catalog ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 112cdf0e10cSrcweir virtual ::rtl::OUString SAL_CALL getCatalog( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 113cdf0e10cSrcweir virtual void SAL_CALL setTransactionIsolation( sal_Int32 level ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 114cdf0e10cSrcweir virtual sal_Int32 SAL_CALL getTransactionIsolation( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 115cdf0e10cSrcweir 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); 116cdf0e10cSrcweir 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); 117cdf0e10cSrcweir 118cdf0e10cSrcweir // XCloseable 119cdf0e10cSrcweir virtual void SAL_CALL close( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 120cdf0e10cSrcweir 121cdf0e10cSrcweir // XWarningsSupplier 122cdf0e10cSrcweir virtual ::com::sun::star::uno::Any SAL_CALL getWarnings( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 123cdf0e10cSrcweir virtual void SAL_CALL clearWarnings( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); 124cdf0e10cSrcweir 125cdf0e10cSrcweir // needed for the SQL interpreter 126cdf0e10cSrcweir ::com::sun::star::uno::Reference< ::com::sun::star::sdbcx::XTablesSupplier > SAL_CALL createCatalog(); 127cdf0e10cSrcweir 128cdf0e10cSrcweir // accessors getDriver() const129cdf0e10cSrcweir inline KabDriver* getDriver() const { return m_pDriver;} 130cdf0e10cSrcweir ::KABC::AddressBook* getAddressBook() const; 131cdf0e10cSrcweir }; 132cdf0e10cSrcweir } 133cdf0e10cSrcweir } 134cdf0e10cSrcweir 135cdf0e10cSrcweir #endif // _CONNECTIVITY_KAB_CONNECTION_HXX_ 136