xref: /AOO41X/main/unotools/source/misc/syslocale.cxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_unotools.hxx"
30*cdf0e10cSrcweir #ifndef GCC
31*cdf0e10cSrcweir #endif
32*cdf0e10cSrcweir 
33*cdf0e10cSrcweir #include <unotools/syslocale.hxx>
34*cdf0e10cSrcweir #include <tools/string.hxx>
35*cdf0e10cSrcweir #include <unotools/syslocaleoptions.hxx>
36*cdf0e10cSrcweir #include <unotools/localedatawrapper.hxx>
37*cdf0e10cSrcweir #include <comphelper/processfactory.hxx>
38*cdf0e10cSrcweir #include <i18npool/mslangid.hxx>
39*cdf0e10cSrcweir #include <rtl/tencinfo.h>
40*cdf0e10cSrcweir #include <rtl/locale.h>
41*cdf0e10cSrcweir #include <osl/nlsupport.h>
42*cdf0e10cSrcweir 
43*cdf0e10cSrcweir using namespace osl;
44*cdf0e10cSrcweir using namespace com::sun::star;
45*cdf0e10cSrcweir 
46*cdf0e10cSrcweir 
47*cdf0e10cSrcweir SvtSysLocale_Impl*  SvtSysLocale::pImpl = NULL;
48*cdf0e10cSrcweir sal_Int32           SvtSysLocale::nRefCount = 0;
49*cdf0e10cSrcweir 
50*cdf0e10cSrcweir 
51*cdf0e10cSrcweir class SvtSysLocale_Impl : public utl::ConfigurationListener
52*cdf0e10cSrcweir {
53*cdf0e10cSrcweir public:
54*cdf0e10cSrcweir         SvtSysLocaleOptions     aSysLocaleOptions;
55*cdf0e10cSrcweir         LocaleDataWrapper*      pLocaleData;
56*cdf0e10cSrcweir         CharClass*              pCharClass;
57*cdf0e10cSrcweir 
58*cdf0e10cSrcweir                                 	SvtSysLocale_Impl();
59*cdf0e10cSrcweir     virtual                     	~SvtSysLocale_Impl();
60*cdf0e10cSrcweir 
61*cdf0e10cSrcweir     CharClass*                  	GetCharClass();
62*cdf0e10cSrcweir 	virtual void 					ConfigurationChanged( utl::ConfigurationBroadcaster*, sal_uInt32 );
63*cdf0e10cSrcweir };
64*cdf0e10cSrcweir 
65*cdf0e10cSrcweir // -----------------------------------------------------------------------
66*cdf0e10cSrcweir 
67*cdf0e10cSrcweir SvtSysLocale_Impl::SvtSysLocale_Impl() : pCharClass(NULL)
68*cdf0e10cSrcweir {
69*cdf0e10cSrcweir     pLocaleData = new LocaleDataWrapper( ::comphelper::getProcessServiceFactory(), aSysLocaleOptions.GetRealLocale() );
70*cdf0e10cSrcweir 
71*cdf0e10cSrcweir 	// listen for further changes
72*cdf0e10cSrcweir     aSysLocaleOptions.AddListener( this );
73*cdf0e10cSrcweir }
74*cdf0e10cSrcweir 
75*cdf0e10cSrcweir 
76*cdf0e10cSrcweir SvtSysLocale_Impl::~SvtSysLocale_Impl()
77*cdf0e10cSrcweir {
78*cdf0e10cSrcweir     aSysLocaleOptions.RemoveListener( this );
79*cdf0e10cSrcweir     delete pCharClass;
80*cdf0e10cSrcweir     delete pLocaleData;
81*cdf0e10cSrcweir }
82*cdf0e10cSrcweir 
83*cdf0e10cSrcweir CharClass* SvtSysLocale_Impl::GetCharClass()
84*cdf0e10cSrcweir {
85*cdf0e10cSrcweir     if ( !pCharClass )
86*cdf0e10cSrcweir         pCharClass = new CharClass(::comphelper::getProcessServiceFactory(), aSysLocaleOptions.GetRealLocale() );
87*cdf0e10cSrcweir     return pCharClass;
88*cdf0e10cSrcweir }
89*cdf0e10cSrcweir 
90*cdf0e10cSrcweir void SvtSysLocale_Impl::ConfigurationChanged( utl::ConfigurationBroadcaster*, sal_uInt32 nHint )
91*cdf0e10cSrcweir {
92*cdf0e10cSrcweir     MutexGuard aGuard( SvtSysLocale::GetMutex() );
93*cdf0e10cSrcweir 	if ( nHint & SYSLOCALEOPTIONS_HINT_LOCALE )
94*cdf0e10cSrcweir 	{
95*cdf0e10cSrcweir 		com::sun::star::lang::Locale aLocale( aSysLocaleOptions.GetRealLocale() );
96*cdf0e10cSrcweir 		pLocaleData->setLocale( aLocale );
97*cdf0e10cSrcweir 		GetCharClass()->setLocale( aLocale );
98*cdf0e10cSrcweir 	}
99*cdf0e10cSrcweir }
100*cdf0e10cSrcweir 
101*cdf0e10cSrcweir // ====================================================================
102*cdf0e10cSrcweir 
103*cdf0e10cSrcweir SvtSysLocale::SvtSysLocale()
104*cdf0e10cSrcweir {
105*cdf0e10cSrcweir     MutexGuard aGuard( GetMutex() );
106*cdf0e10cSrcweir     if ( !pImpl )
107*cdf0e10cSrcweir         pImpl = new SvtSysLocale_Impl;
108*cdf0e10cSrcweir     ++nRefCount;
109*cdf0e10cSrcweir }
110*cdf0e10cSrcweir 
111*cdf0e10cSrcweir 
112*cdf0e10cSrcweir SvtSysLocale::~SvtSysLocale()
113*cdf0e10cSrcweir {
114*cdf0e10cSrcweir     MutexGuard aGuard( GetMutex() );
115*cdf0e10cSrcweir     if ( !--nRefCount )
116*cdf0e10cSrcweir 	{
117*cdf0e10cSrcweir         delete pImpl;
118*cdf0e10cSrcweir         pImpl = NULL;
119*cdf0e10cSrcweir 	}
120*cdf0e10cSrcweir }
121*cdf0e10cSrcweir 
122*cdf0e10cSrcweir 
123*cdf0e10cSrcweir // static
124*cdf0e10cSrcweir Mutex& SvtSysLocale::GetMutex()
125*cdf0e10cSrcweir {
126*cdf0e10cSrcweir     static Mutex* pMutex = NULL;
127*cdf0e10cSrcweir     if( !pMutex )
128*cdf0e10cSrcweir     {
129*cdf0e10cSrcweir         MutexGuard aGuard( Mutex::getGlobalMutex() );
130*cdf0e10cSrcweir         if( !pMutex )
131*cdf0e10cSrcweir         {
132*cdf0e10cSrcweir             // #i77768# Due to a static reference in the toolkit lib
133*cdf0e10cSrcweir             // we need a mutex that lives longer than the svl library.
134*cdf0e10cSrcweir             // Otherwise the dtor would use a destructed mutex!!
135*cdf0e10cSrcweir             pMutex = new Mutex;
136*cdf0e10cSrcweir         }
137*cdf0e10cSrcweir     }
138*cdf0e10cSrcweir     return *pMutex;
139*cdf0e10cSrcweir }
140*cdf0e10cSrcweir 
141*cdf0e10cSrcweir 
142*cdf0e10cSrcweir const LocaleDataWrapper& SvtSysLocale::GetLocaleData() const
143*cdf0e10cSrcweir {
144*cdf0e10cSrcweir     return *(pImpl->pLocaleData);
145*cdf0e10cSrcweir }
146*cdf0e10cSrcweir 
147*cdf0e10cSrcweir 
148*cdf0e10cSrcweir const LocaleDataWrapper* SvtSysLocale::GetLocaleDataPtr() const
149*cdf0e10cSrcweir {
150*cdf0e10cSrcweir     return pImpl->pLocaleData;
151*cdf0e10cSrcweir }
152*cdf0e10cSrcweir 
153*cdf0e10cSrcweir 
154*cdf0e10cSrcweir const CharClass& SvtSysLocale::GetCharClass() const
155*cdf0e10cSrcweir {
156*cdf0e10cSrcweir     return *(pImpl->GetCharClass());
157*cdf0e10cSrcweir }
158*cdf0e10cSrcweir 
159*cdf0e10cSrcweir 
160*cdf0e10cSrcweir const CharClass* SvtSysLocale::GetCharClassPtr() const
161*cdf0e10cSrcweir {
162*cdf0e10cSrcweir     return pImpl->GetCharClass();
163*cdf0e10cSrcweir }
164*cdf0e10cSrcweir 
165*cdf0e10cSrcweir SvtSysLocaleOptions& SvtSysLocale::GetOptions() const
166*cdf0e10cSrcweir {
167*cdf0e10cSrcweir 	return pImpl->aSysLocaleOptions;
168*cdf0e10cSrcweir }
169*cdf0e10cSrcweir 
170*cdf0e10cSrcweir com::sun::star::lang::Locale SvtSysLocale::GetLocale() const
171*cdf0e10cSrcweir {
172*cdf0e10cSrcweir 	return pImpl->aSysLocaleOptions.GetRealLocale();
173*cdf0e10cSrcweir }
174*cdf0e10cSrcweir 
175*cdf0e10cSrcweir LanguageType SvtSysLocale::GetLanguage() const
176*cdf0e10cSrcweir {
177*cdf0e10cSrcweir 	return pImpl->aSysLocaleOptions.GetRealLanguage();
178*cdf0e10cSrcweir }
179*cdf0e10cSrcweir 
180*cdf0e10cSrcweir com::sun::star::lang::Locale SvtSysLocale::GetUILocale() const
181*cdf0e10cSrcweir {
182*cdf0e10cSrcweir 	return pImpl->aSysLocaleOptions.GetRealUILocale();
183*cdf0e10cSrcweir }
184*cdf0e10cSrcweir 
185*cdf0e10cSrcweir LanguageType SvtSysLocale::GetUILanguage() const
186*cdf0e10cSrcweir {
187*cdf0e10cSrcweir 	return pImpl->aSysLocaleOptions.GetRealUILanguage();
188*cdf0e10cSrcweir }
189*cdf0e10cSrcweir 
190*cdf0e10cSrcweir //------------------------------------------------------------------------
191*cdf0e10cSrcweir 
192*cdf0e10cSrcweir // static
193*cdf0e10cSrcweir rtl_TextEncoding SvtSysLocale::GetBestMimeEncoding()
194*cdf0e10cSrcweir {
195*cdf0e10cSrcweir     const sal_Char* pCharSet = rtl_getBestMimeCharsetFromTextEncoding(
196*cdf0e10cSrcweir             gsl_getSystemTextEncoding() );
197*cdf0e10cSrcweir     if ( !pCharSet )
198*cdf0e10cSrcweir     {
199*cdf0e10cSrcweir         // If the system locale is unknown to us, e.g. LC_ALL=xx, match the UI
200*cdf0e10cSrcweir         // language if possible.
201*cdf0e10cSrcweir         ::com::sun::star::lang::Locale aLocale( SvtSysLocale().GetUILocale() );
202*cdf0e10cSrcweir         rtl_Locale * pLocale = rtl_locale_register( aLocale.Language.getStr(),
203*cdf0e10cSrcweir                 aLocale.Country.getStr(), aLocale.Variant.getStr() );
204*cdf0e10cSrcweir         rtl_TextEncoding nEnc = osl_getTextEncodingFromLocale( pLocale );
205*cdf0e10cSrcweir         pCharSet = rtl_getBestMimeCharsetFromTextEncoding( nEnc );
206*cdf0e10cSrcweir     }
207*cdf0e10cSrcweir     rtl_TextEncoding nRet;
208*cdf0e10cSrcweir     if ( pCharSet )
209*cdf0e10cSrcweir         nRet = rtl_getTextEncodingFromMimeCharset( pCharSet );
210*cdf0e10cSrcweir     else
211*cdf0e10cSrcweir         nRet = RTL_TEXTENCODING_UTF8;
212*cdf0e10cSrcweir     return nRet;
213*cdf0e10cSrcweir }
214*cdf0e10cSrcweir 
215