LCOV - code coverage report
Current view: top level - sc/source/core/data - globalx.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 30 46 65.2 %
Date: 2014-04-11 Functions: 2 2 100.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 "callform.hxx"
      21             : #include "global.hxx"
      22             : #include <tools/urlobj.hxx>
      23             : #include <ucbhelper/content.hxx>
      24             : #include <unotools/localfilehelper.hxx>
      25             : 
      26             : #include <unotools/pathoptions.hxx>
      27             : 
      28             : #include <com/sun/star/sdbc/XResultSet.hpp>
      29             : #include <com/sun/star/sdbc/XRow.hpp>
      30             : #include <com/sun/star/ucb/XCommandEnvironment.hpp>
      31             : #include <com/sun/star/ucb/XContentAccess.hpp>
      32             : 
      33             : #include <com/sun/star/i18n/OrdinalSuffix.hpp>
      34             : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
      35             : #include <comphelper/processfactory.hxx>
      36             : #include <comphelper/string.hxx>
      37             : #include <unotools/localedatawrapper.hxx>
      38             : 
      39             : 
      40             : using namespace ::com::sun::star;
      41             : using namespace ::com::sun::star::uno;
      42             : using namespace ::com::sun::star::ucb;
      43             : 
      44             : 
      45          34 : void ScGlobal::InitAddIns()
      46             : {
      47             :     // multi paths separated by semicolons
      48          34 :     SvtPathOptions aPathOpt;
      49          68 :     OUString aMultiPath = aPathOpt.GetAddinPath();
      50          34 :     if (aMultiPath.isEmpty())
      51          34 :         return;
      52             : 
      53          34 :     sal_Int32 nTokens = comphelper::string::getTokenCount(aMultiPath, ';');
      54          68 :     for (sal_Int32 j = 0; j < nTokens; ++j)
      55             :     {
      56          34 :         OUString aPath = comphelper::string::getToken(aMultiPath, j, ';');
      57          34 :         if (aPath.isEmpty())
      58           0 :             continue;
      59             : 
      60             :         //  use LocalFileHelper to convert the path to a URL that always points
      61             :         //  to the file on the server
      62          68 :         OUString aUrl;
      63          34 :         if ( utl::LocalFileHelper::ConvertPhysicalNameToURL( aPath, aUrl ) )
      64          34 :             aPath = aUrl;
      65             : 
      66          68 :         INetURLObject aObj;
      67          34 :         aObj.SetSmartURL( aPath );
      68          34 :         aObj.setFinalSlash();
      69             :         try
      70             :         {
      71             :             ::ucbhelper::Content aCnt( aObj.GetMainURL(INetURLObject::NO_DECODE),
      72             :                 Reference< XCommandEnvironment >(),
      73          34 :                 comphelper::getProcessComponentContext() );
      74          68 :             Reference< sdbc::XResultSet > xResultSet;
      75          68 :             Sequence< OUString > aProps;
      76             :             try
      77             :             {
      78          34 :                 xResultSet = aCnt.createCursor(
      79           0 :                     aProps, ::ucbhelper::INCLUDE_DOCUMENTS_ONLY );
      80             :             }
      81          34 :             catch ( Exception& )
      82             :             {
      83             :                 // ucb may throw different exceptions on failure now
      84             :                 // no assertion if AddIn directory doesn't exist
      85             :             }
      86             : 
      87          34 :             if ( xResultSet.is() )
      88             :             {
      89           0 :                 Reference< sdbc::XRow > xRow( xResultSet, UNO_QUERY );
      90             :                 Reference< XContentAccess >
      91           0 :                     xContentAccess( xResultSet, UNO_QUERY );
      92             :                 try
      93             :                 {
      94           0 :                     if ( xResultSet->first() )
      95             :                     {
      96           0 :                         do
      97             :                         {
      98           0 :                             OUString aId = xContentAccess->queryContentIdentifierString();
      99           0 :                             InitExternalFunc( aId );
     100             :                         }
     101           0 :                         while ( xResultSet->next() );
     102             :                     }
     103             :                 }
     104           0 :                 catch ( Exception& )
     105             :                 {
     106             :                     OSL_FAIL( "ResultSetException caught!" );
     107           0 :                 }
     108          34 :             }
     109             :         }
     110           0 :         catch ( Exception& )
     111             :         {
     112             :             OSL_FAIL( "Exception caught!" );
     113             :         }
     114           0 :         catch ( ... )
     115             :         {
     116             :             OSL_FAIL( "unexpected exception caught!" );
     117             :         }
     118          68 :     }
     119             : }
     120             : 
     121             : 
     122           2 : OUString ScGlobal::GetOrdinalSuffix( sal_Int32 nNumber)
     123             : {
     124             :     try
     125             :     {
     126           2 :         if (!xOrdinalSuffix.is())
     127             :         {
     128           1 :             xOrdinalSuffix = i18n::OrdinalSuffix::create( ::comphelper::getProcessComponentContext() );
     129             :         }
     130           2 :         uno::Sequence< OUString > aSuffixes = xOrdinalSuffix->getOrdinalSuffix( nNumber,
     131           2 :                 ScGlobal::pLocaleData->getLanguageTag().getLocale());
     132           2 :         if ( aSuffixes.getLength() > 0 )
     133           2 :             return aSuffixes[0];
     134             :         else
     135           0 :             return OUString();
     136             :     }
     137           0 :     catch ( Exception& )
     138             :     {
     139             :         OSL_FAIL( "GetOrdinalSuffix: exception caught during init" );
     140             :     }
     141           0 :     return OUString();
     142             : }
     143             : 
     144             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10