LCOV - code coverage report
Current view: top level - unotools/source/i18n - calendarwrapper.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 68 116 58.6 %
Date: 2015-06-13 12:38:46 Functions: 21 24 87.5 %
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 <rtl/strbuf.hxx>
      21             : #include <sal/log.hxx>
      22             : #include <unotools/calendarwrapper.hxx>
      23             : #include <com/sun/star/i18n/CalendarFieldIndex.hpp>
      24             : #include <com/sun/star/i18n/LocaleCalendar2.hpp>
      25             : 
      26             : using namespace ::com::sun::star;
      27             : using namespace ::com::sun::star::i18n;
      28             : using namespace ::com::sun::star::uno;
      29             : 
      30         228 : CalendarWrapper::CalendarWrapper(
      31             :             const Reference< uno::XComponentContext > & rxContext
      32             :             )
      33             :         :
      34         228 :         aEpochStart( Date( 1, 1, 1970 ) )
      35             : {
      36         228 :     xC = LocaleCalendar2::create(rxContext);
      37         228 : }
      38             : 
      39         186 : CalendarWrapper::~CalendarWrapper()
      40             : {
      41         186 : }
      42             : 
      43         714 : void CalendarWrapper::loadDefaultCalendar( const ::com::sun::star::lang::Locale& rLocale )
      44             : {
      45             :     try
      46             :     {
      47         714 :         if ( xC.is() )
      48         714 :             xC->loadDefaultCalendar( rLocale );
      49             :     }
      50           0 :     catch (const Exception& e)
      51             :     {
      52             :         SAL_WARN( "unotools.i18n", "loadDefaultCalendar: Exception caught " << e.Message );
      53             :     }
      54         714 : }
      55             : 
      56          12 : void CalendarWrapper::loadCalendar( const OUString& rUniqueID, const ::com::sun::star::lang::Locale& rLocale )
      57             : {
      58             :     try
      59             :     {
      60          12 :         if ( xC.is() )
      61          12 :             xC->loadCalendar( rUniqueID, rLocale );
      62             :     }
      63           0 :     catch (const Exception& e)
      64             :     {
      65             :         SAL_WARN( "unotools.i18n", "loadCalendar: Exception caught requested: "
      66             :             << rUniqueID << "   Locale: " << rLocale.Language << "_" << rLocale.Country << " " << e.Message );
      67             :     }
      68          12 : }
      69             : 
      70           2 : ::com::sun::star::uno::Sequence< OUString > CalendarWrapper::getAllCalendars( const ::com::sun::star::lang::Locale& rLocale ) const
      71             : {
      72             :     try
      73             :     {
      74           2 :         if ( xC.is() )
      75           2 :             return xC->getAllCalendars( rLocale );
      76             :     }
      77           0 :     catch (const Exception& e)
      78             :     {
      79             :         SAL_WARN( "unotools.i18n", "getAllCalendars: Exception caught " << e.Message );
      80             :     }
      81             : 
      82           0 :     return ::com::sun::star::uno::Sequence< OUString > (0);
      83             : }
      84             : 
      85        3414 : OUString CalendarWrapper::getUniqueID() const
      86             : {
      87             :     try
      88             :     {
      89        3414 :         if ( xC.is() )
      90        3414 :             return xC->getUniqueID();
      91             :     }
      92           0 :     catch (const Exception& e)
      93             :     {
      94             :         SAL_WARN( "unotools.i18n", "getUniqueID: Exception caught " << e.Message );
      95             :     }
      96           0 :     return OUString();
      97             : }
      98             : 
      99           6 : void CalendarWrapper::setDateTime( double fTimeInDays )
     100             : {
     101             :     try
     102             :     {
     103           6 :         if ( xC.is() )
     104           6 :             xC->setDateTime( fTimeInDays );
     105             :     }
     106           0 :     catch (const Exception& e)
     107             :     {
     108             :         SAL_WARN( "unotools.i18n", "setDateTime: Exception caught " << e.Message );
     109             :     }
     110           6 : }
     111             : 
     112           6 : double CalendarWrapper::getDateTime() const
     113             : {
     114             :     try
     115             :     {
     116           6 :         if ( xC.is() )
     117           6 :             return xC->getDateTime();
     118             :     }
     119           0 :     catch (const Exception& e)
     120             :     {
     121             :         SAL_WARN( "unotools.i18n", "getDateTime: Exception caught " << e.Message );
     122             :     }
     123           0 :     return 0.0;
     124             : }
     125             : 
     126        2542 : void CalendarWrapper::setLocalDateTime( double fTimeInDays )
     127             : {
     128             :     try
     129             :     {
     130        2542 :         if ( xC.is() )
     131             :         {
     132        2542 :             xC->setLocalDateTime( fTimeInDays );
     133             :         }
     134             :     }
     135           0 :     catch (const Exception& e)
     136             :     {
     137             :         SAL_WARN( "unotools.i18n",  "setLocalDateTime: Exception caught " << e.Message );
     138             :     }
     139        2542 : }
     140             : 
     141         656 : double CalendarWrapper::getLocalDateTime() const
     142             : {
     143             :     try
     144             :     {
     145         656 :         if ( xC.is() )
     146             :         {
     147         656 :             return xC->getLocalDateTime();
     148             :         }
     149             :     }
     150           0 :     catch (const Exception& e)
     151             :     {
     152             :         SAL_WARN( "unotools.i18n",  "getLocalDateTime: Exception caught " << e.Message );
     153             :     }
     154           0 :     return 0.0;
     155             : }
     156             : 
     157        2623 : void CalendarWrapper::setValue( sal_Int16 nFieldIndex, sal_Int16 nValue )
     158             : {
     159             :     try
     160             :     {
     161        2623 :         if ( xC.is() )
     162        2623 :             xC->setValue( nFieldIndex, nValue );
     163             :     }
     164           0 :     catch (const Exception& e)
     165             :     {
     166             :         SAL_WARN( "unotools.i18n",  "setValue: Exception caught " << e.Message );
     167             :     }
     168        2623 : }
     169             : 
     170         656 : bool CalendarWrapper::isValid() const
     171             : {
     172             :     try
     173             :     {
     174         656 :         if ( xC.is() )
     175         656 :             return xC->isValid();
     176             :     }
     177           0 :     catch (const Exception& e)
     178             :     {
     179             :         SAL_WARN( "unotools.i18n",  "isValid: Exception caught " << e.Message );
     180             :     }
     181           0 :     return false;
     182             : }
     183             : 
     184         146 : sal_Int16 CalendarWrapper::getValue( sal_Int16 nFieldIndex ) const
     185             : {
     186             :     try
     187             :     {
     188         146 :         if ( xC.is() )
     189         146 :             return xC->getValue( nFieldIndex );
     190             :     }
     191           0 :     catch (const Exception& e)
     192             :     {
     193             :         SAL_WARN( "unotools.i18n", "getValue: Exception caught " << e.Message );
     194             :     }
     195           0 :     return 0;
     196             : }
     197             : 
     198           0 : void CalendarWrapper::addValue( sal_Int16 nFieldIndex, sal_Int32 nAmount )
     199             : {
     200             :     try
     201             :     {
     202           0 :         if ( xC.is() )
     203           0 :             xC->addValue( nFieldIndex, nAmount );
     204             :     }
     205           0 :     catch (const Exception& e)
     206             :     {
     207             :         SAL_WARN( "unotools.i18n", "addValue: Exception caught " << e.Message );
     208             :     }
     209           0 : }
     210             : 
     211           0 : sal_Int16 CalendarWrapper::getFirstDayOfWeek() const
     212             : {
     213             :     try
     214             :     {
     215           0 :         if ( xC.is() )
     216           0 :             return xC->getFirstDayOfWeek();
     217             :     }
     218           0 :     catch (const Exception& e)
     219             :     {
     220             :         SAL_WARN( "unotools.i18n", "getFirstDayOfWeek: Exception caught " << e.Message );
     221             :     }
     222           0 :     return 0;
     223             : }
     224             : 
     225        4986 : sal_Int16 CalendarWrapper::getNumberOfMonthsInYear() const
     226             : {
     227             :     try
     228             :     {
     229        4986 :         if ( xC.is() )
     230        4986 :             return xC->getNumberOfMonthsInYear();
     231             :     }
     232           0 :     catch (const Exception& e)
     233             :     {
     234             :         SAL_WARN( "unotools.i18n", "getNumberOfMonthsInYear: Exception caught " << e.Message );
     235             :     }
     236           0 :     return 0;
     237             : }
     238             : 
     239        1978 : sal_Int16 CalendarWrapper::getNumberOfDaysInWeek() const
     240             : {
     241             :     try
     242             :     {
     243        1978 :         if ( xC.is() )
     244        1978 :             return xC->getNumberOfDaysInWeek();
     245             :     }
     246           0 :     catch (const Exception& e)
     247             :     {
     248             :         SAL_WARN( "unotools.i18n", "getNumberOfDaysInWeek: Exception caught " << e.Message );
     249             :     }
     250           0 :     return 0;
     251             : }
     252             : 
     253        1349 : ::com::sun::star::uno::Sequence< ::com::sun::star::i18n::CalendarItem2 > CalendarWrapper::getMonths() const
     254             : {
     255             :     try
     256             :     {
     257        1349 :         if ( xC.is() )
     258        1349 :             return xC->getMonths2();
     259             :     }
     260           0 :     catch (const Exception& e)
     261             :     {
     262             :         SAL_WARN( "unotools.i18n", "getMonths: Exception caught " << e.Message );
     263             :     }
     264           0 :     return ::com::sun::star::uno::Sequence< ::com::sun::star::i18n::CalendarItem2 > (0);
     265             : }
     266             : 
     267         561 : ::com::sun::star::uno::Sequence< ::com::sun::star::i18n::CalendarItem2 > CalendarWrapper::getDays() const
     268             : {
     269             :     try
     270             :     {
     271         561 :         if ( xC.is() )
     272         561 :             return xC->getDays2();
     273             :     }
     274           0 :     catch (const Exception& e)
     275             :     {
     276             :         SAL_WARN( "unotools.i18n", "getDays: Exception caught " << e.Message );
     277             :     }
     278           0 :     return ::com::sun::star::uno::Sequence< ::com::sun::star::i18n::CalendarItem2 > (0);
     279             : }
     280             : 
     281         265 : OUString CalendarWrapper::getDisplayName( sal_Int16 nCalendarDisplayIndex, sal_Int16 nIdx, sal_Int16 nNameType ) const
     282             : {
     283             :     try
     284             :     {
     285         265 :         if ( xC.is() )
     286         265 :             return xC->getDisplayName( nCalendarDisplayIndex, nIdx, nNameType );
     287             :     }
     288           0 :     catch (const Exception& e)
     289             :     {
     290             :         SAL_WARN( "unotools.i18n", "getDisplayName: Exception caught " << e.Message );
     291             :     }
     292           0 :     return OUString();
     293             : }
     294             : 
     295             : // --- XExtendedCalendar -----------------------------------------------------
     296             : 
     297        4376 : OUString CalendarWrapper::getDisplayString( sal_Int32 nCalendarDisplayCode, sal_Int16 nNativeNumberMode ) const
     298             : {
     299             :     try
     300             :     {
     301        4376 :         if ( xC.is() )
     302        4376 :             return xC->getDisplayString( nCalendarDisplayCode, nNativeNumberMode );
     303             :     }
     304           0 :     catch (const Exception& e)
     305             :     {
     306             :         SAL_WARN( "unotools.i18n", "getDisplayString: Exception caught " << e.Message );
     307             :     }
     308           0 :     return OUString();
     309             : }
     310             : 
     311             : // --- XCalendar3 ------------------------------------------------------------
     312             : 
     313           0 : ::com::sun::star::i18n::Calendar2 CalendarWrapper::getLoadedCalendar() const
     314             : {
     315             :     try
     316             :     {
     317           0 :         if ( xC.is() )
     318           0 :             return xC->getLoadedCalendar2();
     319             :     }
     320           0 :     catch (const Exception& e)
     321             :     {
     322             :         SAL_WARN( "unotools.i18n", "getLoadedCalendar2: Exception caught " << e.Message );
     323             :     }
     324           0 :     return ::com::sun::star::i18n::Calendar2();
     325             : }
     326             : 
     327         561 : ::com::sun::star::uno::Sequence< ::com::sun::star::i18n::CalendarItem2 > CalendarWrapper::getGenitiveMonths() const
     328             : {
     329             :     try
     330             :     {
     331         561 :         if ( xC.is() )
     332         561 :             return xC->getGenitiveMonths2();
     333             :     }
     334           0 :     catch (const Exception& e)
     335             :     {
     336             :         SAL_WARN( "unotools.i18n", "getGenitiveMonths: Exception caught " << e.Message );
     337             :     }
     338           0 :     return ::com::sun::star::uno::Sequence< ::com::sun::star::i18n::CalendarItem2 > (0);
     339             : }
     340             : 
     341         561 : ::com::sun::star::uno::Sequence< ::com::sun::star::i18n::CalendarItem2 > CalendarWrapper::getPartitiveMonths() const
     342             : {
     343             :     try
     344             :     {
     345         561 :         if ( xC.is() )
     346         561 :             return xC->getPartitiveMonths2();
     347             :     }
     348           0 :     catch (const Exception& e)
     349             :     {
     350             :         SAL_WARN( "unotools.i18n", "getPartitiveMonths: Exception caught " << e.Message );
     351             :     }
     352           0 :     return ::com::sun::star::uno::Sequence< ::com::sun::star::i18n::CalendarItem2 > (0);
     353             : }
     354             : 
     355             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11