LCOV - code coverage report
Current view: top level - connectivity/source/drivers/firebird - Driver.hxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 0 2 0.0 %
Date: 2014-04-11 Functions: 0 3 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       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/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      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 .
      18             :  */
      19             : 
      20             : #ifndef CONNECTIVITY_FIREBIRD_DRIVER_HXX
      21             : #define CONNECTIVITY_FIREBIRD_DRIVER_HXX
      22             : 
      23             : #include "Connection.hxx"
      24             : 
      25             : #include <com/sun/star/lang/XServiceInfo.hpp>
      26             : #include <com/sun/star/sdbc/XDriver.hpp>
      27             : #include <com/sun/star/sdbcx/XDataDefinitionSupplier.hpp>
      28             : #include <cppuhelper/compbase3.hxx>
      29             : #include <unotools/tempfile.hxx>
      30             : 
      31             : namespace connectivity
      32             : {
      33             :     namespace firebird
      34             :     {
      35             :         // The SQL dialect in use
      36             :         // Has to be used in various isc_* calls.
      37             :         // 3: Is IB6 -- minimum required for delimited identifiers.
      38             :         static const int FIREBIRD_SQL_DIALECT = 3;
      39             : 
      40             :         ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL FirebirdDriver_CreateInstance(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxFactory) throw( ::com::sun::star::uno::Exception );
      41             : 
      42             :         typedef ::cppu::WeakComponentImplHelper3<   ::com::sun::star::sdbc::XDriver,
      43             :                                                     ::com::sun::star::sdbcx::XDataDefinitionSupplier,
      44             :                                                     ::com::sun::star::lang::XServiceInfo > ODriver_BASE;
      45             : 
      46           0 :         class FirebirdDriver : public ODriver_BASE
      47             :         {
      48             :         private:
      49             :             static const ::rtl::OUString our_sFirebirdTmpVar;
      50             :             static const ::rtl::OUString our_sFirebirdLockVar;
      51             :             static const ::rtl::OUString our_sFirebirdMsgVar;
      52             : 
      53             :             css::uno::Reference<css::uno::XComponentContext> m_aContext;
      54             :             ::utl::TempFile m_firebirdTMPDirectory;
      55             :             ::utl::TempFile m_firebirdLockDirectory;
      56             : 
      57             :         protected:
      58             :             ::osl::Mutex                m_aMutex;       // mutex is need to control member access
      59             :             OWeakRefArray               m_xConnections; //  vector containing a list
      60             :                                                         //  of all the Connection objects
      61             :                                                         //  for this Driver
      62             : 
      63             :         public:
      64             : 
      65             :             FirebirdDriver(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext);
      66           0 :             const css::uno::Reference<css::uno::XComponentContext>& getContext() const { return m_aContext; }
      67             : 
      68             :             // OComponentHelper
      69             :             virtual void SAL_CALL disposing(void) SAL_OVERRIDE;
      70             :             // XInterface
      71             :             static ::rtl::OUString getImplementationName_Static(  ) throw(::com::sun::star::uno::RuntimeException);
      72             :             static ::com::sun::star::uno::Sequence< ::rtl::OUString > getSupportedServiceNames_Static(  ) throw (::com::sun::star::uno::RuntimeException);
      73             : 
      74             :             // XServiceInfo
      75             :             virtual ::rtl::OUString SAL_CALL getImplementationName(  ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      76             :             virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      77             :             virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames(  ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      78             : 
      79             :             // XDriver
      80             :             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, std::exception) SAL_OVERRIDE;
      81             :             virtual sal_Bool SAL_CALL acceptsURL( const ::rtl::OUString& url ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      82             :             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, std::exception) SAL_OVERRIDE;
      83             :             virtual sal_Int32 SAL_CALL getMajorVersion(  ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      84             :             virtual sal_Int32 SAL_CALL getMinorVersion(  ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      85             : 
      86             :             // XDataDefinitionSupplier
      87             :             virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbcx::XTablesSupplier >
      88             :                 SAL_CALL getDataDefinitionByConnection(
      89             :                     const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& rxConnection)
      90             :                 throw(::com::sun::star::sdbc::SQLException,
      91             :                       ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      92             :             virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbcx::XTablesSupplier >
      93             :                 SAL_CALL getDataDefinitionByURL(
      94             :                     const OUString& rsURL,
      95             :                     const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rInfo)
      96             :                 throw(::com::sun::star::sdbc::SQLException,
      97             :                       ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      98             :         };
      99             :     }
     100             : 
     101             : }
     102             : 
     103             : #endif // CONNECTIVITY_FIREBIRD_DRIVER_HXX
     104             : 
     105             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10