diff -r 000000000000 -r 1bce908db942 multimediacommsengine/tsrc/testdriver/siptester/src/TCmdSetRepositoryIntValue.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/multimediacommsengine/tsrc/testdriver/siptester/src/TCmdSetRepositoryIntValue.cpp Tue Feb 02 01:04:58 2010 +0200 @@ -0,0 +1,96 @@ +/* +* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Implementation +* +*/ + + +#include +#include "CTcSIPContext.h" +#include "TCmdSetRepositoryIntValue.h" +#include "SIPConstants.h" + + +/** + * KParamRepositoryUid identifies the Central repository. + * This parameter is mandatory + * + * KParamRepositoryParameterKey identifies the integer type parameter within + * the selected central repository. This parameter is mandatory. + * + * KParamRepositoryParameterValue is the value to be set for the parameter. + * This parameter is optional. If it is not specified, then the parameter is + * deleted from the repository. + * + * + * INPUT: + * Headers: - + * Parameters: KParamRepositoryUid, + * KParamRepositoryParameterKey, + * KParamRepositoryParameterValue + * IDs: - + * + * OUTPUT: + * Parameters: - + * IDs: - + */ +void TCmdSetRepositoryIntValue::ExecuteL() + { + // If KParamRepositoryParameterValue is not specified, remove the + // parameter from repository. + const TInt KDefaultValue = -984079; + TInt repositoryUidValue = ExtractIntegerL( KParamRepositoryUid, + KDefaultValue, + ETrue ); + TUid repositoryUid = TUid::Uid( repositoryUidValue ); + + TInt paramKey = ExtractIntegerL( KParamRepositoryParameterKey, + KDefaultValue, + ETrue ); + TInt paramValue = ExtractIntegerL( KParamRepositoryParameterValue, + KDefaultValue, + EFalse /* optional */ ); + TBool isValueDefined = ( paramValue != KDefaultValue ); + + TInt err( KErrNone ); + CRepository* repository = CRepository::NewLC( repositoryUid ); + + if ( isValueDefined ) + { + err = repository->Set( paramKey, paramValue ); + } + else + { + err = repository->Delete( paramKey ); + if ( err == KErrNotFound ) + { + // Trying to delete a non-existent parameter is not an error + err = KErrNone; + } + } + + CleanupStack::PopAndDestroy( repository ); + + User::LeaveIfError( err ); + } + +TBool TCmdSetRepositoryIntValue::Match( const TTcIdentifier& aId ) + { + return TTcSIPCommandBase::Match( aId, _L8("SetRepositoryIntValue") ); + } + +TTcCommandBase* TCmdSetRepositoryIntValue::CreateL( MTcTestContext& aContext ) + { + return new( ELeave ) TCmdSetRepositoryIntValue( aContext ); + }