diff -r b6f2a363adf7 -r 7797b2f86d2b imservices/ossprotocoladaptation/src/cossprotocollogoutrequest.cpp --- a/imservices/ossprotocoladaptation/src/cossprotocollogoutrequest.cpp Wed Apr 14 16:17:20 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,200 +0,0 @@ -/* -* Copyright (c) 2007-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: Login Request to the Network Server. -* -*/ - - -#include "cossprotocollogoutrequest.h" -#include -#include "mossprotocolconnectionmanager.h" -#include "ossprotocolpluginlogger.h" -#include "cossprotocolconnection.h" -#include "cossprotocolconnectionmanager.h" -#include -#include "stringutils.h" -#include -#include "msgliterals.h" -#include "xmppparameters.h" -#include "msg_enums.h" -#include - - - -// ======== MEMBER FUNCTIONS ======== - -// --------------------------------------------------------------------------- -// COSSProtocolLogoutRequest::COSSProtocolLogoutRequest() -// --------------------------------------------------------------------------- -// -COSSProtocolLogoutRequest::COSSProtocolLogoutRequest ( - MOSSProtocolConnectionManager& aConnMan, - TXIMPRequestId aRequestId ) : - CActive ( CActive::EPriorityStandard ), - iRequestId ( aRequestId ), - iConnMan ( aConnMan ) - { - LOGGER ( TXT ( "COSSProtocolLogoutRequest::COSSProtocolLogoutRequest Start" ) ); - CActiveScheduler::Add ( this ); - LOGGER ( TXT ( "COSSProtocolLogoutRequest::COSSProtocolLogoutRequest End" ) ); - } - - -// --------------------------------------------------------------------------- -// COSSProtocolLogoutRequest::ConstructL() -// --------------------------------------------------------------------------- -// -void COSSProtocolLogoutRequest::ConstructL() - { - LOGGER ( TXT ( "COSSProtocolLogoutRequest::COSSProtocolLogoutRequest Start-End" ) ); - } - - -// --------------------------------------------------------------------------- -// COSSProtocolLogoutRequest::NewL() -// --------------------------------------------------------------------------- -// -COSSProtocolLogoutRequest* COSSProtocolLogoutRequest::NewL ( - MOSSProtocolConnectionManager& aConnMan, - TXIMPRequestId aRequestId ) - { - LOGGER ( TXT ( "COSSProtocolLogoutRequest::NewL Start" ) ); - - COSSProtocolLogoutRequest* self = - new ( ELeave ) COSSProtocolLogoutRequest ( aConnMan, aRequestId ); - CleanupStack::PushL ( self ); - self->ConstructL(); - CleanupStack::Pop ( self ); - - LOGGER ( TXT ( "COSSProtocolLogoutRequest::NewL End" ) ); - return self; - } - - -// --------------------------------------------------------------------------- -// COSSProtocolLogoutRequest::NewLC() -// --------------------------------------------------------------------------- -// -COSSProtocolLogoutRequest* COSSProtocolLogoutRequest::NewLC ( - MOSSProtocolConnectionManager& aConnMan, - TXIMPRequestId aRequestId ) - { - LOGGER ( TXT ( "COSSProtocolLogoutRequest::NewLC Start" ) ); - - COSSProtocolLogoutRequest* self = - COSSProtocolLogoutRequest::NewL ( aConnMan, aRequestId ); - CleanupStack::PushL ( self ); - - LOGGER ( TXT ( "COSSProtocolLogoutRequest::NewLC End" ) ); - return self; - } - -// --------------------------------------------------------------------------- -// COSSProtocolLogoutRequest::~COSSProtocolLogoutRequest() -// --------------------------------------------------------------------------- -// -COSSProtocolLogoutRequest::~COSSProtocolLogoutRequest() - { - LOGGER ( TXT ( "::~COSSProtocolLogoutRequest Start" ) ); - Cancel(); - } - - -// --------------------------------------------------------------------------- -// COSSProtocolLogoutRequest::DoCancel() -// --------------------------------------------------------------------------- -// -void COSSProtocolLogoutRequest::DoCancel() - { - } - - -// --------------------------------------------------------------------------- -// COSSProtocolLogoutRequest::RunL() -// --------------------------------------------------------------------------- -// -void COSSProtocolLogoutRequest::RunL() - { - LOGGER ( TXT ( "COSSProtocolLogoutRequest::RunL Start" ) ); - message_hdr_resp* msg_struct = NULL; - - User::LeaveIfError ( iStatus.Int() ); - char* pResponse = NULL; - pResponse = iConnMan.DataHandler().ResponseL ( iSendId ); - msg_struct = ( message_hdr_resp* )pResponse ; - - if( !( msg_struct->response ) ) - { - switch( msg_struct->error_type ) - { - - default: //for all other error codes like ssl related are mapped to general error - iConnMan.HandleToHost().HandleRequestCompleted ( iRequestId, KXIMPErrServiceGeneralError ); - break; - } - } - else - { - iConnMan.HandleToHost().HandleRequestCompleted ( iRequestId, KErrNone ); - } - - free( pResponse ); - - - delete this; - - LOGGER ( TXT ( "COSSProtocolLogoutRequest::RunL End" ) ); - } - - -// --------------------------------------------------------------------------- -// COSSProtocolLogoutRequest::RunError() -// --------------------------------------------------------------------------- -// -TInt COSSProtocolLogoutRequest::RunError ( TInt aError ) - { - LOGGER ( TXT ( "COSSProtocolLogoutRequest::RunError Start" ) ); - - iConnMan.HandleToHost().HandleRequestCompleted ( iRequestId, aError ); - - LOGGER ( TXT ( "COSSProtocolLogoutRequest::RunError - id: %d" ), aError ); - - delete this; - LOGGER ( TXT ( "COSSProtocolLogoutRequest::RunError End" ) ); - return KErrNone; - } - - -// --------------------------------------------------------------------------- -// COSSProtocolLogoutRequest::IssueLogoutRequestL() -// --------------------------------------------------------------------------- -// -void COSSProtocolLogoutRequest::IssueLogoutRequestL() - { - LOGGER ( TXT ( "COSSProtocolLogoutRequest::IssueLogoutRequestL Start" ) ); - - message_hdr_req msgHdr = {0,}; - - msgHdr.message_type = ELogout_Request; - - iSendId = iConnMan.DataHandler().SendDataL ( iStatus, ( char* ) &msgHdr, sizeof ( message_hdr_req ) ); - - // signal the scheduler - SetActive(); - - LOGGER ( TXT ( "COSSProtocolConnection::IssueLogoutRequestL() End" ) ); - } - - -// End of file