First public contribution.
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
20 #include <e32property.h>
23 #include "LocaleRepository.h"
24 #include "InitialiseLocale.h"
27 using namespace NCentralRepositoryConstants ;
30 // Text constants for debug messages
32 _LIT (KBadChangeNotification, "InitialiseLocale: Bad Change Notification") ;
36 // CExtendedLocaleManager::LocaleChanged
38 // Callback function to be attached to an instance of
39 // CEnvironmentChangeNotifier to persist system locale data.
41 // Note that this has to be a static member function so that
42 // it can be encapsulated into a TCallback object for use with
43 // a CEnvironmentChangeNotifier - we get round this by passing
44 // in a "this" pointer so that while remaining a static function
45 // it can access all the member data anyway!
46 TInt CExtendedLocaleManager::LocaleChanged(TAny* aPtr)
48 CExtendedLocaleManager* thisLocaleManager = (CExtendedLocaleManager *) aPtr ;
50 if(!thisLocaleManager->iChangeNotifier)
53 RDebug::Print(KBadChangeNotification);
59 TInt stat = thisLocaleManager->iChangeNotifier->Change();
60 if(stat & EChangesLocale)
63 // System Locale data has been updated, persist
64 // changes by writing to repository.
65 TRAPD(err, thisLocaleManager->PersistLocaleL()); // No way to handle errors within this callback function, so ignore them
71 if(stat & EChangesSystemTime)
73 // changes by writing to HAL
74 TInt ret = BaflUtils::PersistHAL();
75 __ASSERT_DEBUG(ret == KErrNone, User::Invariant() );
83 // CExtendedLocaleManager::NewLC()
84 // CExtendedLocaleManager::NewL()
86 // Usual 2 phase construction factory NewL NewLC classes
88 CExtendedLocaleManager* CExtendedLocaleManager::NewLC()
90 CExtendedLocaleManager* me = new(ELeave)CExtendedLocaleManager();
91 CleanupStack::PushL(me) ;
97 CExtendedLocaleManager* CExtendedLocaleManager::NewL()
99 CExtendedLocaleManager* me = CExtendedLocaleManager::NewLC() ;
100 CleanupStack::Pop(me) ;
108 // CExtendedLocaleManager::CExtendedLocaleManager
110 // Constructor - doesn't really do anything!
112 CExtendedLocaleManager::CExtendedLocaleManager()
119 // CExtendedLocaleManager::ConstructL()
121 // Second phase constructor, initialises locale data from persisted (or default)
122 // values in repository, creates an instance of CEnvironmentChangeNotifier, and
123 // attaches the callback function, passing in our "this" pointer to get round the
124 // requirement for the callback function to be a static.
126 void CExtendedLocaleManager::ConstructL()
129 TUid LocalePropertyUid;
130 LocalePropertyUid.iUid = KUidLocalePersistProperties ;
132 TInt error = RProperty::Define((TUint)EInitialisationState, RProperty::EInt,TSecurityPolicy::EAlwaysPass,TSecurityPolicy(ECapabilityWriteDeviceData));
133 if(error != KErrAlreadyExists)
135 User::LeaveIfError(error);
137 //If the property definition fails bail out. Note that if the
138 // property has already been defined (because the locale initialisation code
139 // has already been called) this call will return KErrAlreadyExists so locale
140 // initialisation will only take place once.
142 // Set property to indicate initialisation in progress
143 User::LeaveIfError(RProperty::Set(LocalePropertyUid, EInitialisationState, ELocaleInitialisationInProgress)) ;
145 TUid LocaleRepositoryUid;
146 LocaleRepositoryUid.iUid = KLocalePersistRepositoryUid;
149 // Initialise system locale data from repository contents.
150 CRepository* repository = CRepository::NewLC(LocaleRepositoryUid);
151 TRAPD(err, InitialiseLocaleL(*repository)); //this function should no longer attempt to set the failure flag
154 // Failed to read DLL name, load corresponding Locale aspect or read value from DLL,
155 // Set property to indicate initialisation failure and bail out!
156 User::LeaveIfError(RProperty::Set(LocalePropertyUid, EInitialisationState, ELocaleInitialisationFailed)) ;
158 CleanupStack::PopAndDestroy(repository);
162 //After Initialisation, monitor the system locale for changes. If initialiselocale.exe is restarted,
163 //then initialisation will not be executed, going to monitor directly.
166 // Create and install an CActiveScheduler to look after the active object
167 // in the change notifier
168 iActiveScheduler = new (ELeave) CActiveScheduler;
169 CActiveScheduler::Install(iActiveScheduler);
172 // Create the change notifier and install the callback function
173 const TCallBack myCallBackFunction(&CExtendedLocaleManager::LocaleChanged, this);
174 iChangeNotifier = CEnvironmentChangeNotifier::NewL(CActive::EPriorityStandard, myCallBackFunction);
175 iChangeNotifier->Start();
177 // Set property to indicate initialisation complete
178 User::LeaveIfError(RProperty::Set(LocalePropertyUid, EInitialisationState, ELocaleInitialisationComplete));
180 //now call RProcess::Rendezvous to indicate initialiseLocale is completed with no error
181 RProcess().Rendezvous(KErrNone);
183 // All ready to go! Start the active sheduler.
184 CActiveScheduler::Start();
190 // CExtendedLocaleManager::~CExtendedLocaleManager()
192 // Destructor to tidy up on shutdown (if needed!).
193 CExtendedLocaleManager::~CExtendedLocaleManager()
195 delete iChangeNotifier;
196 delete iActiveScheduler;
204 // CExtendedLocaleManager::PersistLocaleL
206 // Persist system locale data by writing it to a repository
207 void CExtendedLocaleManager::PersistLocaleL()
209 TUid LocaleRepositoryUid;
210 LocaleRepositoryUid.iUid = KLocalePersistRepositoryUid ;
212 CRepository* repository = CRepository::NewLC(LocaleRepositoryUid) ;
214 // Refresh extended locale with current system settings
215 iExtendedLocale.LoadSystemSettings();
217 // Perform repository update in a transaction so that we're
218 // guaranteed to retain consistent state of repository contents.
219 User::LeaveIfError(repository->StartTransaction(CRepository::EReadWriteTransaction));
220 repository->CleanupFailTransactionPushL();
222 TBuf<KMaxFileName> DllName ;
225 // Locale DLL for Language Settings
226 User::LeaveIfError(iExtendedLocale.GetLocaleDllName(ELocaleLanguageSettings, DllName));
227 User::LeaveIfError(repository->Set(KLocaleLanguageDll, DllName));
230 // Locale DLL for Collation/Charset settings
231 User::LeaveIfError(iExtendedLocale.GetLocaleDllName(ELocaleCollateSetting, DllName));
232 User::LeaveIfError(repository->Set(KLocaleCollationDll, DllName));
235 // Locale DLL for Locale settings
236 User::LeaveIfError(iExtendedLocale.GetLocaleDllName(ELocaleLocaleSettings, DllName));
237 User::LeaveIfError(repository->Set(KLocaleLocaleDll, DllName));
240 #ifndef SYMBIAN_DISTINCT_LOCALE_MODEL
241 // Locale DLL for Time and date settings
242 User::LeaveIfError(iExtendedLocale.GetLocaleDllName(ELocaleTimeDateSettings, DllName));
243 User::LeaveIfError(repository->Set(KLocaleTimeDateDll, DllName));
247 // Locale customisations (contents of embedded TLocale)
248 TLocale* locale = iExtendedLocale.GetLocale() ;
249 User::LeaveIfError(repository->Set(KLocaleCountryCode, locale->CountryCode()));
250 User::LeaveIfError(repository->Set(KLocaleUtcOffset, User::UTCOffset().Int()));
251 User::LeaveIfError(repository->Set(KLocaleDateFormat, locale->DateFormat()));
252 User::LeaveIfError(repository->Set(KLocaleTimeFormat, locale->TimeFormat()));
253 User::LeaveIfError(repository->Set(KLocaleCurrencySymbolPosition, locale->CurrencySymbolPosition()));
254 User::LeaveIfError(repository->Set(KLocaleCurrencySpaceBetween, locale->CurrencySpaceBetween()));
255 User::LeaveIfError(repository->Set(KLocaleCurrencyDecimalPlaces, locale->CurrencyDecimalPlaces()));
256 User::LeaveIfError(repository->Set(KLocaleCurrencyNegativeInBrackets, locale->CurrencyNegativeInBrackets()));
257 User::LeaveIfError(repository->Set(KLocaleCurrencyTriadsAllowed, locale->CurrencyTriadsAllowed()));
258 User::LeaveIfError(repository->Set(KLocaleThousandsSeparator, (TInt)locale->ThousandsSeparator()));
259 User::LeaveIfError(repository->Set(KLocaleDecimalSeparator, (TInt)locale->DecimalSeparator()));
262 for (index = 0; index < KMaxDateSeparators; index++)
264 User::LeaveIfError(repository->Set(KLocaleDateSeparatorBase+index, (TInt)locale->DateSeparator(index)));
267 for (index = 0; index < KMaxTimeSeparators; index++)
269 User::LeaveIfError(repository->Set(KLocaleTimeSeparatorBase +index, (TInt)locale->TimeSeparator(index)));
272 User::LeaveIfError(repository->Set(KLocaleAmPmSpaceBetween, locale->AmPmSpaceBetween()));
273 User::LeaveIfError(repository->Set(KLocaleAmPmSymbolPosition, locale->AmPmSymbolPosition()));
274 User::LeaveIfError(repository->Set(KLocaleWorkDays, (TInt)locale->WorkDays()));
275 User::LeaveIfError(repository->Set(KLocaleStartOfWeek, locale->StartOfWeek()));
276 User::LeaveIfError(repository->Set(KLocaleClockFormat, locale->ClockFormat()));
277 User::LeaveIfError(repository->Set(KLocaleUnitsGeneral, locale->UnitsGeneral()));
278 User::LeaveIfError(repository->Set(KLocaleUnitsDistanceShort, locale->UnitsDistanceShort()));
279 User::LeaveIfError(repository->Set(KLocaleUnitsDistanceLong, locale->UnitsDistanceLong()));
280 User::LeaveIfError(repository->Set(KLocaleCurrencyNegativeFormat, locale->NegativeCurrencyFormat()));
281 User::LeaveIfError(repository->Set(KLocaleCurrencyNegativeLoseSpace, locale->NegativeLoseSpace()));
282 User::LeaveIfError(repository->Set(KLocaleCurrencySymbolOpposite, locale->NegativeCurrencySymbolOpposite()));
284 TCurrencySymbol currencySymbol ;
285 currencySymbol.Set() ;
286 User::LeaveIfError(repository->Set(KLocaleCurrencySymbol, currencySymbol));
288 for (index = 0; index < 3; index++)
290 User::LeaveIfError(repository->Set(KLocaleLanguageDowngradeBase+index, locale->LanguageDowngrade(index)));
293 User::LeaveIfError(repository->Set(KLocaleDigitType, locale->DigitType()));
294 User::LeaveIfError(repository->Set(KLocaleDeviceTimeState, locale->DeviceTime()));
296 // Completed sucessfully, commit transaction and close registry
297 TUint32 transactionErr ;
298 User::LeaveIfError(repository->CommitTransaction(transactionErr));
299 CleanupStack::Pop(); // pop repository->CleanupFailTransactionPushL item
300 CleanupStack::PopAndDestroy (repository);
307 // Initialise System Locale data from persisted (or default) data held in a
309 void CExtendedLocaleManager::InitialiseLocaleL(CRepository& aRepository)
312 // Get names of DLLs to be loaded
313 TBuf<KMaxFileName> DllName ;
315 #ifndef SYMBIAN_DISTINCT_LOCALE_MODEL
316 // Collation/Charset settings
317 User::LeaveIfError(aRepository.Get(KLocaleCollationDll, DllName));
318 User::LeaveIfError(iExtendedLocale.LoadLocaleAspect(ELocaleCollateSetting,DllName));
321 User::LeaveIfError(aRepository.Get(KLocaleLanguageDll, DllName));
322 User::LeaveIfError(iExtendedLocale.LoadLocaleAspect(ELocaleLanguageSettings,DllName));
325 User::LeaveIfError(aRepository.Get(KLocaleLocaleDll, DllName));
326 User::LeaveIfError(iExtendedLocale.LoadLocaleAspect(ELocaleLocaleSettings,DllName));
328 // Time and Date settings
329 User::LeaveIfError(aRepository.Get(KLocaleTimeDateDll, DllName));
330 User::LeaveIfError(iExtendedLocale.LoadLocaleAspect(ELocaleTimeDateSettings,DllName));
334 User::LeaveIfError(aRepository.Get(KLocaleCollationDll, DllName));
335 User::LeaveIfError(iExtendedLocale.LoadLocaleAspect(DllName));
337 User::LeaveIfError(aRepository.Get(KLocaleLanguageDll, DllName));
338 User::LeaveIfError(iExtendedLocale.LoadLocaleAspect(DllName));
340 User::LeaveIfError(aRepository.Get(KLocaleLocaleDll, DllName));
341 User::LeaveIfError(iExtendedLocale.LoadLocaleAspect(DllName));
345 iExtendedLocale.SaveSystemSettings();
347 // Locale customisations
348 TLocale* locale = iExtendedLocale.GetLocale() ;
351 User::LeaveIfError(aRepository.Get(KLocaleCountryCode, intValue));
352 locale->SetCountryCode(intValue) ;
354 User::LeaveIfError(aRepository.Get(KLocaleUtcOffset, intValue));
355 User::SetUTCOffset(intValue) ;
357 User::LeaveIfError(aRepository.Get(KLocaleDateFormat, intValue));
358 locale->SetDateFormat((TDateFormat)intValue) ;
360 User::LeaveIfError(aRepository.Get(KLocaleTimeFormat, intValue));
361 locale->SetTimeFormat((TTimeFormat)intValue) ;
363 User::LeaveIfError(aRepository.Get(KLocaleCurrencySymbolPosition, intValue));
364 locale->SetCurrencySymbolPosition((TLocalePos)intValue) ;
366 User::LeaveIfError(aRepository.Get(KLocaleCurrencySpaceBetween, intValue));
367 locale->SetCurrencySpaceBetween((TBool)intValue) ;
369 User::LeaveIfError(aRepository.Get(KLocaleCurrencyDecimalPlaces, intValue));
370 locale->SetCurrencyDecimalPlaces((TBool)intValue) ;
372 User::LeaveIfError(aRepository.Get(KLocaleCurrencyNegativeInBrackets, intValue));
373 locale->SetCurrencyNegativeInBrackets((TBool)intValue) ;
375 User::LeaveIfError(aRepository.Get(KLocaleCurrencyTriadsAllowed, intValue));
376 locale->SetCurrencyTriadsAllowed((TBool)intValue) ;
378 TCurrencySymbol currencySymbol ;
379 User::LeaveIfError(aRepository.Get(KLocaleCurrencySymbol, currencySymbol));
380 iExtendedLocale.SetCurrencySymbol(currencySymbol) ;
382 User::LeaveIfError(aRepository.Get(KLocaleThousandsSeparator, intValue));
383 locale->SetThousandsSeparator(intValue) ;
385 User::LeaveIfError(aRepository.Get(KLocaleDecimalSeparator, intValue));
386 locale->SetDecimalSeparator(intValue) ;
389 for (index = 0; index < KMaxDateSeparators; index++)
391 User::LeaveIfError(aRepository.Get(KLocaleDateSeparatorBase+index, intValue));
392 locale->SetDateSeparator(intValue, index) ;
395 for (index = 0; index < KMaxTimeSeparators; index++)
397 User::LeaveIfError(aRepository.Get(KLocaleTimeSeparatorBase+index, intValue));
398 locale->SetTimeSeparator(intValue, index) ;
401 User::LeaveIfError(aRepository.Get(KLocaleAmPmSpaceBetween, intValue));
402 locale->SetAmPmSpaceBetween(intValue) ;
404 User::LeaveIfError(aRepository.Get(KLocaleAmPmSymbolPosition, intValue));
405 locale->SetAmPmSymbolPosition((TLocalePos)intValue) ;
407 User::LeaveIfError(aRepository.Get(KLocaleWorkDays, intValue));
408 locale->SetWorkDays(intValue) ;
410 User::LeaveIfError(aRepository.Get(KLocaleStartOfWeek, intValue));
411 locale->SetStartOfWeek((TDay)intValue) ;
413 User::LeaveIfError(aRepository.Get(KLocaleClockFormat, intValue));
414 locale->SetClockFormat((TClockFormat)intValue) ;
416 User::LeaveIfError(aRepository.Get(KLocaleUnitsGeneral, intValue));
417 locale->SetUnitsGeneral((TUnitsFormat)intValue) ;
419 User::LeaveIfError(aRepository.Get(KLocaleUnitsDistanceShort, intValue));
420 locale->SetUnitsDistanceShort((TUnitsFormat)intValue) ;
422 User::LeaveIfError(aRepository.Get(KLocaleUnitsDistanceLong, intValue));
423 locale->SetUnitsDistanceLong((TUnitsFormat)intValue) ;
425 User::LeaveIfError(aRepository.Get(KLocaleCurrencyNegativeFormat, intValue));
426 locale->SetNegativeCurrencyFormat((TLocale::TNegativeCurrencyFormat)intValue) ;
428 User::LeaveIfError(aRepository.Get(KLocaleCurrencyNegativeLoseSpace, intValue));
429 locale->SetNegativeLoseSpace(intValue) ;
431 User::LeaveIfError(aRepository.Get(KLocaleCurrencySymbolOpposite, intValue));
432 locale->SetNegativeCurrencySymbolOpposite(intValue) ;
434 for (index = 0; index < 3; index++)
436 User::LeaveIfError(aRepository.Get(KLocaleLanguageDowngradeBase+index, intValue));
437 locale->SetLanguageDowngrade(index, (TLanguage)intValue) ;
440 User::LeaveIfError(aRepository.Get(KLocaleDigitType, intValue));
441 locale->SetDigitType((TDigitType)intValue) ;
443 User::LeaveIfError(aRepository.Get(KLocaleDeviceTimeState, intValue));
444 locale->SetDeviceTime((TLocale::TDeviceTimeState)intValue) ;
447 // Sucessfully loaded a complete set of persisted/default Locale data - write to
448 // system locale data.
449 User::LeaveIfError(iExtendedLocale.SaveSystemSettings());
454 // Entry point for the executable
457 TInt result = KErrNone;
458 CTrapCleanup* tc = CTrapCleanup::New();
461 User::Panic(KLocaleInitPanic, KErrNoMemory) ;
465 CExtendedLocaleManager* localeManager = NULL ;
466 TRAPD(err, (localeManager = CExtendedLocaleManager::NewL()));
473 delete localeManager;