diff -r 000000000000 -r 307788aac0a8 realtimenetprots/sipfw/SampleApp/sipengine/src/SIPExSIPClientEstablishingState.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/realtimenetprots/sipfw/SampleApp/sipengine/src/SIPExSIPClientEstablishingState.cpp Tue Feb 02 01:03:15 2010 +0200 @@ -0,0 +1,143 @@ + +// Copyright (c) 2004-2009 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: +// + + + +// INCLUDE FILES +#include "SIPExSIPClientEstablishingState.h" +#include "SIPExSIPEngine.h" + +// ============================ MEMBER FUNCTIONS =============================== + +// ----------------------------------------------------------------------------- +// CSIPExSIPClientEstablishingState::CSIPExSIPClientEstablishingState +// (other items were commented in a header). +// ----------------------------------------------------------------------------- +// +CSIPExSIPClientEstablishingState::CSIPExSIPClientEstablishingState() + { + } + +// ----------------------------------------------------------------------------- +// CSIPExSIPClientEstablishingState::~CSIPExSIPClientEstablishingState +// (other items were commented in a header). +// ----------------------------------------------------------------------------- +// +EXPORT_C CSIPExSIPClientEstablishingState::~CSIPExSIPClientEstablishingState() + { + } + +// ----------------------------------------------------------------------------- +// CSIPExSIPClientEstablishingState::NewL() +// (other items were commented in a header). +// ----------------------------------------------------------------------------- +// +EXPORT_C CSIPExSIPClientEstablishingState* CSIPExSIPClientEstablishingState::NewL() + { + CSIPExSIPClientEstablishingState* self = + new (ELeave) CSIPExSIPClientEstablishingState(); + return self; + } + +// ----------------------------------------------------------------------------- +// CSIPExSIPClientEstablishingState::LinkStates() +// (other items were commented in a header). +// ----------------------------------------------------------------------------- +// +void CSIPExSIPClientEstablishingState::LinkStates( + CSIPExSIPStateBase& aIdleState, + CSIPExSIPStateBase& aClientOfferingState, + CSIPExSIPStateBase& aEstablishedState ) + { + iIdleState = &aIdleState; + iClientOfferingState = &aClientOfferingState; + iEstablishedState = &aEstablishedState; + } + + +// ----------------------------------------------------------------------------- +// CSIPExSIPClientEstablishingState::CancelInviteL() +// (other items were commented in a header). +// ----------------------------------------------------------------------------- +void CSIPExSIPClientEstablishingState::CancelInviteL( CSIPExSIPEngine& aEngine ) + { + // Get the current Client Transaction + CSIPClientTransaction& clientTA = aEngine.ClientTx(); + + // Use it the to send CANCEL request + CSIPClientTransaction* ta = clientTA.CancelL(); + delete ta; + + aEngine.SetCurrentState( iIdleState ); + aEngine.Observer()->InvitationCancelled(); + } + + +// ----------------------------------------------------------------------------- +// CSIPExSIPClientEstablishingState::ResponseReceivedL() +// (other items were commented in a header). +// ----------------------------------------------------------------------------- +void CSIPExSIPClientEstablishingState::ResponseReceivedL( + CSIPExSIPEngine& aEngine, + CSIPClientTransaction& aTransaction ) + { + const CSIPResponseElements* respElem = aTransaction.ResponseElements(); + + TUint statusCode = respElem->StatusCode(); + + if ( statusCode >= 200 && statusCode < 300 ) + { + // Final Response received from network. + // Get the IP Address of the remote party from the Response Elements + const TInetAddr addr = + aEngine.IPAddressFromResponseElementsL( *respElem ); + + // Get used iap's id + TUint32 iapId( 0 ); + CSIPConnection* conn = aEngine.DialogAssoc().Dialog().Connection(); + if ( conn ) + { + iapId = conn->IapId(); + } + + // Then, send ACK to remote party + CSIPInviteDialogAssoc& dialogAssoc = aEngine.DialogAssoc(); + dialogAssoc.SendAckL( aTransaction ); + + + // After ACKing, notify observer, giving IP Address and IAP id + // as parameter + aEngine.Observer()->InviteAcceptedByRemote( addr, iapId ); + + + // Finally, change engine state + aEngine.SetCurrentState( iEstablishedState ); + } + else if ( statusCode >= 100 && statusCode < 200 ) + { + // Provisional Response received from network. + aEngine.Observer()->InviteReceivedByRemote( statusCode ); + aEngine.SetCurrentState( iClientOfferingState ); + } + else + { + aEngine.Observer()->InviteDeclinedByRemote( statusCode ); + aEngine.SetCurrentState( iIdleState ); + } + } + +// End of file +