os/persistentdata/loggingservices/eventlogger/test/src/t_logutil3.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2010 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 #include "t_logutil3.h"
    16 #include <centralrepository.h>
    17 #include "LOGREPDEFS.H"
    18 
    19 //This function reads logeng repository file and returns the integer value of the given key. 
    20 static TInt LogGetRepositoryValueL(CRepository& aRepository, TInt aKey)
    21 	{		
    22 	TInt val = -1;		
    23 	User::LeaveIfError(aRepository.Get(aKey, val));
    24 	return val;
    25 	}
    26 
    27 void LogGetContactmatchCountAndNameFormatL(TInt& aContactMatchCount, TLogContactNameFormat& aContactNameFormat)
    28 	{
    29 	CRepository* repository = NULL;
    30 	TRAPD(err, repository = CRepository::NewL(KUidLogengRepository));		
    31 	if(err == KErrNone)
    32 		{
    33 		CleanupStack::PushL(repository);
    34 		aContactMatchCount = LogGetRepositoryValueL(*repository, KContactMatchCountRepKey);
    35 		aContactNameFormat = static_cast <TLogContactNameFormat> (LogGetRepositoryValueL(*repository, KContactNameFormatRepKey));
    36 		CleanupStack::PopAndDestroy(repository);
    37 		}
    38 	else if(err == KErrCorrupt)
    39 		{
    40 		__ASSERT_DEBUG(!repository, User::Invariant());
    41 		User::Leave(err);
    42 		}
    43 	else
    44 		{
    45 		__ASSERT_DEBUG(!repository, User::Invariant());
    46 		aContactMatchCount = KLogContactMatchCount;
    47 		aContactNameFormat = KLogContactNameFormat;
    48 		}
    49 	}
    50