Update contrib.
1 // Copyright (c) 2007-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 classe
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 // ____________________________________________________________________________
26 /** Intended usage: This class implements the functionality promised by
27 the CExampleInterface defintion class. It does little apart from provides a test instance
28 which may be retrieved and run for testing purposes.
29 Its resolution is based upon its registered default data string that
30 advertises this class as being able to handle 'text\wml' data.
33 class CImplementationClassOne : public CExampleInterface
38 @fn NewL(TAny* aInitParams)
39 Intended Usage : Standardised safe construction which leaves nothing the cleanup stack.
40 Error Condition : Leaves with error code.
43 @param aInitParams The parameter struct used for initialising this object
44 @return CImplementationClassOne* The class instance.
46 @post CImplementationClassOne has been constructed,
49 static CImplementationClassOne* NewL(TAny* aInitParams);
52 @fn ~CImplementationClassOne()
53 Intended Usage : Default Destructor
54 Error Condition : None
56 @pre CImplementationClassOne has been constructed
57 @post CImplementationClassOne has been completely destroyed.
59 virtual ~CImplementationClassOne();
63 Intended Usage : Overload of the pure interface method
64 Representative of a method provided on
65 the interface by the interface definer.
66 Error Condition : Leaves with an error code.
67 @leave KErrNoMemory, KErrNotSupported.
70 @pre CImplementationClassOne has been constructed
77 Intended Usage : Overload of the pure interface method
78 asynchronous function which
79 an interface definer could specify.
80 It allows the client to call the function in the knowledge
81 that the object will commit suicide when the
83 Error Condition : None.
85 @return TInt KErrNone for success.
86 @pre CImplementationClassOne has been constructed
93 Intended Usage : To verify the object returned by ECOM.
94 Error Condition : None.
96 @return TUid (ECOM's Implementation Uid for this class.)
97 @pre CImplementationClassThree has been constructed
104 @fn CImplementationClassOne()
105 Intended Usage : Default Constructor : usable only by derived classes
106 Error Condition : None
109 @post CImplementationClassOne has been constructed
111 CImplementationClassOne();
114 @fn ConstructL(TAny* aInitParams)
115 Intended Usage : Completes the safe construction of the CImplementationClassOne object
116 Error Condition : Leaves with the error code.
119 @param aInitParams The parameter struct used for initialising this object
120 @pre CImplementationClassOne has been constructed
121 @post CImplementationClassOne has been fully initialised.
123 void ConstructL(TAny* aInitParams);
125 // Provide the CActive overloads
128 TInt RunError(TInt aError);
131 /** A place for allocating some memory in the ConstructL */
132 HBufC* iInternalDescriptor;
133 /** An int to be stored in TLS to test its useage */
136 }; // End of CImplementationClassOne definition
138 // __________________________________________________________________________
141 CImplementationClassOne* CImplementationClassOne::NewL(TAny* aInitParams)
142 // Intended Usage : Safe construction which leaves nothing upon the cleanup stack
143 // Error Condition : Will leave with an appropriate error code
144 // Dependencies : CBase
146 // @return CImplementationClassOne* a pointer to the fully instantiated CImplementationClassOne object
148 // @post The object has been fully instantiated
151 CImplementationClassOne* self=new(ELeave) CImplementationClassOne(); // calls c'tor
152 CleanupStack::PushL(self); // Make the construction safe by using the cleanup stack
153 self->ConstructL(aInitParams); // Complete the 'construction'.
154 CleanupStack::Pop(self);
158 CImplementationClassOne::~CImplementationClassOne()
159 // Default virtual d'tor
161 delete iInternalDescriptor;
164 CImplementationClassOne::CImplementationClassOne()
165 // Default c'tor for use by derived and
166 // static construction methods only
167 : CExampleInterface()
169 // Deliberately do nothing here : See ConstructL() for initialisation completion.
172 void CImplementationClassOne::ConstructL(TAny* aInitParams)
173 // Intended Usage : Safely complete the initialization of the constructed object
174 // Error Condition : Will leave with an appropriate error code
175 // Dependencies : CBase
177 // @pre CImplementationClassOne has been constructed
178 // @post The CImplementationClassOne object has been fully instantiated
181 TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*,
183 if(params->descriptor)
184 iInternalDescriptor = params->descriptor->AllocL();
186 Dll::SetTls(&iTLSInt);
189 void CImplementationClassOne::DoMethodL()
191 // Access TLS to ensure it has been set properly
192 REINTERPRET_CAST(TInt*, Dll::Tls());
195 TInt CImplementationClassOne::FireAndForget()
197 TRAPD(error,DoMethodL());
198 return error; // Always KErrNotSupported
201 // Provide the CActive overloads
202 void CImplementationClassOne::RunL()
204 // Do nothing : should never be called
205 __ASSERT_DEBUG(EFalse,User::Invariant());
208 void CImplementationClassOne::DoCancel()
213 TInt CImplementationClassOne::RunError(TInt aError)
218 TUid CImplementationClassOne::ImplId()
220 TUid idVal = {0x10009DDA};
225 // __________________________________________________________________________
226 // Exported proxy for instantiation method resolution
227 // Define the interface UIDs
228 const TImplementationProxy ImplementationTable[] =
230 IMPLEMENTATION_PROXY_ENTRY(0x10009DDA, CImplementationClassOne::NewL),
233 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
235 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
237 return ImplementationTable;