diff -r 000000000000 -r 307788aac0a8 realtimenetprots/sipfw/SIP/Server/src/CSIPRoutingRequestStore.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/realtimenetprots/sipfw/SIP/Server/src/CSIPRoutingRequestStore.h Tue Feb 02 01:03:15 2010 +0200 @@ -0,0 +1,91 @@ +/* +* Copyright (c) 2005-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: +* Name : CSIPRoutingRequestStore.h +* Part of : SIP Server Core +* Version : SIP/4.0 +* +*/ + + + + +/** + @internalComponent +*/ + +#ifndef CSIPROUTINGREQUESTSTORE_H +#define CSIPROUTINGREQUESTSTORE_H + +#include +#include "MSIPRequestRouter.h" +#include "SipRequestHandlerObserver.h" +#include "_sipcodecdefs.h" + +class CSipServerCore; +class CSIPRoutingRequest; + + +class CSIPRoutingRequestStore : public CBase, + public MSIPRequestRouter, + public MSIPRequestHandlerObserver + { +public: // Contstructors and destructor + + static CSIPRoutingRequestStore* NewL(CSipServerCore& aServerCore); + static CSIPRoutingRequestStore* NewLC(CSipServerCore& aServerCore); + + ~CSIPRoutingRequestStore (); + +public: // From MSIPRequestRouter + + TUint32 TransactionOwnerL(CSIPRequest& aRequest, + TUint32 aIapId, + MSIPRequestRouterObserver& aObs); + + + void Cancel(TUint32 aRequestId); + + +public: // From MSIPRequestHandlerObserver + + void ClientFoundL(TUint32 aRequestId, TUid aUid); + + void ClientNotFoundL(TUint32 aRequestId, CSIPResponse* aSIPResponse); + + void ErrorOccurred(TUint32 aRequestId, TInt aError); + + +private: // New functions + + CSIPRoutingRequest* Find(TUint32 aRequestId); + void RemoveAndDelete(TUint32 aRequestId); + +private: // Second phase constructors + + CSIPRoutingRequestStore (CSipServerCore& aServerCore); + +private: // Data + + CSipServerCore& iServerCore; + TSglQue iList; + +private: // For testing purposes + + UNIT_TEST(CSIPRoutingRequestStoreTest) + }; + +#endif // CSIPROUTINGREQUESTSTORE_H + +// End of File