sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// This file contains the Interface Definition for the
|
sl@0
|
15 |
// CExampleInterface class.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#if defined (_MSC_VER) && (_MSC_VER >= 1000)
|
sl@0
|
20 |
#pragma once
|
sl@0
|
21 |
#endif
|
sl@0
|
22 |
#ifndef _INC_INTERFACE_3A1D07A10155_INCLUDED
|
sl@0
|
23 |
#define _INC_INTERFACE_3A1D07A10155_INCLUDED
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <e32base.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
#include <ecom/ecom.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
@internalComponent
|
sl@0
|
31 |
@since 7.0
|
sl@0
|
32 |
An example abstract class being representative of the
|
sl@0
|
33 |
concrete class which the client wishes to use.
|
sl@0
|
34 |
It acts as a base, for a real class to provide all the
|
sl@0
|
35 |
functionality that a client requires.
|
sl@0
|
36 |
It supplies instantiation & destruction by using
|
sl@0
|
37 |
the ECom framework, and functional services
|
sl@0
|
38 |
by using the methods of the actual class.
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
|
sl@0
|
41 |
class CExampleInterface : public CActive
|
sl@0
|
42 |
{
|
sl@0
|
43 |
public:
|
sl@0
|
44 |
// The interface for passing initialisation parameters
|
sl@0
|
45 |
// to the derived class constructor.
|
sl@0
|
46 |
typedef struct _exampleInterfaceInitParams
|
sl@0
|
47 |
{
|
sl@0
|
48 |
TInt integer;
|
sl@0
|
49 |
const TDesC* descriptor;
|
sl@0
|
50 |
} TExampleInterfaceInitParams;
|
sl@0
|
51 |
|
sl@0
|
52 |
//The function which instantiates an object of this type
|
sl@0
|
53 |
//(eg NewL for a CBase derived object).
|
sl@0
|
54 |
|
sl@0
|
55 |
static CExampleInterface* NewL();
|
sl@0
|
56 |
|
sl@0
|
57 |
//The function which instantiates an object of this type
|
sl@0
|
58 |
// using the MatchString as the resolver parameters.
|
sl@0
|
59 |
//(eg NewL for a CBase derived object).
|
sl@0
|
60 |
static CExampleInterface* NewL(const TDesC8& aMatchString);
|
sl@0
|
61 |
|
sl@0
|
62 |
//The function which instantiates an object of this type with the required parameters
|
sl@0
|
63 |
//(eg NewL for a CBase derived object).
|
sl@0
|
64 |
|
sl@0
|
65 |
static CExampleInterface* NewL(TInt aIntParameterTest, const TDesC& aDesParameterTest);
|
sl@0
|
66 |
|
sl@0
|
67 |
//The function which instantiates an object of this type
|
sl@0
|
68 |
//using ImplementationUid as a resolution parameter.
|
sl@0
|
69 |
//(eg NewL for a CBase derived object).
|
sl@0
|
70 |
static CExampleInterface* NewL2(const TUid aImplementationUid);
|
sl@0
|
71 |
|
sl@0
|
72 |
//The function which instantiates an object of this type
|
sl@0
|
73 |
//(eg NewL for a CBase derived object).
|
sl@0
|
74 |
static CExampleInterface* NewL3();
|
sl@0
|
75 |
|
sl@0
|
76 |
//The function which instantiates an object of this type
|
sl@0
|
77 |
//(eg NewL for a CBase derived object).
|
sl@0
|
78 |
static CExampleInterface* NewL4();
|
sl@0
|
79 |
|
sl@0
|
80 |
//The functions which instantiate object of this type with extended interface
|
sl@0
|
81 |
static CExampleInterface* NewL5();
|
sl@0
|
82 |
static CExampleInterface* NewL6();
|
sl@0
|
83 |
static CExampleInterface* NewL7();
|
sl@0
|
84 |
static CExampleInterface* NewL8();
|
sl@0
|
85 |
|
sl@0
|
86 |
//Standardised destructor.
|
sl@0
|
87 |
virtual ~CExampleInterface();
|
sl@0
|
88 |
|
sl@0
|
89 |
//Request a list of all available implementations which
|
sl@0
|
90 |
//satisfy this given interface.
|
sl@0
|
91 |
|
sl@0
|
92 |
static void ListImplementationsL(RImplInfoPtrArray& aImplInfoArray);
|
sl@0
|
93 |
static void ListAllImplementationsL(RImplInfoPtrArray& aImplInfoArray);
|
sl@0
|
94 |
|
sl@0
|
95 |
|
sl@0
|
96 |
//Pure interface method
|
sl@0
|
97 |
//Representative of a method provided on the interface by
|
sl@0
|
98 |
//the interface definer.
|
sl@0
|
99 |
|
sl@0
|
100 |
virtual void DoMethodL() = 0;
|
sl@0
|
101 |
|
sl@0
|
102 |
//Pure interface method
|
sl@0
|
103 |
//Representative of an asynchronous function which
|
sl@0
|
104 |
//an interface definer could specify.
|
sl@0
|
105 |
//It allows the client to call the function in the knowledge
|
sl@0
|
106 |
//that the object will commit suicide when the
|
sl@0
|
107 |
//function completes.
|
sl@0
|
108 |
|
sl@0
|
109 |
virtual TInt FireAndForget() = 0;
|
sl@0
|
110 |
|
sl@0
|
111 |
//Pure interface method,
|
sl@0
|
112 |
//Used to cross check the implementation returned by ECOM.
|
sl@0
|
113 |
virtual TUid ImplId() = 0;
|
sl@0
|
114 |
public:
|
sl@0
|
115 |
// Wrapper methods which get and release the extended interface using
|
sl@0
|
116 |
// the member iDtor_ID_Key
|
sl@0
|
117 |
TAny* GetExtendedInterfaceL(const TUid& aInterfaceUid);
|
sl@0
|
118 |
void ManuallyReleaseExtendedInterfaceL(const TUid& aInterfaceUid);
|
sl@0
|
119 |
|
sl@0
|
120 |
protected:
|
sl@0
|
121 |
//Default c'tor
|
sl@0
|
122 |
inline CExampleInterface();
|
sl@0
|
123 |
|
sl@0
|
124 |
//Attributes
|
sl@0
|
125 |
private:
|
sl@0
|
126 |
|
sl@0
|
127 |
TUid iDtor_ID_Key;
|
sl@0
|
128 |
|
sl@0
|
129 |
// Declare the Test bed state accessor as a friend
|
sl@0
|
130 |
friend class TExampleInterface_StateAccessor;
|
sl@0
|
131 |
|
sl@0
|
132 |
};
|
sl@0
|
133 |
|
sl@0
|
134 |
// Example extended interface classes
|
sl@0
|
135 |
class MExampleInterfaceExtended
|
sl@0
|
136 |
{
|
sl@0
|
137 |
public:
|
sl@0
|
138 |
//Pure interface method
|
sl@0
|
139 |
//Representative of a method provided on the interface by
|
sl@0
|
140 |
//the interface definer.
|
sl@0
|
141 |
virtual void DoMethodExtended() = 0;
|
sl@0
|
142 |
};
|
sl@0
|
143 |
|
sl@0
|
144 |
class MExampleInterfaceExtended2
|
sl@0
|
145 |
{
|
sl@0
|
146 |
public:
|
sl@0
|
147 |
|
sl@0
|
148 |
//Pure interface method
|
sl@0
|
149 |
//Representative of a method provided on the interface by
|
sl@0
|
150 |
//the interface definer.
|
sl@0
|
151 |
virtual void DoMethodExtended2() = 0;
|
sl@0
|
152 |
};
|
sl@0
|
153 |
#include "Interface.inl"
|
sl@0
|
154 |
|
sl@0
|
155 |
#endif /* _INC_INTERFACE_3A1D07A10155_INCLUDED */
|
sl@0
|
156 |
|