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 "TestUtilities.h" // For __FILE__LINE__
24 // ____________________________________________________________________________
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 CImplementationClassFive : 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 CImplementationClassFive* The class instance.
47 @post CImplementationClassFive has been constructed,
50 static CImplementationClassFive* NewL(TAny* aInitParams);
53 @fn ~CImplementationClassFive()
54 Intended Usage : Default Destructor
55 Error Condition : None
57 @pre CImplementationClassFive has been constructed
58 @post CImplementationClassFive has been completely destroyed.
60 virtual ~CImplementationClassFive();
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 CImplementationClassFive 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 CImplementationClassFive 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 CImplementationClassFive()
106 Intended Usage : Default Constructor : usable only by derived classes
107 Error Condition : None
110 @post CImplementationClassFive has been constructed
112 CImplementationClassFive();
115 @fn ConstructL(TAny* aInitParams)
116 Intended Usage : Completes the safe construction of the CImplementationClassFive object
117 Error Condition : Leaves with the error code.
120 @param aInitParams The parameter struct used for initialising this object
121 @pre CImplementationClassFive has been constructed
122 @post CImplementationClassFive 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 CImplementationClassFive definition
139 // __________________________________________________________________________
142 CImplementationClassFive* CImplementationClassFive::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 CImplementationClassFive* a pointer to the fully instantiated CImplementationClassFive object
149 // @post The object has been fully instantiated
152 CImplementationClassFive* self=new(ELeave) CImplementationClassFive(); // 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 CImplementationClassFive::~CImplementationClassFive()
160 // Default virtual d'tor
162 delete iInternalDescriptor;
165 CImplementationClassFive::CImplementationClassFive()
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 CImplementationClassFive::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 CImplementationClassFive has been constructed
179 // @post The CImplementationClassFive 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 CImplementationClassFive::DoMethodL()
192 // Access TLS to ensure it has been set properly
193 REINTERPRET_CAST(TInt*, Dll::Tls());
196 TInt CImplementationClassFive::FireAndForget()
198 TRAPD(error,DoMethodL());
199 return error; // Always KErrNotSupported
202 // Provide the CActive overloads
203 void CImplementationClassFive::RunL()
205 // Do nothing : should never be called
206 __ASSERT_DEBUG(EFalse,User::Invariant());
209 void CImplementationClassFive::DoCancel()
214 TInt CImplementationClassFive::RunError(TInt /*aError*/)
219 TUid CImplementationClassFive::ImplId()
221 TUid idVal = {0x101F847C};
225 // __________________________________________________________________________
226 // Exported proxy for instantiation method resolution
227 // Define the interface UIDs
228 const TImplementationProxy ImplementationTable[] =
230 IMPLEMENTATION_PROXY_ENTRY(0x101F847C, CImplementationClassFive::NewL)
233 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
235 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
236 return ImplementationTable;