sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "LocaleRepository.h" sl@0: #include "InitialiseLocale.h" sl@0: #include sl@0: sl@0: using namespace NCentralRepositoryConstants ; sl@0: sl@0: sl@0: // Text constants for debug messages sl@0: #ifdef _DEBUG sl@0: _LIT (KBadChangeNotification, "InitialiseLocale: Bad Change Notification") ; sl@0: #endif sl@0: sl@0: // sl@0: // CExtendedLocaleManager::LocaleChanged sl@0: // sl@0: // Callback function to be attached to an instance of sl@0: // CEnvironmentChangeNotifier to persist system locale data. sl@0: // sl@0: // Note that this has to be a static member function so that sl@0: // it can be encapsulated into a TCallback object for use with sl@0: // a CEnvironmentChangeNotifier - we get round this by passing sl@0: // in a "this" pointer so that while remaining a static function sl@0: // it can access all the member data anyway! sl@0: TInt CExtendedLocaleManager::LocaleChanged(TAny* aPtr) sl@0: { sl@0: CExtendedLocaleManager* thisLocaleManager = (CExtendedLocaleManager *) aPtr ; sl@0: sl@0: if(!thisLocaleManager->iChangeNotifier) sl@0: { sl@0: #ifdef _DEBUG sl@0: RDebug::Print(KBadChangeNotification); sl@0: #endif sl@0: return EFalse; sl@0: } sl@0: sl@0: sl@0: TInt stat = thisLocaleManager->iChangeNotifier->Change(); sl@0: if(stat & EChangesLocale) sl@0: { sl@0: // sl@0: // System Locale data has been updated, persist sl@0: // changes by writing to repository. sl@0: TRAPD(err, thisLocaleManager->PersistLocaleL()); // No way to handle errors within this callback function, so ignore them sl@0: if(err != KErrNone) sl@0: { sl@0: err=KErrNone; sl@0: } sl@0: } sl@0: if(stat & EChangesSystemTime) sl@0: { sl@0: // changes by writing to HAL sl@0: TInt ret = BaflUtils::PersistHAL(); sl@0: __ASSERT_DEBUG(ret == KErrNone, User::Invariant() ); sl@0: } sl@0: sl@0: return ETrue; sl@0: } sl@0: sl@0: sl@0: // sl@0: // CExtendedLocaleManager::NewLC() sl@0: // CExtendedLocaleManager::NewL() sl@0: // sl@0: // Usual 2 phase construction factory NewL NewLC classes sl@0: // sl@0: CExtendedLocaleManager* CExtendedLocaleManager::NewLC() sl@0: { sl@0: CExtendedLocaleManager* me = new(ELeave)CExtendedLocaleManager(); sl@0: CleanupStack::PushL(me) ; sl@0: me->ConstructL() ; sl@0: return me; sl@0: } sl@0: sl@0: sl@0: CExtendedLocaleManager* CExtendedLocaleManager::NewL() sl@0: { sl@0: CExtendedLocaleManager* me = CExtendedLocaleManager::NewLC() ; sl@0: CleanupStack::Pop(me) ; sl@0: return me; sl@0: } sl@0: sl@0: sl@0: sl@0: sl@0: // sl@0: // CExtendedLocaleManager::CExtendedLocaleManager sl@0: // sl@0: // Constructor - doesn't really do anything! sl@0: // sl@0: CExtendedLocaleManager::CExtendedLocaleManager() sl@0: { sl@0: } sl@0: sl@0: sl@0: sl@0: // sl@0: // CExtendedLocaleManager::ConstructL() sl@0: // sl@0: // Second phase constructor, initialises locale data from persisted (or default) sl@0: // values in repository, creates an instance of CEnvironmentChangeNotifier, and sl@0: // attaches the callback function, passing in our "this" pointer to get round the sl@0: // requirement for the callback function to be a static. sl@0: // sl@0: void CExtendedLocaleManager::ConstructL() sl@0: { sl@0: sl@0: TUid LocalePropertyUid; sl@0: LocalePropertyUid.iUid = KUidLocalePersistProperties ; sl@0: sl@0: TInt error = RProperty::Define((TUint)EInitialisationState, RProperty::EInt,TSecurityPolicy::EAlwaysPass,TSecurityPolicy(ECapabilityWriteDeviceData)); sl@0: if(error != KErrAlreadyExists) sl@0: { sl@0: User::LeaveIfError(error); sl@0: sl@0: //If the property definition fails bail out. Note that if the sl@0: // property has already been defined (because the locale initialisation code sl@0: // has already been called) this call will return KErrAlreadyExists so locale sl@0: // initialisation will only take place once. sl@0: // sl@0: // Set property to indicate initialisation in progress sl@0: User::LeaveIfError(RProperty::Set(LocalePropertyUid, EInitialisationState, ELocaleInitialisationInProgress)) ; sl@0: sl@0: TUid LocaleRepositoryUid; sl@0: LocaleRepositoryUid.iUid = KLocalePersistRepositoryUid; sl@0: sl@0: sl@0: // Initialise system locale data from repository contents. sl@0: CRepository* repository = CRepository::NewLC(LocaleRepositoryUid); sl@0: TRAPD(err, InitialiseLocaleL(*repository)); //this function should no longer attempt to set the failure flag sl@0: if (err != KErrNone) sl@0: { sl@0: // Failed to read DLL name, load corresponding Locale aspect or read value from DLL, sl@0: // Set property to indicate initialisation failure and bail out! sl@0: User::LeaveIfError(RProperty::Set(LocalePropertyUid, EInitialisationState, ELocaleInitialisationFailed)) ; sl@0: } sl@0: CleanupStack::PopAndDestroy(repository); sl@0: sl@0: } sl@0: sl@0: //After Initialisation, monitor the system locale for changes. If initialiselocale.exe is restarted, sl@0: //then initialisation will not be executed, going to monitor directly. sl@0: sl@0: // sl@0: // Create and install an CActiveScheduler to look after the active object sl@0: // in the change notifier sl@0: iActiveScheduler = new (ELeave) CActiveScheduler; sl@0: CActiveScheduler::Install(iActiveScheduler); sl@0: sl@0: sl@0: // Create the change notifier and install the callback function sl@0: const TCallBack myCallBackFunction(&CExtendedLocaleManager::LocaleChanged, this); sl@0: iChangeNotifier = CEnvironmentChangeNotifier::NewL(CActive::EPriorityStandard, myCallBackFunction); sl@0: iChangeNotifier->Start(); sl@0: sl@0: // Set property to indicate initialisation complete sl@0: User::LeaveIfError(RProperty::Set(LocalePropertyUid, EInitialisationState, ELocaleInitialisationComplete)); sl@0: sl@0: //now call RProcess::Rendezvous to indicate initialiseLocale is completed with no error sl@0: RProcess().Rendezvous(KErrNone); sl@0: sl@0: // All ready to go! Start the active sheduler. sl@0: CActiveScheduler::Start(); sl@0: sl@0: } sl@0: sl@0: sl@0: // sl@0: // CExtendedLocaleManager::~CExtendedLocaleManager() sl@0: // sl@0: // Destructor to tidy up on shutdown (if needed!). sl@0: CExtendedLocaleManager::~CExtendedLocaleManager() sl@0: { sl@0: delete iChangeNotifier; sl@0: delete iActiveScheduler; sl@0: } sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: // sl@0: // CExtendedLocaleManager::PersistLocaleL sl@0: // sl@0: // Persist system locale data by writing it to a repository sl@0: void CExtendedLocaleManager::PersistLocaleL() sl@0: { sl@0: TUid LocaleRepositoryUid; sl@0: LocaleRepositoryUid.iUid = KLocalePersistRepositoryUid ; sl@0: sl@0: CRepository* repository = CRepository::NewLC(LocaleRepositoryUid) ; sl@0: sl@0: // Refresh extended locale with current system settings sl@0: iExtendedLocale.LoadSystemSettings(); sl@0: sl@0: // Perform repository update in a transaction so that we're sl@0: // guaranteed to retain consistent state of repository contents. sl@0: User::LeaveIfError(repository->StartTransaction(CRepository::EReadWriteTransaction)); sl@0: repository->CleanupFailTransactionPushL(); sl@0: sl@0: TBuf DllName ; sl@0: sl@0: // sl@0: // Locale DLL for Language Settings sl@0: User::LeaveIfError(iExtendedLocale.GetLocaleDllName(ELocaleLanguageSettings, DllName)); sl@0: User::LeaveIfError(repository->Set(KLocaleLanguageDll, DllName)); sl@0: sl@0: // sl@0: // Locale DLL for Collation/Charset settings sl@0: User::LeaveIfError(iExtendedLocale.GetLocaleDllName(ELocaleCollateSetting, DllName)); sl@0: User::LeaveIfError(repository->Set(KLocaleCollationDll, DllName)); sl@0: sl@0: // sl@0: // Locale DLL for Locale settings sl@0: User::LeaveIfError(iExtendedLocale.GetLocaleDllName(ELocaleLocaleSettings, DllName)); sl@0: User::LeaveIfError(repository->Set(KLocaleLocaleDll, DllName)); sl@0: sl@0: // sl@0: #ifndef SYMBIAN_DISTINCT_LOCALE_MODEL sl@0: // Locale DLL for Time and date settings sl@0: User::LeaveIfError(iExtendedLocale.GetLocaleDllName(ELocaleTimeDateSettings, DllName)); sl@0: User::LeaveIfError(repository->Set(KLocaleTimeDateDll, DllName)); sl@0: #endif sl@0: sl@0: // sl@0: // Locale customisations (contents of embedded TLocale) sl@0: TLocale* locale = iExtendedLocale.GetLocale() ; sl@0: User::LeaveIfError(repository->Set(KLocaleCountryCode, locale->CountryCode())); sl@0: User::LeaveIfError(repository->Set(KLocaleUtcOffset, User::UTCOffset().Int())); sl@0: User::LeaveIfError(repository->Set(KLocaleDateFormat, locale->DateFormat())); sl@0: User::LeaveIfError(repository->Set(KLocaleTimeFormat, locale->TimeFormat())); sl@0: User::LeaveIfError(repository->Set(KLocaleCurrencySymbolPosition, locale->CurrencySymbolPosition())); sl@0: User::LeaveIfError(repository->Set(KLocaleCurrencySpaceBetween, locale->CurrencySpaceBetween())); sl@0: User::LeaveIfError(repository->Set(KLocaleCurrencyDecimalPlaces, locale->CurrencyDecimalPlaces())); sl@0: User::LeaveIfError(repository->Set(KLocaleCurrencyNegativeInBrackets, locale->CurrencyNegativeInBrackets())); sl@0: User::LeaveIfError(repository->Set(KLocaleCurrencyTriadsAllowed, locale->CurrencyTriadsAllowed())); sl@0: User::LeaveIfError(repository->Set(KLocaleThousandsSeparator, (TInt)locale->ThousandsSeparator())); sl@0: User::LeaveIfError(repository->Set(KLocaleDecimalSeparator, (TInt)locale->DecimalSeparator())); sl@0: sl@0: TInt index ; sl@0: for (index = 0; index < KMaxDateSeparators; index++) sl@0: { sl@0: User::LeaveIfError(repository->Set(KLocaleDateSeparatorBase+index, (TInt)locale->DateSeparator(index))); sl@0: } sl@0: sl@0: for (index = 0; index < KMaxTimeSeparators; index++) sl@0: { sl@0: User::LeaveIfError(repository->Set(KLocaleTimeSeparatorBase +index, (TInt)locale->TimeSeparator(index))); sl@0: } sl@0: sl@0: User::LeaveIfError(repository->Set(KLocaleAmPmSpaceBetween, locale->AmPmSpaceBetween())); sl@0: User::LeaveIfError(repository->Set(KLocaleAmPmSymbolPosition, locale->AmPmSymbolPosition())); sl@0: User::LeaveIfError(repository->Set(KLocaleWorkDays, (TInt)locale->WorkDays())); sl@0: User::LeaveIfError(repository->Set(KLocaleStartOfWeek, locale->StartOfWeek())); sl@0: User::LeaveIfError(repository->Set(KLocaleClockFormat, locale->ClockFormat())); sl@0: User::LeaveIfError(repository->Set(KLocaleUnitsGeneral, locale->UnitsGeneral())); sl@0: User::LeaveIfError(repository->Set(KLocaleUnitsDistanceShort, locale->UnitsDistanceShort())); sl@0: User::LeaveIfError(repository->Set(KLocaleUnitsDistanceLong, locale->UnitsDistanceLong())); sl@0: User::LeaveIfError(repository->Set(KLocaleCurrencyNegativeFormat, locale->NegativeCurrencyFormat())); sl@0: User::LeaveIfError(repository->Set(KLocaleCurrencyNegativeLoseSpace, locale->NegativeLoseSpace())); sl@0: User::LeaveIfError(repository->Set(KLocaleCurrencySymbolOpposite, locale->NegativeCurrencySymbolOpposite())); sl@0: sl@0: TCurrencySymbol currencySymbol ; sl@0: currencySymbol.Set() ; sl@0: User::LeaveIfError(repository->Set(KLocaleCurrencySymbol, currencySymbol)); sl@0: sl@0: for (index = 0; index < 3; index++) sl@0: { sl@0: User::LeaveIfError(repository->Set(KLocaleLanguageDowngradeBase+index, locale->LanguageDowngrade(index))); sl@0: } sl@0: sl@0: User::LeaveIfError(repository->Set(KLocaleDigitType, locale->DigitType())); sl@0: User::LeaveIfError(repository->Set(KLocaleDeviceTimeState, locale->DeviceTime())); sl@0: sl@0: // Completed sucessfully, commit transaction and close registry sl@0: TUint32 transactionErr ; sl@0: User::LeaveIfError(repository->CommitTransaction(transactionErr)); sl@0: CleanupStack::Pop(); // pop repository->CleanupFailTransactionPushL item sl@0: CleanupStack::PopAndDestroy (repository); sl@0: } sl@0: sl@0: sl@0: sl@0: sl@0: // sl@0: // Initialise System Locale data from persisted (or default) data held in a sl@0: //repository. sl@0: void CExtendedLocaleManager::InitialiseLocaleL(CRepository& aRepository) sl@0: { sl@0: sl@0: // Get names of DLLs to be loaded sl@0: TBuf DllName ; sl@0: sl@0: #ifndef SYMBIAN_DISTINCT_LOCALE_MODEL sl@0: // Collation/Charset settings sl@0: User::LeaveIfError(aRepository.Get(KLocaleCollationDll, DllName)); sl@0: User::LeaveIfError(iExtendedLocale.LoadLocaleAspect(ELocaleCollateSetting,DllName)); sl@0: sl@0: // Language Settings sl@0: User::LeaveIfError(aRepository.Get(KLocaleLanguageDll, DllName)); sl@0: User::LeaveIfError(iExtendedLocale.LoadLocaleAspect(ELocaleLanguageSettings,DllName)); sl@0: sl@0: // Locale settings sl@0: User::LeaveIfError(aRepository.Get(KLocaleLocaleDll, DllName)); sl@0: User::LeaveIfError(iExtendedLocale.LoadLocaleAspect(ELocaleLocaleSettings,DllName)); sl@0: sl@0: // Time and Date settings sl@0: User::LeaveIfError(aRepository.Get(KLocaleTimeDateDll, DllName)); sl@0: User::LeaveIfError(iExtendedLocale.LoadLocaleAspect(ELocaleTimeDateSettings,DllName)); sl@0: sl@0: #else sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleCollationDll, DllName)); sl@0: User::LeaveIfError(iExtendedLocale.LoadLocaleAspect(DllName)); sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleLanguageDll, DllName)); sl@0: User::LeaveIfError(iExtendedLocale.LoadLocaleAspect(DllName)); sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleLocaleDll, DllName)); sl@0: User::LeaveIfError(iExtendedLocale.LoadLocaleAspect(DllName)); sl@0: sl@0: #endif sl@0: sl@0: iExtendedLocale.SaveSystemSettings(); sl@0: sl@0: // Locale customisations sl@0: TLocale* locale = iExtendedLocale.GetLocale() ; sl@0: sl@0: TInt intValue ; sl@0: User::LeaveIfError(aRepository.Get(KLocaleCountryCode, intValue)); sl@0: locale->SetCountryCode(intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleUtcOffset, intValue)); sl@0: User::SetUTCOffset(intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleDateFormat, intValue)); sl@0: locale->SetDateFormat((TDateFormat)intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleTimeFormat, intValue)); sl@0: locale->SetTimeFormat((TTimeFormat)intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleCurrencySymbolPosition, intValue)); sl@0: locale->SetCurrencySymbolPosition((TLocalePos)intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleCurrencySpaceBetween, intValue)); sl@0: locale->SetCurrencySpaceBetween((TBool)intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleCurrencyDecimalPlaces, intValue)); sl@0: locale->SetCurrencyDecimalPlaces((TBool)intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleCurrencyNegativeInBrackets, intValue)); sl@0: locale->SetCurrencyNegativeInBrackets((TBool)intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleCurrencyTriadsAllowed, intValue)); sl@0: locale->SetCurrencyTriadsAllowed((TBool)intValue) ; sl@0: sl@0: TCurrencySymbol currencySymbol ; sl@0: User::LeaveIfError(aRepository.Get(KLocaleCurrencySymbol, currencySymbol)); sl@0: iExtendedLocale.SetCurrencySymbol(currencySymbol) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleThousandsSeparator, intValue)); sl@0: locale->SetThousandsSeparator(intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleDecimalSeparator, intValue)); sl@0: locale->SetDecimalSeparator(intValue) ; sl@0: sl@0: TInt index ; sl@0: for (index = 0; index < KMaxDateSeparators; index++) sl@0: { sl@0: User::LeaveIfError(aRepository.Get(KLocaleDateSeparatorBase+index, intValue)); sl@0: locale->SetDateSeparator(intValue, index) ; sl@0: } sl@0: sl@0: for (index = 0; index < KMaxTimeSeparators; index++) sl@0: { sl@0: User::LeaveIfError(aRepository.Get(KLocaleTimeSeparatorBase+index, intValue)); sl@0: locale->SetTimeSeparator(intValue, index) ; sl@0: } sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleAmPmSpaceBetween, intValue)); sl@0: locale->SetAmPmSpaceBetween(intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleAmPmSymbolPosition, intValue)); sl@0: locale->SetAmPmSymbolPosition((TLocalePos)intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleWorkDays, intValue)); sl@0: locale->SetWorkDays(intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleStartOfWeek, intValue)); sl@0: locale->SetStartOfWeek((TDay)intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleClockFormat, intValue)); sl@0: locale->SetClockFormat((TClockFormat)intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleUnitsGeneral, intValue)); sl@0: locale->SetUnitsGeneral((TUnitsFormat)intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleUnitsDistanceShort, intValue)); sl@0: locale->SetUnitsDistanceShort((TUnitsFormat)intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleUnitsDistanceLong, intValue)); sl@0: locale->SetUnitsDistanceLong((TUnitsFormat)intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleCurrencyNegativeFormat, intValue)); sl@0: locale->SetNegativeCurrencyFormat((TLocale::TNegativeCurrencyFormat)intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleCurrencyNegativeLoseSpace, intValue)); sl@0: locale->SetNegativeLoseSpace(intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleCurrencySymbolOpposite, intValue)); sl@0: locale->SetNegativeCurrencySymbolOpposite(intValue) ; sl@0: sl@0: for (index = 0; index < 3; index++) sl@0: { sl@0: User::LeaveIfError(aRepository.Get(KLocaleLanguageDowngradeBase+index, intValue)); sl@0: locale->SetLanguageDowngrade(index, (TLanguage)intValue) ; sl@0: } sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleDigitType, intValue)); sl@0: locale->SetDigitType((TDigitType)intValue) ; sl@0: sl@0: User::LeaveIfError(aRepository.Get(KLocaleDeviceTimeState, intValue)); sl@0: locale->SetDeviceTime((TLocale::TDeviceTimeState)intValue) ; sl@0: sl@0: // sl@0: // Sucessfully loaded a complete set of persisted/default Locale data - write to sl@0: // system locale data. sl@0: User::LeaveIfError(iExtendedLocale.SaveSystemSettings()); sl@0: sl@0: } sl@0: sl@0: sl@0: // Entry point for the executable sl@0: TInt E32Main() sl@0: { sl@0: TInt result = KErrNone; sl@0: CTrapCleanup* tc = CTrapCleanup::New(); sl@0: if(!tc) sl@0: { sl@0: User::Panic(KLocaleInitPanic, KErrNoMemory) ; sl@0: } sl@0: __UHEAP_MARK; sl@0: sl@0: CExtendedLocaleManager* localeManager = NULL ; sl@0: TRAPD(err, (localeManager = CExtendedLocaleManager::NewL())); sl@0: if(err != KErrNone) sl@0: { sl@0: result = err; sl@0: } sl@0: __UHEAP_MARKEND; sl@0: sl@0: delete localeManager; sl@0: delete tc; sl@0: return result; sl@0: } sl@0: