1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #ifndef _CONNECTIVITY_ODBC_ODRIVER_HXX_
30 #define _CONNECTIVITY_ODBC_ODRIVER_HXX_
32 #include <com/sun/star/sdbc/XDriver.hpp>
33 #include <com/sun/star/lang/XServiceInfo.hpp>
34 #include <cppuhelper/compbase2.hxx>
35 #include "odbc/OFunctiondefs.hxx"
36 #include "odbc/odbcbasedllapi.hxx"
37 #include "connectivity/CommonTools.hxx"
38 #include <osl/module.h>
40 namespace connectivity
44 typedef ::cppu::WeakComponentImplHelper2
< ::com::sun::star::sdbc::XDriver
, ::com::sun::star::lang::XServiceInfo
> ODriver_BASE
;
46 class OOO_DLLPUBLIC_ODBCBASE SAL_NO_VTABLE ODBCDriver
: public ODriver_BASE
49 ::osl::Mutex m_aMutex
;
51 connectivity::OWeakRefArray m_xConnections
; // vector containing a list
52 // of all the Connection objects
55 ::com::sun::star::uno::Reference
< ::com::sun::star::lang::XMultiServiceFactory
> m_xORB
;
56 SQLHANDLE m_pDriverHandle
;
58 virtual SQLHANDLE
EnvironmentHandle(::rtl::OUString
&_rPath
) = 0;
62 ODBCDriver(const ::com::sun::star::uno::Reference
< ::com::sun::star::lang::XMultiServiceFactory
>& _rxFactory
);
64 // only possibility to get the odbc functions
65 virtual oslGenericFunction
getOdbcFunction(sal_Int32 _nIndex
) const = 0;
67 virtual void SAL_CALL
disposing(void);
69 static ::rtl::OUString
getImplementationName_Static( ) throw(::com::sun::star::uno::RuntimeException
);
70 static ::com::sun::star::uno::Sequence
< ::rtl::OUString
> getSupportedServiceNames_Static( ) throw (::com::sun::star::uno::RuntimeException
);
73 virtual ::rtl::OUString SAL_CALL
getImplementationName( ) throw(::com::sun::star::uno::RuntimeException
);
74 virtual sal_Bool SAL_CALL
supportsService( const ::rtl::OUString
& ServiceName
) throw(::com::sun::star::uno::RuntimeException
);
75 virtual ::com::sun::star::uno::Sequence
< ::rtl::OUString
> SAL_CALL
getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException
);
78 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XConnection
> SAL_CALL
connect( const ::rtl::OUString
& url
, const ::com::sun::star::uno::Sequence
< ::com::sun::star::beans::PropertyValue
>& info
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
79 virtual sal_Bool SAL_CALL
acceptsURL( const ::rtl::OUString
& url
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
80 virtual ::com::sun::star::uno::Sequence
< ::com::sun::star::sdbc::DriverPropertyInfo
> SAL_CALL
getPropertyInfo( const ::rtl::OUString
& url
, const ::com::sun::star::uno::Sequence
< ::com::sun::star::beans::PropertyValue
>& info
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
81 virtual sal_Int32 SAL_CALL
getMajorVersion( ) throw(::com::sun::star::uno::RuntimeException
);
82 virtual sal_Int32 SAL_CALL
getMinorVersion( ) throw(::com::sun::star::uno::RuntimeException
);
84 ::com::sun::star::uno::Reference
< ::com::sun::star::lang::XMultiServiceFactory
> getORB() const { return m_xORB
; }
89 #endif //_CONNECTIVITY_ODBC_ODRIVER_HXX_
92 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */