Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #if (!defined __T_ECOM_SESSION_API_DATA_H__)
21 #define __T_ECOM_SESSION_API_DATA_H__
24 #include "DataWrapperBase.h"
26 // Classes to get to protected members
31 #include <ecom/ecom.h>
33 class CT_EComSessionData: public CDataWrapperBase
36 struct TTestInterfaceInitParams
39 const TDesC* iDescriptor;
43 static CT_EComSessionData* NewL();
45 ~CT_EComSessionData();
47 virtual TAny* GetObject();
48 virtual TBool DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
50 // MTPActiveCallback implementation
51 virtual void RunL(CActive* aActive, const TInt aIndex);
58 inline void DoCmdOpenL();
59 inline void DoCmdClose();
60 inline void DoCmdFinalClose();
61 inline void DoCmdNotifyOnChange(const TInt aIndex);
62 inline void DoCmdCancelNotifyOnChange();
63 inline void DoCmdListImplementationsL(const TDesC& aSection);
64 inline void DoCmdCreateImplementationL(const TDesC& aSection);
65 inline void DoCmdDestroyedImplementation(const TDesC& aSection);
67 inline void RunNotifyOnChangeL(const TInt aIndex);
72 void GetUid(const TDesC& aSection, TUid& aUid);
73 TBool GetResolver(const TDesC& aSection, TPtrC& aResolver);
74 TBool GetResolverUid(const TDesC& aSection, TUid& aUid);
75 TBool GetExpectedResult(const TDesC& aSection, TInt& aExpectedResult);
76 TBool GetOffset(const TDesC& aSection, TInt& aOffset);
77 TBool GetDescriptor(const TDesC& aSection, TPtrC& aDescriptor);
78 TBool GetInteger(const TDesC& aSection, TInt& aInt);
79 TBool GetEmpty(const TDesC& aSection, TBool& aEmpty);
82 REComSession iSession;
84 CActiveCallback* iActiveNotifyOnChange;
85 TTestInterfaceInitParams iInitParams;
86 TBuf<KMaxTestExecuteCommandLength> iInterfaceDesc;
87 RImplInfoPtrArray iInfoArray;
89 //Initially iImplementationInterface==NULL. Object can be created by DoCmdCreateImplementationL.
90 TAny* iImplementationInterface;
92 #endif /* __T_ECOM_SESSION_API_DATA_H__ */