os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/DowngradePath.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2002-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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <s32file.h>
    17 #include <bautils.h>
    18 #include "DowngradePath.h"
    19 #include "FileUtils.h"
    20 
    21 Languages RDowngradePath::iCurrentLanguage;
    22 
    23 //overwrite the old array with values in the new array
    24 void CopyLanguageArrayL(Languages& old_array,const Languages& new_array)
    25 	{
    26 	old_array.Reset();
    27 	CleanupClosePushL(old_array);
    28 	for (TInt i=0;i<new_array.Count();i++)
    29 		{
    30 		old_array.AppendL(new_array[i]);
    31 		}
    32 	CleanupStack::Pop();	
    33 	}
    34 
    35 void RDowngradePath::Reset()
    36 	{
    37 	iCurrentLanguage.Reset();
    38 	}
    39 
    40 /**
    41 Get whether the current downgrade path has changed
    42 @return ETrue if so, EFalse if not.
    43 */
    44 TBool RDowngradePath::HasChangedL(RFs& aFs)
    45 	{
    46 	TBool hasChanged = EFalse;
    47 	TInt currentLanguageCount=iCurrentLanguage.Count();
    48 	
    49 	//check current language settings
    50 	if (currentLanguageCount==0)
    51 		{
    52 		CleanupClosePushL(iCurrentLanguage);
    53 		//this is during the server boot time,store this settings
    54 		BaflUtils::GetDowngradePathL(aFs,User::Language(),iCurrentLanguage);
    55 		CleanupStack::Pop();
    56 		return ETrue; 
    57 		}
    58 	else
    59 		{
    60 		//we need to check the new settings against current stored settings
    61 		//this is likely the case during language change notification
    62 		Languages newLanguage;
    63 		CleanupClosePushL(newLanguage);
    64 			
    65 		// get current system downgrade path			
    66 		BaflUtils::GetDowngradePathL(aFs, User::Language(), newLanguage);
    67 	
    68 		// path lengths match
    69 		if (currentLanguageCount == newLanguage.Count())
    70 			{
    71 			TInt langs = newLanguage.Count();
    72 			// compare each entry in path
    73 			for (TInt i = 0; i < langs; ++i)
    74 				{
    75 				if (iCurrentLanguage[i] != newLanguage[i])
    76 					{
    77 					hasChanged = ETrue;
    78 					CopyLanguageArrayL(iCurrentLanguage,newLanguage);
    79 					break;
    80 					}
    81 				}
    82 			}
    83 		// path lengths don't match
    84 		else
    85 			{
    86 			CopyLanguageArrayL(iCurrentLanguage,newLanguage);			
    87 			hasChanged = ETrue;
    88 			}
    89 
    90 		CleanupStack::PopAndDestroy(&newLanguage);	// cleanup: newLanguage		
    91 		}
    92 	return hasChanged;
    93 	}
    94