diff -r 000000000000 -r b16258d2340f applayerpluginsandutils/httpprotocolplugins/httpclient/thttpconnectcallback.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/applayerpluginsandutils/httpprotocolplugins/httpclient/thttpconnectcallback.cpp Tue Feb 02 01:09:52 2010 +0200 @@ -0,0 +1,76 @@ +// Copyright (c) 2003-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 "thttpconnectcallback.h" + +#include + +#include "mhttpconnectobserver.h" + + +THttpConnectCallback::THttpConnectCallback(MHttpConnectObserver& aObserver) +: iObserver(aObserver) + { + } + +/* + * Methods from MHTTPTransactionCallback + */ + +void THttpConnectCallback::MHFRunL(RHTTPTransaction aTransaction, const THTTPEvent& aEvent) + { + switch( aEvent.iStatus ) + { + case THTTPEvent::EGotResponseHeaders: + { + // @todo could have a callback that notifies someone of CONNECT response headers... + } break; + case THTTPEvent::EResponseComplete: + { + // Inform the observer that this CONNECT transaction has succeeded. + iObserver.ConnectCompleteL(aTransaction.Id()); + } break; + case THTTPEvent::EGotResponseBodyData: + { + // Just release the body data, as it is of no use! + MHTTPDataSupplier* data = aTransaction.Response().Body(); + data->ReleaseData(); + } break; + case THTTPEvent::ERedirectRequiresConfirmation: + case THTTPEvent::ENeedTunnel: + case THTTPEvent::EGotResponseTrailerHeaders: + { + // Should not be receiving these events + User::Invariant(); + } break; + case THTTPEvent::EFailed: + { + // Inform the observer that the CONNECT transaction has failed. + iObserver.ConnectErrorL(aTransaction.Id()); + } break; + + case THTTPEvent::ESucceeded: + case THTTPEvent::EUnrecoverableError: + default: + // Do nothing - Succeeded handled by response complete, failed handled by Failed States + break; + }; + } + +TInt THttpConnectCallback::MHFRunError(TInt /*aError*/, RHTTPTransaction aTransaction, const THTTPEvent& /*aEvent*/) + { + iObserver.FailPendingTransactions(aTransaction.Id()); + return KErrNone; + }