First public contribution.
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.
35 class CImplementationClassThree : public CExampleInterface
40 @fn NewL(TAny* aInitParams)
41 Intended Usage : Standardised safe construction which leaves nothing the cleanup stack.
42 Error Condition : Leaves with error code.
45 @param aInitParams The parameter struct used for initialising this object
46 @return CImplementationClassThree* The class instance.
48 @post CImplementationClassThree has been constructed,
51 static CImplementationClassThree* NewL(TAny* aInitParams);
54 @fn ~CImplementationClassThree()
55 Intended Usage : Default Destructor
56 Error Condition : None
58 @pre CImplementationClassThree has been constructed
59 @post CImplementationClassThree has been completely destroyed.
61 virtual ~CImplementationClassThree();
65 Intended Usage : Overload of the pure interface method
66 Representative of a method provided on
67 the interface by the interface definer.
68 Error Condition : Leaves with an error code.
69 @leave KErrNoMemory, KErrNotSupported.
72 @pre CImplementationClassThree has been constructed
79 Intended Usage : Overload of the pure interface method
80 asynchronous function which
81 an interface definer could specify.
82 It allows the client to call the function in the knowledge
83 that the object will commit suicide when the
85 Error Condition : None.
87 @return TInt KErrNone for success.
88 @pre CImplementationClassThree has been constructed
95 Intended Usage : To verify the object returned by ECOM.
96 Error Condition : None.
98 @return TUid (ECOM's Implementation Uid for this class.)
99 @pre CImplementationClassThree has been constructed
106 @fn CImplementationClassThree()
107 Intended Usage : Default Constructor : usable only by derived classes
108 Error Condition : None
111 @post CImplementationClassThree has been constructed
113 CImplementationClassThree();
116 @fn ConstructL(TAny* aInitParams)
117 Intended Usage : Completes the safe construction of the CImplementationClassThree object
118 Error Condition : Leaves with the error code.
121 @param aInitParams The parameter struct used for initialising this object
122 @pre CImplementationClassThree has been constructed
123 @post CImplementationClassThree has been fully initialised.
125 void ConstructL(TAny* aInitParams);
127 // Provide the CActive overloads
130 TInt RunError(TInt aError);
135 /** A place for allocating some memory in the ConstructL */
136 HBufC* iInternalDescriptor;
137 /** An int to be stored in TLS to test its useage */
140 }; // End of CImplementationClassThree definition
142 // __________________________________________________________________________
145 CImplementationClassThree* CImplementationClassThree::NewL(TAny* aInitParams)
146 // Intended Usage : Safe construction which leaves nothing upon the cleanup stack
147 // Error Condition : Will leave with an appropriate error code
148 // Dependencies : CBase
150 // @return CImplementationClassThree* a pointer to the fully instantiated CImplementationClassThree object
152 // @post The object has been fully instantiated
155 CImplementationClassThree* self=new(ELeave) CImplementationClassThree(); // calls c'tor
156 CleanupStack::PushL(self); // Make the construction safe by using the cleanup stack
157 self->ConstructL(aInitParams); // Complete the 'construction'.
158 CleanupStack::Pop(self);
162 CImplementationClassThree::~CImplementationClassThree()
163 // Default virtual d'tor
165 delete iInternalDescriptor;
168 CImplementationClassThree::CImplementationClassThree()
169 // Default c'tor for use by derived and
170 // static construction methods only
171 : CExampleInterface()
173 // Deliberately do nothing here : See ConstructL() for initialisation completion.
176 void CImplementationClassThree::ConstructL(TAny* aInitParams)
177 // Intended Usage : Safely complete the initialization of the constructed object
178 // Error Condition : Will leave with an appropriate error code
179 // Dependencies : CBase
181 // @pre CImplementationClassThree has been constructed
182 // @post The CImplementationClassThree object has been fully instantiated
185 TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*,
187 if(params->descriptor)
188 iInternalDescriptor = params->descriptor->AllocL();
190 Dll::SetTls(&iTLSInt);
193 void CImplementationClassThree::DoMethodL()
195 // Access TLS to ensure it has been set properly
196 REINTERPRET_CAST(TInt*, Dll::Tls());
199 TInt CImplementationClassThree::FireAndForget()
201 TRAPD(error,DoMethodL());
202 return error; // Always KErrNotSupported
205 // Provide the CActive overloads
206 void CImplementationClassThree::RunL()
208 // Do nothing : should never be called
209 __ASSERT_DEBUG(EFalse,User::Invariant());
212 void CImplementationClassThree::DoCancel()
217 TInt CImplementationClassThree::RunError(TInt /*aError*/)
222 TUid CImplementationClassThree::ImplId()
224 TUid idVal = {0x101F8478};
227 // __________________________________________________________________________
228 // Exported proxy for instantiation method resolution
229 // Define the interface UIDs
230 const TImplementationProxy ImplementationTable[] =
232 IMPLEMENTATION_PROXY_ENTRY(0x101F8478, CImplementationClassThree::NewL)
235 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
237 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
238 return ImplementationTable;