1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_KAB_KCONNECTION_HXX
21 #define INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_KAB_KCONNECTION_HXX
24 #include <connectivity/OSubComponent.hxx>
25 #include <connectivity/CommonTools.hxx>
26 #include <com/sun/star/lang/XServiceInfo.hpp>
27 #include <com/sun/star/sdbc/SQLWarning.hpp>
28 #include <com/sun/star/sdbc/XWarningsSupplier.hpp>
29 #include <com/sun/star/sdbc/XConnection.hpp>
30 #include <com/sun/star/sdbcx/XTablesSupplier.hpp>
31 #include <cppuhelper/basemutex.hxx>
32 #include <cppuhelper/compbase.hxx>
33 #include <shell/kde_headers.h>
40 namespace com
{ namespace sun
{ namespace star
{ namespace sdbc
{
44 namespace connectivity
49 typedef ::cppu::WeakComponentImplHelper
<css::sdbc::XConnection
,
50 css::sdbc::XWarningsSupplier
,
51 css::lang::XServiceInfo
52 > OMetaConnection_BASE
;
54 typedef OMetaConnection_BASE KabConnection_BASE
; // implements basics and text encoding
55 typedef std::vector
< css::uno::WeakReferenceHelper
> OWeakRefArray
;
57 class KabConnection
: public cppu::BaseMutex
,
58 public KabConnection_BASE
,
59 public OSubComponent
<KabConnection
, KabConnection_BASE
>
61 friend class OSubComponent
<KabConnection
, KabConnection_BASE
>;
67 css::uno::WeakReference
< css::sdbc::XDatabaseMetaData
> m_xMetaData
;
69 OWeakRefArray m_aStatements
; // vector containing a list of all the Statement objects
70 // for this Connection
72 ::KABC::StdAddressBook
* m_pAddressBook
; // the address book
73 css::uno::Reference
<css::uno::XComponentContext
> m_xComponentContext
;
74 css::uno::Reference
< css::sdbcx::XTablesSupplier
>
75 m_xCatalog
; // needed for the SQL interpreter
81 css::uno::Reference
<css::uno::XComponentContext
> const &
83 css::uno::Reference
<css::sdbc::XDriver
> const & driver
);
84 virtual ~KabConnection() override
;
86 void closeAllStatements () throw( css::sdbc::SQLException
);
89 virtual void SAL_CALL
disposing() override
;
92 virtual void SAL_CALL
release() throw() override
;
95 DECLARE_SERVICE_INFO();
98 virtual css::uno::Reference
< css::sdbc::XStatement
> SAL_CALL
createStatement( ) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
99 virtual css::uno::Reference
< css::sdbc::XPreparedStatement
> SAL_CALL
prepareStatement( const OUString
& sql
) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
100 virtual css::uno::Reference
< css::sdbc::XPreparedStatement
> SAL_CALL
prepareCall( const OUString
& sql
) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
101 virtual OUString SAL_CALL
nativeSQL( const OUString
& sql
) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
102 virtual void SAL_CALL
setAutoCommit( sal_Bool autoCommit
) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
103 virtual sal_Bool SAL_CALL
getAutoCommit( ) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
104 virtual void SAL_CALL
commit( ) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
105 virtual void SAL_CALL
rollback( ) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
106 virtual sal_Bool SAL_CALL
isClosed( ) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
107 virtual css::uno::Reference
< css::sdbc::XDatabaseMetaData
> SAL_CALL
getMetaData( ) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
108 virtual void SAL_CALL
setReadOnly( sal_Bool readOnly
) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
109 virtual sal_Bool SAL_CALL
isReadOnly( ) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
110 virtual void SAL_CALL
setCatalog( const OUString
& catalog
) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
111 virtual OUString SAL_CALL
getCatalog( ) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
112 virtual void SAL_CALL
setTransactionIsolation( sal_Int32 level
) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
113 virtual sal_Int32 SAL_CALL
getTransactionIsolation( ) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
114 virtual css::uno::Reference
< css::container::XNameAccess
> SAL_CALL
getTypeMap( ) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
115 virtual void SAL_CALL
setTypeMap( const css::uno::Reference
< css::container::XNameAccess
>& typeMap
) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
118 virtual void SAL_CALL
close( ) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
121 virtual css::uno::Any SAL_CALL
getWarnings( ) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
122 virtual void SAL_CALL
clearWarnings( ) throw(css::sdbc::SQLException
, css::uno::RuntimeException
, std::exception
) override
;
124 // needed for the SQL interpreter
125 css::uno::Reference
< css::sdbcx::XTablesSupplier
> SAL_CALL
createCatalog();
127 css::uno::Reference
<css::uno::XComponentContext
>
128 getComponentContext() const
129 { return m_xComponentContext
; }
131 ::KABC::AddressBook
* getAddressBook() const;
136 #endif // INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_KAB_KCONNECTION_HXX
138 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */