91ba9654ba
...so that its TOOLS_WARN_EXCEPTION can be used in comphelper/source/misc/logging.cxx in a follow-up commit. (And while at it, rename from diangose_ex.h to the more appropriate diagnose_ex.hxx. The comphelper module is sufficiently low-level for this immediate use case, so use that at least for now; o3tl might be even more suitable but doesn't have a Library until now. Also, for the immediate use case it would have sufficed to only break DbgGetCaughtException, exceptionToString, TOOLS_WARN_EXCEPTION, TOOLS_WARN_EXCEPTION_IF, and TOOLS_INFO_EXCEPTION out of include/tools/diagnose_ex.h into an additional new include/comphelper/diagnose_ex.hxx, but its probably easier overall to just move the complete include file as is.) Change-Id: I9f3222d4ccf1a9ac29d7eb9ba1530d53e2affaee Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138451 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
342 lines
7.8 KiB
C++
342 lines
7.8 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
#include <sal/log.hxx>
|
|
#include <unotools/calendarwrapper.hxx>
|
|
#include <i18nlangtag/languagetag.hxx>
|
|
#include <com/sun/star/i18n/LocaleCalendar2.hpp>
|
|
#include <comphelper/diagnose_ex.hxx>
|
|
|
|
using namespace ::com::sun::star;
|
|
using namespace ::com::sun::star::i18n;
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
CalendarWrapper::CalendarWrapper(
|
|
const Reference< uno::XComponentContext > & rxContext
|
|
)
|
|
:
|
|
aEpochStart( Date( 1, 1, 1970 ) )
|
|
{
|
|
xC = LocaleCalendar2::create(rxContext);
|
|
}
|
|
|
|
CalendarWrapper::~CalendarWrapper()
|
|
{
|
|
}
|
|
|
|
void CalendarWrapper::loadDefaultCalendar( const css::lang::Locale& rLocale, bool bTimeZoneUTC )
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
xC->loadDefaultCalendarTZ( rLocale, (bTimeZoneUTC ? "UTC" : OUString()));
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "loadDefaultCalendar" );
|
|
}
|
|
}
|
|
|
|
void CalendarWrapper::loadCalendar( const OUString& rUniqueID, const css::lang::Locale& rLocale, bool bTimeZoneUTC )
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
xC->loadCalendarTZ( rUniqueID, rLocale, (bTimeZoneUTC ? "UTC" : OUString()));
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "loadCalendar: "
|
|
<< rUniqueID << " Locale: " << LanguageTag::convertToBcp47(rLocale) );
|
|
}
|
|
}
|
|
|
|
css::uno::Sequence< OUString > CalendarWrapper::getAllCalendars( const css::lang::Locale& rLocale ) const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->getAllCalendars( rLocale );
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getAllCalendars" );
|
|
}
|
|
|
|
return {};
|
|
}
|
|
|
|
OUString CalendarWrapper::getUniqueID() const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->getUniqueID();
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getUniqueID" );
|
|
}
|
|
return OUString();
|
|
}
|
|
|
|
void CalendarWrapper::setDateTime( double fTimeInDays )
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
xC->setDateTime( fTimeInDays );
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "setDateTime" );
|
|
}
|
|
}
|
|
|
|
double CalendarWrapper::getDateTime() const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->getDateTime();
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getDateTime" );
|
|
}
|
|
return 0.0;
|
|
}
|
|
|
|
void CalendarWrapper::setLocalDateTime( double fTimeInDays )
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
{
|
|
xC->setLocalDateTime( fTimeInDays );
|
|
}
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "setLocalDateTime" );
|
|
}
|
|
}
|
|
|
|
double CalendarWrapper::getLocalDateTime() const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
{
|
|
return xC->getLocalDateTime();
|
|
}
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getLocalDateTime" );
|
|
}
|
|
return 0.0;
|
|
}
|
|
|
|
void CalendarWrapper::setValue( sal_Int16 nFieldIndex, sal_Int16 nValue )
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
xC->setValue( nFieldIndex, nValue );
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "setValue" );
|
|
}
|
|
}
|
|
|
|
bool CalendarWrapper::isValid() const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->isValid();
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "isValid" );
|
|
}
|
|
return false;
|
|
}
|
|
|
|
sal_Int16 CalendarWrapper::getValue( sal_Int16 nFieldIndex ) const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->getValue( nFieldIndex );
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getValue" );
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
sal_Int16 CalendarWrapper::getFirstDayOfWeek() const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->getFirstDayOfWeek();
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getFirstDayOfWeek" );
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
sal_Int16 CalendarWrapper::getNumberOfMonthsInYear() const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->getNumberOfMonthsInYear();
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getNumberOfMonthsInYear" );
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
sal_Int16 CalendarWrapper::getNumberOfDaysInWeek() const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->getNumberOfDaysInWeek();
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getNumberOfDaysInWeek" );
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
css::uno::Sequence< css::i18n::CalendarItem2 > CalendarWrapper::getMonths() const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->getMonths2();
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getMonths" );
|
|
}
|
|
return {};
|
|
}
|
|
|
|
css::uno::Sequence< css::i18n::CalendarItem2 > CalendarWrapper::getDays() const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->getDays2();
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getDays" );
|
|
}
|
|
return {};
|
|
}
|
|
|
|
OUString CalendarWrapper::getDisplayName( sal_Int16 nCalendarDisplayIndex, sal_Int16 nIdx, sal_Int16 nNameType ) const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->getDisplayName( nCalendarDisplayIndex, nIdx, nNameType );
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getDisplayName" );
|
|
}
|
|
return OUString();
|
|
}
|
|
|
|
// --- XExtendedCalendar -----------------------------------------------------
|
|
|
|
OUString CalendarWrapper::getDisplayString( sal_Int32 nCalendarDisplayCode, sal_Int16 nNativeNumberMode ) const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->getDisplayString( nCalendarDisplayCode, nNativeNumberMode );
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getDisplayString" );
|
|
}
|
|
return OUString();
|
|
}
|
|
|
|
// --- XCalendar3 ------------------------------------------------------------
|
|
|
|
css::i18n::Calendar2 CalendarWrapper::getLoadedCalendar() const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->getLoadedCalendar2();
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getLoadedCalendar2" );
|
|
}
|
|
return css::i18n::Calendar2();
|
|
}
|
|
|
|
css::uno::Sequence< css::i18n::CalendarItem2 > CalendarWrapper::getGenitiveMonths() const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->getGenitiveMonths2();
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getGenitiveMonths" );
|
|
}
|
|
return {};
|
|
}
|
|
|
|
css::uno::Sequence< css::i18n::CalendarItem2 > CalendarWrapper::getPartitiveMonths() const
|
|
{
|
|
try
|
|
{
|
|
if ( xC.is() )
|
|
return xC->getPartitiveMonths2();
|
|
}
|
|
catch (const Exception&)
|
|
{
|
|
TOOLS_WARN_EXCEPTION( "unotools.i18n", "getPartitiveMonths" );
|
|
}
|
|
return {};
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|