diff -r 000000000000 -r 1bce908db942 multimediacommsengine/tsrc/testdriver/siptester/src/TCmdUpdateRegistration.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/multimediacommsengine/tsrc/testdriver/siptester/src/TCmdUpdateRegistration.cpp Tue Feb 02 01:04:58 2010 +0200 @@ -0,0 +1,89 @@ +/* +* Copyright (c) 2004 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 +#include +#include + +#include "TCmdUpdateRegistration.h" +#include "SIPConstants.h" + +/** + * INPUT: + * Headers: Content-Type*, Content-Encoding*, Expires*, Security-Client* + * Parameters: Content* + * IDs: RegistrationId + * + * OUTPUT: + * Parameters: - + * IDs: TransactionId + */ +void TCmdUpdateRegistration::ExecuteL() + { + // -- Setup --------------------------------------------------------------- + + // Get SIP objects from registry + CSIPRegistrationBinding* registration = GetRegistrationL(); + + // Get optional Expires header. It's important to extract the header + // as CSIPRegistration::UpdateL() doesn't allow it to be passed as part + // of the user headers. + CSIPExpiresHeader* expiresHeader = ExtractExpiresHeaderLC( EFalse ); + TInt expires( KErrNotFound ); + if( expiresHeader ) + { + expires = expiresHeader->Value(); + } + + // Extract both headers (that are still left) and content. + CSIPMessageElements* elements = ExtractHeadersAndContentLC(); + + // -- Execution ----------------------------------------------------------- + + // Start registration update, either with or without an Expires value + CSIPClientTransaction* transaction; + if( expires != KErrNotFound ) + { + transaction = registration->UpdateL( expires, elements ); + } + else + { + transaction = registration->UpdateL( elements ); + } + + CleanupStack::Pop( elements ); + if( expiresHeader ) + { + CleanupStack::Pop( expiresHeader ); + } + + // -- Response creation --------------------------------------------------- + + AddIdResponseL( KTransactionId, transaction ); + } + +TBool TCmdUpdateRegistration::Match( const TTcIdentifier& aId ) + { + return TTcSIPCommandBase::Match( aId, _L8("UpdateRegistration") ); + } + +TTcCommandBase* TCmdUpdateRegistration::CreateL( MTcTestContext& aContext ) + { + return new( ELeave ) TCmdUpdateRegistration( aContext ); + } +