summaryrefslogtreecommitdiff
path: root/i18npool/source/numberformatcode/numberformatcode.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'i18npool/source/numberformatcode/numberformatcode.cxx')
-rw-r--r--i18npool/source/numberformatcode/numberformatcode.cxx304
1 files changed, 304 insertions, 0 deletions
diff --git a/i18npool/source/numberformatcode/numberformatcode.cxx b/i18npool/source/numberformatcode/numberformatcode.cxx
new file mode 100644
index 000000000000..8f5f926cc728
--- /dev/null
+++ b/i18npool/source/numberformatcode/numberformatcode.cxx
@@ -0,0 +1,304 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+// MARKER(update_precomp.py): autogen include statement, do not remove
+#include "precompiled_i18npool.hxx"
+
+#include <numberformatcode.hxx>
+#include <com/sun/star/i18n/KNumberFormatUsage.hpp>
+#include <com/sun/star/i18n/KNumberFormatType.hpp>
+
+
+
+NumberFormatCodeMapper::NumberFormatCodeMapper(
+ const ::com::sun::star::uno::Reference <
+ ::com::sun::star::lang::XMultiServiceFactory >& rxMSF )
+ :
+ xMSF( rxMSF ),
+ bFormatsValid( sal_False )
+{
+}
+
+
+NumberFormatCodeMapper::~NumberFormatCodeMapper()
+{
+}
+
+
+::com::sun::star::i18n::NumberFormatCode SAL_CALL
+NumberFormatCodeMapper::getDefault( sal_Int16 formatType, sal_Int16 formatUsage, const ::com::sun::star::lang::Locale& rLocale ) throw(::com::sun::star::uno::RuntimeException)
+{
+
+ ::rtl::OUString elementType = mapElementTypeShortToString(formatType);
+ ::rtl::OUString elementUsage = mapElementUsageShortToString(formatUsage);
+
+ getFormats( rLocale );
+
+ for(sal_Int32 i = 0; i < aFormatSeq.getLength(); i++) {
+ if(aFormatSeq[i].isDefault && aFormatSeq[i].formatType == elementType &&
+ aFormatSeq[i].formatUsage == elementUsage) {
+ com::sun::star::i18n::NumberFormatCode anumberFormatCode(formatType,
+ formatUsage,
+ aFormatSeq[i].formatCode,
+ aFormatSeq[i].formatName,
+ aFormatSeq[i].formatKey,
+ aFormatSeq[i].formatIndex,
+ sal_True);
+ return anumberFormatCode;
+ }
+ }
+ com::sun::star::i18n::NumberFormatCode defaultNumberFormatCode;
+ return defaultNumberFormatCode;
+}
+
+
+
+::com::sun::star::i18n::NumberFormatCode SAL_CALL
+NumberFormatCodeMapper::getFormatCode( sal_Int16 formatIndex, const ::com::sun::star::lang::Locale& rLocale ) throw(::com::sun::star::uno::RuntimeException)
+{
+ getFormats( rLocale );
+
+ for(sal_Int32 i = 0; i < aFormatSeq.getLength(); i++) {
+ if(aFormatSeq[i].formatIndex == formatIndex) {
+ com::sun::star::i18n::NumberFormatCode anumberFormatCode(mapElementTypeStringToShort(aFormatSeq[i].formatType),
+ mapElementUsageStringToShort(aFormatSeq[i].formatUsage),
+ aFormatSeq[i].formatCode,
+ aFormatSeq[i].formatName,
+ aFormatSeq[i].formatKey,
+ aFormatSeq[i].formatIndex,
+ aFormatSeq[i].isDefault);
+ return anumberFormatCode;
+ }
+ }
+ com::sun::star::i18n::NumberFormatCode defaultNumberFormatCode;
+ return defaultNumberFormatCode;
+
+}
+
+
+
+::com::sun::star::uno::Sequence< ::com::sun::star::i18n::NumberFormatCode > SAL_CALL
+NumberFormatCodeMapper::getAllFormatCode( sal_Int16 formatUsage, const ::com::sun::star::lang::Locale& rLocale ) throw(::com::sun::star::uno::RuntimeException)
+{
+ getFormats( rLocale );
+
+ sal_Int32 i, count;
+ count = 0;
+ for(i = 0; i < aFormatSeq.getLength(); i++) {
+ sal_Int16 elementUsage = mapElementUsageStringToShort(aFormatSeq[i].formatUsage);
+ if( elementUsage == formatUsage)
+ count++;
+ }
+
+ ::com::sun::star::uno::Sequence<com::sun::star::i18n::NumberFormatCode> seq(count);
+ sal_Int32 j = 0;
+ for(i = 0; i < aFormatSeq.getLength(); i++) {
+ sal_Int16 elementUsage = mapElementUsageStringToShort(aFormatSeq[i].formatUsage);
+ if( elementUsage == formatUsage) {
+ seq[j] = com::sun::star::i18n::NumberFormatCode(mapElementTypeStringToShort(aFormatSeq[i].formatType),
+ formatUsage,
+ aFormatSeq[i].formatCode,
+ aFormatSeq[i].formatName,
+ aFormatSeq[i].formatKey,
+ aFormatSeq[i].formatIndex,
+ aFormatSeq[i].isDefault);
+ j++;
+ }
+ }
+ return seq;
+
+}
+
+
+::com::sun::star::uno::Sequence< ::com::sun::star::i18n::NumberFormatCode > SAL_CALL
+NumberFormatCodeMapper::getAllFormatCodes( const ::com::sun::star::lang::Locale& rLocale ) throw(::com::sun::star::uno::RuntimeException)
+{
+ getFormats( rLocale );
+
+ ::com::sun::star::uno::Sequence<com::sun::star::i18n::NumberFormatCode> seq(aFormatSeq.getLength());
+ for(sal_Int32 i = 0; i < aFormatSeq.getLength(); i++)
+ {
+ seq[i] = com::sun::star::i18n::NumberFormatCode(mapElementTypeStringToShort(aFormatSeq[i].formatType),
+ mapElementUsageStringToShort(aFormatSeq[i].formatUsage),
+ aFormatSeq[i].formatCode,
+ aFormatSeq[i].formatName,
+ aFormatSeq[i].formatKey,
+ aFormatSeq[i].formatIndex,
+ aFormatSeq[i].isDefault);
+ }
+ return seq;
+}
+
+
+// --- private implementation -----------------------------------------
+
+void NumberFormatCodeMapper::setupLocale( const ::com::sun::star::lang::Locale& rLocale )
+{
+ if ( aLocale.Country != rLocale.Country
+ || aLocale.Language != rLocale.Language
+ || aLocale.Variant != rLocale.Variant )
+ {
+ bFormatsValid = sal_False;
+ aLocale = rLocale;
+ }
+}
+
+
+void NumberFormatCodeMapper::getFormats( const ::com::sun::star::lang::Locale& rLocale )
+{
+ setupLocale( rLocale );
+ if ( !bFormatsValid )
+ {
+ createLocaleDataObject();
+ if( !xlocaleData.is() )
+ aFormatSeq = ::com::sun::star::uno::Sequence< ::com::sun::star::i18n::FormatElement > (0);
+ else
+ aFormatSeq = xlocaleData->getAllFormats( aLocale );
+ bFormatsValid = sal_True;
+ }
+}
+
+
+::rtl::OUString
+NumberFormatCodeMapper::mapElementTypeShortToString(sal_Int16 formatType)
+{
+
+ switch ( formatType )
+ {
+ case com::sun::star::i18n::KNumberFormatType::SHORT :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "short" ) );
+ case com::sun::star::i18n::KNumberFormatType::MEDIUM :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "medium" ) );
+ case com::sun::star::i18n::KNumberFormatType::LONG :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "long" ) );
+ }
+ return ::rtl::OUString();
+}
+
+sal_Int16
+NumberFormatCodeMapper::mapElementTypeStringToShort(const ::rtl::OUString& formatType)
+{
+ if(formatType.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "short" ) ))
+ return com::sun::star::i18n::KNumberFormatType::SHORT;
+ if(formatType.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "medium" ) ))
+ return com::sun::star::i18n::KNumberFormatType::MEDIUM;
+ if(formatType.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "long" ) ))
+ return com::sun::star::i18n::KNumberFormatType::LONG;
+
+ return com::sun::star::i18n::KNumberFormatType::SHORT;
+}
+
+::rtl::OUString
+NumberFormatCodeMapper::mapElementUsageShortToString(sal_Int16 formatUsage)
+{
+ switch ( formatUsage )
+ {
+ case com::sun::star::i18n::KNumberFormatUsage::DATE :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "DATE" ) );
+ case com::sun::star::i18n::KNumberFormatUsage::TIME :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "TIME" ) );
+ case com::sun::star::i18n::KNumberFormatUsage::DATE_TIME :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "DATE_TIME" ) );
+ case com::sun::star::i18n::KNumberFormatUsage::FIXED_NUMBER :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "FIXED_NUMBER" ) );
+ case com::sun::star::i18n::KNumberFormatUsage::FRACTION_NUMBER :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "FRACTION_NUMBER" ) );
+ case com::sun::star::i18n::KNumberFormatUsage::PERCENT_NUMBER :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PERCENT_NUMBER" ) );
+ case com::sun::star::i18n::KNumberFormatUsage::CURRENCY :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "CURRENCY" ) );
+ case com::sun::star::i18n::KNumberFormatUsage::SCIENTIFIC_NUMBER :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "SCIENTIFIC_NUMBER" ) );
+ }
+ return ::rtl::OUString();
+}
+
+
+sal_Int16
+NumberFormatCodeMapper::mapElementUsageStringToShort(const ::rtl::OUString& formatUsage)
+{
+ if(formatUsage.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "DATE" ) ))
+ return com::sun::star::i18n::KNumberFormatUsage::DATE;
+ if(formatUsage.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "TIME" ) ))
+ return com::sun::star::i18n::KNumberFormatUsage::TIME;
+ if(formatUsage.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "DATE_TIME" ) ))
+ return com::sun::star::i18n::KNumberFormatUsage::DATE_TIME;
+ if(formatUsage.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "FIXED_NUMBER" ) ))
+ return com::sun::star::i18n::KNumberFormatUsage::FIXED_NUMBER;
+ if(formatUsage.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "FRACTION_NUMBER" ) ))
+ return com::sun::star::i18n::KNumberFormatUsage::FRACTION_NUMBER;
+ if(formatUsage.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "PERCENT_NUMBER" ) ))
+ return com::sun::star::i18n::KNumberFormatUsage::PERCENT_NUMBER;
+ if(formatUsage.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "CURRENCY" ) ))
+ return com::sun::star::i18n::KNumberFormatUsage::CURRENCY;
+ if(formatUsage.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "SCIENTIFIC_NUMBER" ) ))
+ return com::sun::star::i18n::KNumberFormatUsage::SCIENTIFIC_NUMBER;
+
+ return 0;
+}
+
+
+void
+NumberFormatCodeMapper::createLocaleDataObject() {
+
+ if(xlocaleData.is())
+ return;
+
+ ::com::sun::star::uno::Reference < ::com::sun::star::uno::XInterface >
+ xI = xMSF->createInstance(
+ ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.i18n.LocaleData" ) ));
+
+ if ( xI.is() ) {
+ ::com::sun::star::uno::Any x = xI->queryInterface( ::getCppuType((const ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData >*)0) );
+ x >>= xlocaleData;
+ }
+}
+
+::rtl::OUString SAL_CALL
+NumberFormatCodeMapper::getImplementationName(void)
+ throw( ::com::sun::star::uno::RuntimeException )
+{
+ return ::rtl::OUString::createFromAscii("com.sun.star.i18n.NumberFormatCodeMapper");
+}
+
+const sal_Char cNumFormat[] = "com.sun.star.i18n.NumberFormatMapper";
+
+sal_Bool SAL_CALL
+NumberFormatCodeMapper::supportsService(const rtl::OUString& rServiceName)
+ throw( ::com::sun::star::uno::RuntimeException )
+{
+ return !rServiceName.compareToAscii(cNumFormat);
+}
+
+::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
+NumberFormatCodeMapper::getSupportedServiceNames(void) throw( ::com::sun::star::uno::RuntimeException )
+{
+ ::com::sun::star::uno::Sequence< ::rtl::OUString > aRet(1);
+ aRet[0] = ::rtl::OUString::createFromAscii(cNumFormat);
+ return aRet;
+}
+