LCOV - code coverage report
Current view: top level - cui/source/options - dbregisterednamesconfig.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 39 0.0 %
Date: 2014-04-14 Functions: 0 4 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             : #include "connpooloptions.hxx"
      21             : #include "dbregisterednamesconfig.hxx"
      22             : #include "dbregistersettings.hxx"
      23             : #include "svx/svxids.hrc"
      24             : #include <com/sun/star/container/XNameAccess.hpp>
      25             : #include <com/sun/star/sdb/DatabaseContext.hpp>
      26             : #include <comphelper/extract.hxx>
      27             : #include <comphelper/processfactory.hxx>
      28             : #include <svl/eitem.hxx>
      29             : #include <svl/itemset.hxx>
      30             : #include <unotools/pathoptions.hxx>
      31             : #include <unotools/confignode.hxx>
      32             : #include <tools/diagnose_ex.h>
      33             : 
      34             : 
      35             : namespace svx
      36             : {
      37             : 
      38             : 
      39             :     using namespace ::utl;
      40             :     using namespace ::com::sun::star::uno;
      41             :     using namespace ::com::sun::star::sdb;
      42             :     using namespace ::com::sun::star::container;
      43             : 
      44             : 
      45             :     //= DbRegisteredNamesConfig
      46             : 
      47             : 
      48           0 :     void DbRegisteredNamesConfig::GetOptions( SfxItemSet& _rFillItems )
      49             :     {
      50           0 :         DatabaseRegistrations aSettings;
      51             : 
      52             :         try
      53             :         {
      54           0 :             Reference<XComponentContext> xContext( ::comphelper::getProcessComponentContext() );
      55             :             Reference< XDatabaseContext > xRegistrations(
      56           0 :                 DatabaseContext::create(xContext) );
      57             : 
      58           0 :             Sequence< OUString > aRegistrationNames( xRegistrations->getRegistrationNames() );
      59           0 :             const OUString* pRegistrationName = aRegistrationNames.getConstArray();
      60           0 :             const OUString* pRegistrationNamesEnd = pRegistrationName + aRegistrationNames.getLength();
      61           0 :             for ( ; pRegistrationName != pRegistrationNamesEnd; ++pRegistrationName )
      62             :             {
      63           0 :                 OUString sLocation( xRegistrations->getDatabaseLocation( *pRegistrationName ) );
      64           0 :                 aSettings[ *pRegistrationName ] =
      65           0 :                     DatabaseRegistration( sLocation, xRegistrations->isDatabaseRegistrationReadOnly( *pRegistrationName ) );
      66           0 :             }
      67             :         }
      68           0 :         catch( const Exception& )
      69             :         {
      70             :             DBG_UNHANDLED_EXCEPTION();
      71             :         }
      72             : 
      73           0 :         _rFillItems.Put( DatabaseMapItem( SID_SB_DB_REGISTER, aSettings ) );
      74           0 :     }
      75             : 
      76             : 
      77           0 :     void DbRegisteredNamesConfig::SetOptions(const SfxItemSet& _rSourceItems)
      78             :     {
      79             :         // the settings for the single drivers
      80           0 :         SFX_ITEMSET_GET( _rSourceItems, pRegistrations, DatabaseMapItem, SID_SB_DB_REGISTER, true );
      81           0 :         if ( !pRegistrations )
      82           0 :             return;
      83             : 
      84             :         try
      85             :         {
      86             :             Reference< XDatabaseContext > xRegistrations(
      87             :                 DatabaseContext::create(
      88           0 :                     comphelper::getProcessComponentContext()));
      89             : 
      90           0 :             const DatabaseRegistrations& rNewRegistrations = pRegistrations->getRegistrations();
      91           0 :             for (   DatabaseRegistrations::const_iterator reg = rNewRegistrations.begin();
      92           0 :                     reg != rNewRegistrations.end();
      93             :                     ++reg
      94             :                 )
      95             :             {
      96           0 :                 const OUString sName = reg->first;
      97           0 :                 const OUString sLocation = reg->second.sLocation;
      98             : 
      99           0 :                 if ( xRegistrations->hasRegisteredDatabase( sName ) )
     100             :                 {
     101           0 :                     if ( !xRegistrations->isDatabaseRegistrationReadOnly( sName ) )
     102           0 :                         xRegistrations->changeDatabaseLocation( sName, sLocation );
     103             :                     else
     104             :                     {
     105             :                         OSL_ENSURE( xRegistrations->getDatabaseLocation( sName ) == sLocation,
     106             :                             "DbRegisteredNamesConfig::SetOptions: somebody changed a read-only registration. How unrespectful." );
     107             :                     }
     108             :                 }
     109             :                 else
     110           0 :                     xRegistrations->registerDatabaseLocation( sName, sLocation );
     111           0 :             }
     112             : 
     113             :             // delete unused entries
     114           0 :             Sequence< OUString > aRegistrationNames = xRegistrations->getRegistrationNames();
     115           0 :             const OUString* pRegistrationName = aRegistrationNames.getConstArray();
     116           0 :             const OUString* pRegistrationNamesEnd = pRegistrationName + aRegistrationNames.getLength();
     117           0 :             for ( ; pRegistrationName != pRegistrationNamesEnd; ++pRegistrationName )
     118             :             {
     119           0 :                 if ( rNewRegistrations.find( *pRegistrationName ) == rNewRegistrations.end() )
     120           0 :                     xRegistrations->revokeDatabaseLocation( *pRegistrationName );
     121           0 :             }
     122             :         }
     123           0 :         catch( const Exception& )
     124             :         {
     125             :                         //DBG_UNHANDLED_EXCEPTION();
     126             :         }
     127             :     }
     128             : 
     129             : 
     130           0 : }   // namespace svx
     131             : 
     132             : 
     133             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10