websrv_pub/hostlet_connection_api/tsrc/bc/hostconn/inc/testconsumer.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 07 Jan 2010 16:19:19 +0200
changeset 0 62f9d29f7211
permissions -rw-r--r--
Revision: 200951 Kit: 201001

/*
* Copyright (c) 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:  hostconn header declaration      
*
*/








#ifndef __TESTCONSUMER_H__
#define __TESTCONSUMER_H__

//  EXTERNAL INCLUDES
#include <SenServiceConnection.h>

//  INTERNAL INCLUDES

//  FORWARD DECLARATIONS
class CSenHostletConnectionBCTest;

class CTestConsumer : public CBase, public MSenServiceConsumer
    {
    public:

        /**
         * Two phase construction
         */
        static CTestConsumer* NewL(CSenHostletConnectionBCTest* aTestSuite,
                                   void (*ap2HandleMessageL) (CSenHostletConnectionBCTest*, const TDesC8&) = NULL,
                                   void (*ap2HandleErrorL) (CSenHostletConnectionBCTest*, const TInt, const TDesC8&) = NULL,
                                   void (*ap2SetStatus) (CSenHostletConnectionBCTest*, const TInt) = NULL);
        static CTestConsumer* NewLC(CSenHostletConnectionBCTest* aTestSuite,
                                   void (*ap2HandleMessageL) (CSenHostletConnectionBCTest*, const TDesC8&) = NULL,
                                   void (*ap2HandleErrorL) (CSenHostletConnectionBCTest*, const TInt, const TDesC8&) = NULL,
                                   void (*ap2SetStatus) (CSenHostletConnectionBCTest*, const TInt) = NULL);
        /**
         * Destructor
         */
        ~CTestConsumer();

        virtual void HandleMessageL(const TDesC8& aMessage);

        virtual void HandleErrorL(const TInt aErrorCode,
                                  const TDesC8& aMessage);

        virtual void SetStatus(const TInt aStatus);

    public: // Public data => OK in testers, no benefit gained from getters => in real apps, these should be private:
        
        RPointerArray<HBufC8>		iResponses; // ok/error => check iErrorCode to determine which
        RPointerArray<CSenTransportProperties> iResponseProperties;
        RArray<TInt> 				iResponseCodes;// either error code (if handle error) OR KErrNone (if handle message) 
        TInt 						iConnectionStatus;
        TInt 						iTxnId;
        TInt                        iErrorCode;


    private:    // Constructor
        CTestConsumer(CSenHostletConnectionBCTest* aTestSuite,
                      void (*ap2HandleMessageL) (CSenHostletConnectionBCTest*, const TDesC8&) = NULL,
                      void (*ap2HandleErrorL) (CSenHostletConnectionBCTest*, const TInt, const TDesC8&) = NULL,
                      void (*ap2SetStatus) (CSenHostletConnectionBCTest*, const TInt) = NULL);

    private:    // Data
        CSenHostletConnectionBCTest*       ipTestSuite;
        
    private:    // Function pointers
        void (*ip2HandleMessageL) (CSenHostletConnectionBCTest*, const TDesC8&);
        void (*ip2HandleErrorL) (CSenHostletConnectionBCTest*, const TInt, const TDesC8&);
        void (*ip2SetStatus) (CSenHostletConnectionBCTest*, const TInt);
    };

#endif      //  __TESTCONSUMER_H__

// End of file