Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // The implementation of a some classes
15 // to be provided by ECom.
16 // 1. Using the CExampleInterface class as a base.
20 #include "Interface.h"
21 #include "ImplementationProxy.h"
22 #include "ExampleResolver.h"
23 #include "TestUtilities.h" // For __FILE__LINE__
25 // ____________________________________________________________________________
27 /** Intended usage: This class implements the functionality promised by
28 the CExampleInterface defintion class. It does little apart from provides a test instance
29 which may be retrieved and run for testing purposes.
30 Its resolution is based upon its registered default data string that
31 advertises this class as being able to handle 'text\wml' data.
34 class CImplementationClassOne : public CExampleInterface
39 @fn NewL(TAny* aInitParams)
40 Intended Usage : Standardised safe construction which leaves nothing the cleanup stack.
41 Error Condition : Leaves with error code.
44 @param aInitParams The parameter struct used for initialising this object
45 @return CImplementationClassOne* The class instance.
47 @post CImplementationClassOne has been constructed,
50 static CImplementationClassOne* NewL(TAny* aInitParams);
53 @fn ~CImplementationClassOne()
54 Intended Usage : Default Destructor
55 Error Condition : None
57 @pre CImplementationClassOne has been constructed
58 @post CImplementationClassOne has been completely destroyed.
60 virtual ~CImplementationClassOne();
64 Intended Usage : Overload of the pure interface method
65 Representative of a method provided on
66 the interface by the interface definer.
67 Error Condition : Leaves with an error code.
68 @leave KErrNoMemory, KErrNotSupported.
71 @pre CImplementationClassOne has been constructed
78 Intended Usage : Overload of the pure interface method
79 asynchronous function which
80 an interface definer could specify.
81 It allows the client to call the function in the knowledge
82 that the object will commit suicide when the
84 Error Condition : None.
86 @return TInt KErrNone for success.
87 @pre CImplementationClassOne has been constructed
94 Intended Usage : To verify the object returned by ECOM.
95 Error Condition : None.
97 @return TUid (ECOM's Implementation Uid for this class.)
98 @pre CImplementationClassThree has been constructed
105 @fn CImplementationClassOne()
106 Intended Usage : Default Constructor : usable only by derived classes
107 Error Condition : None
110 @post CImplementationClassOne has been constructed
112 CImplementationClassOne();
115 @fn ConstructL(TAny* aInitParams)
116 Intended Usage : Completes the safe construction of the CImplementationClassOne object
117 Error Condition : Leaves with the error code.
120 @param aInitParams The parameter struct used for initialising this object
121 @pre CImplementationClassOne has been constructed
122 @post CImplementationClassOne has been fully initialised.
124 void ConstructL(TAny* aInitParams);
126 // Provide the CActive overloads
129 TInt RunError(TInt aError);
132 /** A place for allocating some memory in the ConstructL */
133 HBufC* iInternalDescriptor;
134 /** An int to be stored in TLS to test its useage */
137 }; // End of CImplementationClassOne definition
139 // __________________________________________________________________________
142 CImplementationClassOne* CImplementationClassOne::NewL(TAny* aInitParams)
143 // Intended Usage : Safe construction which leaves nothing upon the cleanup stack
144 // Error Condition : Will leave with an appropriate error code
145 // Dependencies : CBase
147 // @return CImplementationClassOne* a pointer to the fully instantiated CImplementationClassOne object
149 // @post The object has been fully instantiated
152 CImplementationClassOne* self=new(ELeave) CImplementationClassOne(); // calls c'tor
153 CleanupStack::PushL(self); // Make the construction safe by using the cleanup stack
154 self->ConstructL(aInitParams); // Complete the 'construction'.
155 CleanupStack::Pop(self);
159 CImplementationClassOne::~CImplementationClassOne()
160 // Default virtual d'tor
162 delete iInternalDescriptor;
165 CImplementationClassOne::CImplementationClassOne()
166 // Default c'tor for use by derived and
167 // static construction methods only
168 : CExampleInterface()
170 // Deliberately do nothing here : See ConstructL() for initialisation completion.
173 void CImplementationClassOne::ConstructL(TAny* aInitParams)
174 // Intended Usage : Safely complete the initialization of the constructed object
175 // Error Condition : Will leave with an appropriate error code
176 // Dependencies : CBase
178 // @pre CImplementationClassOne has been constructed
179 // @post The CImplementationClassOne object has been fully instantiated
182 TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*,
184 if(params->descriptor)
185 iInternalDescriptor = params->descriptor->AllocL();
187 Dll::SetTls(&iTLSInt);
190 void CImplementationClassOne::DoMethodL()
192 // Access TLS to ensure it has been set properly
193 REINTERPRET_CAST(TInt*, Dll::Tls());
196 TInt CImplementationClassOne::FireAndForget()
198 TRAPD(error,DoMethodL());
199 return error; // Always KErrNotSupported
202 // Provide the CActive overloads
203 void CImplementationClassOne::RunL()
205 // Do nothing : should never be called
206 __ASSERT_DEBUG(EFalse,User::Invariant());
209 void CImplementationClassOne::DoCancel()
214 TInt CImplementationClassOne::RunError(TInt aError)
219 TUid CImplementationClassOne::ImplId()
221 TUid idVal = {0x10009DC3};
225 // ____________________________________________________________________________
227 /** Intended usage: This class implements the functionality promised by
228 the CExampleInterface defintion class. It does little apart from provides a test instance
229 which may be retrieved and run for testing purposes.
230 Its resolution is based upon its registered default data string that
231 advertises this class as being able to handle 'text\*' data.
232 I.e. it should be 'found' by wildcard matching for any text handling type.
236 class CImplementationClassTwo : public CExampleInterface
241 @fn NewL(TAny* aParams)
242 Intended Usage : Standardised safe construction which leaves nothing the cleanup stack.
243 Error Condition : Leaves with error code.
246 @return CImplementationClassTwo* The class instance.
248 @post CImplementationClassTwo has been constructed,
251 static CImplementationClassTwo* NewL(TAny* aParams);
254 @fn ~CImplementationClassTwo()
255 Intended Usage : Default Destructor
256 Error Condition : None
258 @pre CImplementationClassTwo has been constructed
259 @post CImplementationClassTwo has been completely destroyed.
261 virtual ~CImplementationClassTwo();
265 Intended Usage : Overload of the pure interface method
266 Representative of a method provided on
267 the interface by the interface definer.
268 Error Condition : Leaves with an error code.
269 @leave KErrNoMemory, KErrNotSupported.
272 @pre CImplementationClassTwo has been constructed
279 Intended Usage : Overload of the pure interface method
280 asynchronous function which
281 an interface definer could specify.
282 It allows the client to call the function in the knowledge
283 that the object will commit suicide when the
285 Error Condition : None.
287 @return TInt KErrNone for success.
288 @pre CImplementationClassTwo has been constructed
291 TInt FireAndForget();
295 Intended Usage : To verify the object returned by ECOM.
296 Error Condition : None.
298 @return TUid (ECOM's Implementation Uid for this class.)
299 @pre CImplementationClassThree has been constructed
306 @fn CImplementationClassTwo()
307 Intended Usage : Default Constructor : usable only by derived classes
308 Error Condition : None
311 @post CImplementationClassTwo has been constructed
313 CImplementationClassTwo();
317 Intended Usage : Completes the safe construction of the CImplementationClassTwo object
318 Error Condition : Leaves with the error code.
321 @pre CImplementationClassTwo has been constructed
322 @post CImplementationClassTwo has been fully initialised.
326 // Provide the CActive overloads
329 TInt RunError(TInt aError);
330 }; // End of CImplementationClassTwo definition
332 // __________________________________________________________________________
335 CImplementationClassTwo* CImplementationClassTwo::NewL(TAny* /* aParams */)
336 // Intended Usage : Safe construction which leaves nothing upon the cleanup stack
337 // Error Condition : Will leave with an appropriate error code
338 // Dependencies : CBase
340 // @return CImplementationClassTwo* a pointer to the fully instantiated CImplementationClassTwo object
342 // @post The object has been fully instantiated
345 CImplementationClassTwo* self=new(ELeave) CImplementationClassTwo(); // calls c'tor
346 CleanupStack::PushL(self); // Make the construction safe by using the cleanup stack
347 self->ConstructL(); // Complete the 'construction'.
348 CleanupStack::Pop(self);
352 CImplementationClassTwo::~CImplementationClassTwo()
353 // Default virtual d'tor
358 CImplementationClassTwo::CImplementationClassTwo()
359 // Default c'tor for use by derived and
360 // static construction methods only
361 : CExampleInterface()
363 CActiveScheduler::Add(this);
366 void CImplementationClassTwo::ConstructL()
367 // Intended Usage : Safely complete the initialization of the constructed object
368 // Error Condition : Will leave with an appropriate error code
369 // Dependencies : CBase
371 // @pre CImplementationClassTwo has been constructed
372 // @post The CImplementationClassTwo object has been fully instantiated
378 void CImplementationClassTwo::DoMethodL()
383 TInt CImplementationClassTwo::FireAndForget()
385 TInt error = KErrNone;
386 TRAP(error,DoMethodL());
390 iStatus = KRequestPending;
391 TRequestStatus* status = &iStatus;
392 User::RequestComplete(status, KErrNone);
397 // Provide the CActive overloads
398 void CImplementationClassTwo::RunL()
400 delete this; // AAARGH : Scary!!!!
403 void CImplementationClassTwo::DoCancel()
408 TInt CImplementationClassTwo::RunError(TInt aError)
413 TUid CImplementationClassTwo::ImplId()
415 TUid idVal = {0x10009DC4};
419 // __________________________________________________________________________
420 // Exported proxy for instantiation method resolution
421 // Define the interface UIDs
422 const TImplementationProxy ImplementationTable[] =
424 IMPLEMENTATION_PROXY_ENTRY(0x10009DC3, CImplementationClassOne::NewL),
425 IMPLEMENTATION_PROXY_ENTRY(0x10009DC4, CImplementationClassTwo::NewL),
426 IMPLEMENTATION_PROXY_ENTRY(0x10009DD0, CExampleResolver::NewL)
429 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
431 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
433 return ImplementationTable;