summaryrefslogtreecommitdiff
path: root/i18npool/source/numberformatcode
diff options
context:
space:
mode:
authorBustamam Harun <bustamam@openoffice.org>2001-08-30 22:33:17 +0000
committerBustamam Harun <bustamam@openoffice.org>2001-08-30 22:33:17 +0000
commit1395c46dcc16501335aa67ce9c0799cf05ff7eea (patch)
tree0aed1027bea2901e2d1119341d3bddbeaae5a732 /i18npool/source/numberformatcode
parent675183881668debcab03cfccadf11bc117919a58 (diff)
Add localedata, registerservices, numberformatcode, defaultnumberingprovider
Diffstat (limited to 'i18npool/source/numberformatcode')
-rw-r--r--i18npool/source/numberformatcode/makefile.mk42
-rw-r--r--i18npool/source/numberformatcode/numberformatcode.cxx278
2 files changed, 320 insertions, 0 deletions
diff --git a/i18npool/source/numberformatcode/makefile.mk b/i18npool/source/numberformatcode/makefile.mk
new file mode 100644
index 000000000000..65680552ad69
--- /dev/null
+++ b/i18npool/source/numberformatcode/makefile.mk
@@ -0,0 +1,42 @@
+#*************************************************************************
+#*
+#* $RCSfile: makefile.mk,v $
+#*
+#* makefile
+#*
+#* Erstellung MT 25.6.98
+#*
+#* Letzte Aenderung $Author: bustamam $ $Date: 2001-08-30 23:33:17 $
+#*
+#* $Revision: 1.1 $
+#*
+#* $Source: /zpool/svn/migration/cvs_rep_09_09_08/code/i18npool/source/numberformatcode/makefile.mk,v $
+#*
+#* Copyright (c) 1998, Star Division Corp.
+#*
+#*************************************************************************
+
+PRJ=..$/..
+
+PRJNAME=i18npool
+TARGET=numberformatcode
+
+ENABLE_EXCEPTIONS=TRUE
+
+# --- Settings -----------------------------------------------------
+
+.INCLUDE : svpre.mk
+.INCLUDE : settings.mk
+.INCLUDE : sv.mk
+
+# --- Files --------------------------------------------------------
+
+SLOFILES= \
+ $(SLO)$/numberformatcode.obj
+
+# --- Targets ------------------------------------------------------
+
+.INCLUDE : target.mk
+
+
+
diff --git a/i18npool/source/numberformatcode/numberformatcode.cxx b/i18npool/source/numberformatcode/numberformatcode.cxx
new file mode 100644
index 000000000000..c8cd24f3299c
--- /dev/null
+++ b/i18npool/source/numberformatcode/numberformatcode.cxx
@@ -0,0 +1,278 @@
+/*************************************************************************
+#*
+#* $RCSfile: numberformatcode.cxx,v $
+#*
+#* NumberFormatCodeMapper
+#*
+#* Creation: SSE 08/12/2000
+#*
+#* Last change: $Author: bustamam $ $Date: 2001-08-30 23:33:17 $
+#*
+#* $Revision: 1.1 $
+#*
+#* $Source: /zpool/svn/migration/cvs_rep_09_09_08/code/i18npool/source/numberformatcode/numberformatcode.cxx,v $
+#*
+#* Copyright (c) 2000 Sun Microsystems Inc.
+#*
+#*************************************************************************/
+
+#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" ) );
+ break;
+ case com::sun::star::i18n::KNumberFormatType::MEDIUM :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "medium" ) );
+ break;
+ case com::sun::star::i18n::KNumberFormatType::LONG :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "long" ) );
+ break;
+ }
+ 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" ) );
+ break;
+ case com::sun::star::i18n::KNumberFormatUsage::TIME :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "TIME" ) );
+ break;
+ case com::sun::star::i18n::KNumberFormatUsage::DATE_TIME :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "DATE_TIME" ) );
+ break;
+ case com::sun::star::i18n::KNumberFormatUsage::FIXED_NUMBER :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "FIXED_NUMBER" ) );
+ break;
+ case com::sun::star::i18n::KNumberFormatUsage::FRACTION_NUMBER :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "FRACTION_NUMBER" ) );
+ break;
+ case com::sun::star::i18n::KNumberFormatUsage::PERCENT_NUMBER :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PERCENT_NUMBER" ) );
+ break;
+ case com::sun::star::i18n::KNumberFormatUsage::CURRENCY :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "CURRENCY" ) );
+ break;
+ case com::sun::star::i18n::KNumberFormatUsage::SCIENTIFIC_NUMBER :
+ return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "SCIENTIFIC_NUMBER" ) );
+ break;
+ }
+ 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;
+ }
+}