os/persistentdata/loggingservices/eventlogger/test/src/t_logutil3.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/loggingservices/eventlogger/test/src/t_logutil3.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,50 @@
     1.4 +// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +#include "t_logutil3.h"
    1.19 +#include <centralrepository.h>
    1.20 +#include "LOGREPDEFS.H"
    1.21 +
    1.22 +//This function reads logeng repository file and returns the integer value of the given key. 
    1.23 +static TInt LogGetRepositoryValueL(CRepository& aRepository, TInt aKey)
    1.24 +	{		
    1.25 +	TInt val = -1;		
    1.26 +	User::LeaveIfError(aRepository.Get(aKey, val));
    1.27 +	return val;
    1.28 +	}
    1.29 +
    1.30 +void LogGetContactmatchCountAndNameFormatL(TInt& aContactMatchCount, TLogContactNameFormat& aContactNameFormat)
    1.31 +	{
    1.32 +	CRepository* repository = NULL;
    1.33 +	TRAPD(err, repository = CRepository::NewL(KUidLogengRepository));		
    1.34 +	if(err == KErrNone)
    1.35 +		{
    1.36 +		CleanupStack::PushL(repository);
    1.37 +		aContactMatchCount = LogGetRepositoryValueL(*repository, KContactMatchCountRepKey);
    1.38 +		aContactNameFormat = static_cast <TLogContactNameFormat> (LogGetRepositoryValueL(*repository, KContactNameFormatRepKey));
    1.39 +		CleanupStack::PopAndDestroy(repository);
    1.40 +		}
    1.41 +	else if(err == KErrCorrupt)
    1.42 +		{
    1.43 +		__ASSERT_DEBUG(!repository, User::Invariant());
    1.44 +		User::Leave(err);
    1.45 +		}
    1.46 +	else
    1.47 +		{
    1.48 +		__ASSERT_DEBUG(!repository, User::Invariant());
    1.49 +		aContactMatchCount = KLogContactMatchCount;
    1.50 +		aContactNameFormat = KLogContactNameFormat;
    1.51 +		}
    1.52 +	}
    1.53 +