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