sl@0
|
1 |
// Copyright (c) 2006-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 |
// The implementation of a some classes
|
sl@0
|
15 |
// to be provided by ECom.
|
sl@0
|
16 |
// 1. Using the CExampleInterface class as a base.
|
sl@0
|
17 |
//
|
sl@0
|
18 |
//
|
sl@0
|
19 |
|
sl@0
|
20 |
#include "Interface.h"
|
sl@0
|
21 |
#include "ImplementationProxy.h"
|
sl@0
|
22 |
#include "TestUtilities.h" // For __FILE__LINE__
|
sl@0
|
23 |
|
sl@0
|
24 |
// ____________________________________________________________________________
|
sl@0
|
25 |
//
|
sl@0
|
26 |
/**
|
sl@0
|
27 |
Intended usage: This class implements the functionality promised by
|
sl@0
|
28 |
the CExampleInterface defintion class. It does little apart from provides a test instance
|
sl@0
|
29 |
which may be retrieved and run for testing purposes.
|
sl@0
|
30 |
Its resolution is based upon its registered default data string that
|
sl@0
|
31 |
advertises this class as being able to handle 'text\wml' data.
|
sl@0
|
32 |
@since 7.0
|
sl@0
|
33 |
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
class CImplementationClassSeven : public CExampleInterface
|
sl@0
|
36 |
{
|
sl@0
|
37 |
// Methods
|
sl@0
|
38 |
public:
|
sl@0
|
39 |
/**
|
sl@0
|
40 |
@fn NewL(TAny* aInitParams)
|
sl@0
|
41 |
Intended Usage : Standardised safe construction which leaves nothing the cleanup stack.
|
sl@0
|
42 |
Error Condition : Leaves with error code.
|
sl@0
|
43 |
@leave KErrNoMemory.
|
sl@0
|
44 |
@since 7.0
|
sl@0
|
45 |
@param aInitParams The parameter struct used for initialising this object
|
sl@0
|
46 |
@return CImplementationClassSeven* The class instance.
|
sl@0
|
47 |
@pre None
|
sl@0
|
48 |
@post CImplementationClassSeven has been constructed,
|
sl@0
|
49 |
and initialised.
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
static CImplementationClassSeven* NewL(TAny* aInitParams);
|
sl@0
|
52 |
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
@fn ~CImplementationClassSeven()
|
sl@0
|
55 |
Intended Usage : Default Destructor
|
sl@0
|
56 |
Error Condition : None
|
sl@0
|
57 |
@since 7.0
|
sl@0
|
58 |
@pre CImplementationClassSeven has been constructed
|
sl@0
|
59 |
@post CImplementationClassSeven has been completely destroyed.
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
virtual ~CImplementationClassSeven();
|
sl@0
|
62 |
|
sl@0
|
63 |
/**
|
sl@0
|
64 |
@fn DoMethodL()
|
sl@0
|
65 |
Intended Usage : Overload of the pure interface method
|
sl@0
|
66 |
Representative of a method provided on
|
sl@0
|
67 |
the interface by the interface definer.
|
sl@0
|
68 |
Error Condition : Leaves with an error code.
|
sl@0
|
69 |
@leave KErrNoMemory, KErrNotSupported.
|
sl@0
|
70 |
@since 7.0
|
sl@0
|
71 |
@return None
|
sl@0
|
72 |
@pre CImplementationClassSeven has been constructed
|
sl@0
|
73 |
@post Unspecified
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
void DoMethodL();
|
sl@0
|
76 |
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
@fn FireAndForget()
|
sl@0
|
79 |
Intended Usage : Overload of the pure interface method
|
sl@0
|
80 |
asynchronous function which
|
sl@0
|
81 |
an interface definer could specify.
|
sl@0
|
82 |
It allows the client to call the function in the knowledge
|
sl@0
|
83 |
that the object will commit suicide when the
|
sl@0
|
84 |
function completes.
|
sl@0
|
85 |
Error Condition : None.
|
sl@0
|
86 |
@since 7.0
|
sl@0
|
87 |
@return TInt KErrNone for success.
|
sl@0
|
88 |
@pre CImplementationClassSeven has been constructed
|
sl@0
|
89 |
@post Unspecified
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
TInt FireAndForget();
|
sl@0
|
92 |
|
sl@0
|
93 |
/**
|
sl@0
|
94 |
@fn ImplId()
|
sl@0
|
95 |
Intended Usage : To verify the object returned by ECOM.
|
sl@0
|
96 |
Error Condition : None.
|
sl@0
|
97 |
@since 7.0
|
sl@0
|
98 |
@return TUid (ECOM's Implementation Uid for this class.)
|
sl@0
|
99 |
@pre CImplementationClassThree has been constructed
|
sl@0
|
100 |
@post Unspecified
|
sl@0
|
101 |
*/
|
sl@0
|
102 |
TUid ImplId();
|
sl@0
|
103 |
|
sl@0
|
104 |
private:
|
sl@0
|
105 |
/**
|
sl@0
|
106 |
@fn CImplementationClassSeven()
|
sl@0
|
107 |
Intended Usage : Default Constructor : usable only by derived classes
|
sl@0
|
108 |
Error Condition : None
|
sl@0
|
109 |
@since 7.0
|
sl@0
|
110 |
@pre None
|
sl@0
|
111 |
@post CImplementationClassSeven has been constructed
|
sl@0
|
112 |
*/
|
sl@0
|
113 |
CImplementationClassSeven();
|
sl@0
|
114 |
|
sl@0
|
115 |
/**
|
sl@0
|
116 |
@fn ConstructL(TAny* aInitParams)
|
sl@0
|
117 |
Intended Usage : Completes the safe construction of the CImplementationClassSeven object
|
sl@0
|
118 |
Error Condition : Leaves with the error code.
|
sl@0
|
119 |
@leave KErrNoMemory.
|
sl@0
|
120 |
@since 7.0
|
sl@0
|
121 |
@param aInitParams The parameter struct used for initialising this object
|
sl@0
|
122 |
@pre CImplementationClassSeven has been constructed
|
sl@0
|
123 |
@post CImplementationClassSeven has been fully initialised.
|
sl@0
|
124 |
*/
|
sl@0
|
125 |
void ConstructL(TAny* aInitParams);
|
sl@0
|
126 |
|
sl@0
|
127 |
// Provide the CActive overloads
|
sl@0
|
128 |
void RunL();
|
sl@0
|
129 |
void DoCancel();
|
sl@0
|
130 |
TInt RunError(TInt aError);
|
sl@0
|
131 |
|
sl@0
|
132 |
private:
|
sl@0
|
133 |
/** A place for allocating some memory in the ConstructL */
|
sl@0
|
134 |
HBufC* iInternalDescriptor;
|
sl@0
|
135 |
/** An int to be stored in TLS to test its useage */
|
sl@0
|
136 |
TInt iTLSInt;
|
sl@0
|
137 |
|
sl@0
|
138 |
}; // End of CImplementationClassSeven definition
|
sl@0
|
139 |
|
sl@0
|
140 |
// __________________________________________________________________________
|
sl@0
|
141 |
// Implementation
|
sl@0
|
142 |
|
sl@0
|
143 |
CImplementationClassSeven* CImplementationClassSeven::NewL(TAny* aInitParams)
|
sl@0
|
144 |
// Intended Usage : Safe construction which leaves nothing upon the cleanup stack
|
sl@0
|
145 |
// Error Condition : Will leave with an appropriate error code
|
sl@0
|
146 |
// Dependencies : CBase
|
sl@0
|
147 |
// @param " "
|
sl@0
|
148 |
// @return CImplementationClassSeven* a pointer to the fully instantiated CImplementationClassSeven object
|
sl@0
|
149 |
// @pre None
|
sl@0
|
150 |
// @post The object has been fully instantiated
|
sl@0
|
151 |
// Static member
|
sl@0
|
152 |
{
|
sl@0
|
153 |
CImplementationClassSeven* self=new(ELeave) CImplementationClassSeven(); // calls c'tor
|
sl@0
|
154 |
CleanupStack::PushL(self); // Make the construction safe by using the cleanup stack
|
sl@0
|
155 |
self->ConstructL(aInitParams); // Complete the 'construction'.
|
sl@0
|
156 |
CleanupStack::Pop(self);
|
sl@0
|
157 |
return self;
|
sl@0
|
158 |
}
|
sl@0
|
159 |
|
sl@0
|
160 |
CImplementationClassSeven::~CImplementationClassSeven()
|
sl@0
|
161 |
// Default virtual d'tor
|
sl@0
|
162 |
{
|
sl@0
|
163 |
delete iInternalDescriptor;
|
sl@0
|
164 |
}
|
sl@0
|
165 |
|
sl@0
|
166 |
CImplementationClassSeven::CImplementationClassSeven()
|
sl@0
|
167 |
// Default c'tor for use by derived and
|
sl@0
|
168 |
// static construction methods only
|
sl@0
|
169 |
: CExampleInterface()
|
sl@0
|
170 |
{
|
sl@0
|
171 |
// Deliberately do nothing here : See ConstructL() for initialisation completion.
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
void CImplementationClassSeven::ConstructL(TAny*)
|
sl@0
|
175 |
// Intended Usage : Safely complete the initialization of the constructed object
|
sl@0
|
176 |
// Error Condition : Will leave with an appropriate error code
|
sl@0
|
177 |
// Dependencies : CBase
|
sl@0
|
178 |
// @return void
|
sl@0
|
179 |
// @pre CImplementationClassSeven has been constructed
|
sl@0
|
180 |
// @post The CImplementationClassSeven object has been fully instantiated
|
sl@0
|
181 |
//
|
sl@0
|
182 |
{
|
sl@0
|
183 |
}
|
sl@0
|
184 |
|
sl@0
|
185 |
void CImplementationClassSeven::DoMethodL()
|
sl@0
|
186 |
{
|
sl@0
|
187 |
// Access TLS to ensure it has been set properly
|
sl@0
|
188 |
REINTERPRET_CAST(TInt*, Dll::Tls());
|
sl@0
|
189 |
}
|
sl@0
|
190 |
|
sl@0
|
191 |
TInt CImplementationClassSeven::FireAndForget()
|
sl@0
|
192 |
{
|
sl@0
|
193 |
TRAPD(error,DoMethodL());
|
sl@0
|
194 |
return error; // Always KErrNotSupported
|
sl@0
|
195 |
}
|
sl@0
|
196 |
|
sl@0
|
197 |
// Provide the CActive overloads
|
sl@0
|
198 |
void CImplementationClassSeven::RunL()
|
sl@0
|
199 |
{
|
sl@0
|
200 |
// Do nothing : should never be called
|
sl@0
|
201 |
__ASSERT_DEBUG(EFalse,User::Invariant());
|
sl@0
|
202 |
}
|
sl@0
|
203 |
|
sl@0
|
204 |
void CImplementationClassSeven::DoCancel()
|
sl@0
|
205 |
{
|
sl@0
|
206 |
// Do nothing
|
sl@0
|
207 |
}
|
sl@0
|
208 |
|
sl@0
|
209 |
TInt CImplementationClassSeven::RunError(TInt /*aError*/)
|
sl@0
|
210 |
{
|
sl@0
|
211 |
return KErrNone;
|
sl@0
|
212 |
}
|
sl@0
|
213 |
|
sl@0
|
214 |
TUid CImplementationClassSeven::ImplId()
|
sl@0
|
215 |
{
|
sl@0
|
216 |
TUid idVal = {0x10009DBC};
|
sl@0
|
217 |
return (idVal);
|
sl@0
|
218 |
}
|
sl@0
|
219 |
|
sl@0
|
220 |
// __________________________________________________________________________
|
sl@0
|
221 |
// Exported proxy for instantiation method resolution
|
sl@0
|
222 |
// Define the interface UIDs
|
sl@0
|
223 |
const TImplementationProxy ImplementationTable[] =
|
sl@0
|
224 |
{
|
sl@0
|
225 |
IMPLEMENTATION_PROXY_ENTRY(0x10009DBC, CImplementationClassSeven::NewL)
|
sl@0
|
226 |
};
|
sl@0
|
227 |
|
sl@0
|
228 |
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
|
sl@0
|
229 |
{
|
sl@0
|
230 |
aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
|
sl@0
|
231 |
return ImplementationTable;
|
sl@0
|
232 |
}
|
sl@0
|
233 |
|