sl@0: // Copyright (c) 2010 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: #include "t_logutil3.h" sl@0: #include sl@0: #include "LOGREPDEFS.H" sl@0: sl@0: //This function reads logeng repository file and returns the integer value of the given key. sl@0: static TInt LogGetRepositoryValueL(CRepository& aRepository, TInt aKey) sl@0: { sl@0: TInt val = -1; sl@0: User::LeaveIfError(aRepository.Get(aKey, val)); sl@0: return val; sl@0: } sl@0: sl@0: void LogGetContactmatchCountAndNameFormatL(TInt& aContactMatchCount, TLogContactNameFormat& aContactNameFormat) sl@0: { sl@0: CRepository* repository = NULL; sl@0: TRAPD(err, repository = CRepository::NewL(KUidLogengRepository)); sl@0: if(err == KErrNone) sl@0: { sl@0: CleanupStack::PushL(repository); sl@0: aContactMatchCount = LogGetRepositoryValueL(*repository, KContactMatchCountRepKey); sl@0: aContactNameFormat = static_cast (LogGetRepositoryValueL(*repository, KContactNameFormatRepKey)); sl@0: CleanupStack::PopAndDestroy(repository); sl@0: } sl@0: else if(err == KErrCorrupt) sl@0: { sl@0: __ASSERT_DEBUG(!repository, User::Invariant()); sl@0: User::Leave(err); sl@0: } sl@0: else sl@0: { sl@0: __ASSERT_DEBUG(!repository, User::Invariant()); sl@0: aContactMatchCount = KLogContactMatchCount; sl@0: aContactNameFormat = KLogContactNameFormat; sl@0: } sl@0: } sl@0: