Update contrib.
1 // Copyright (c) 2006-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 CImplementationClassSeven : 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 CImplementationClassSeven* The class instance.
48 @post CImplementationClassSeven has been constructed,
51 static CImplementationClassSeven* NewL(TAny* aInitParams);
54 @fn ~CImplementationClassSeven()
55 Intended Usage : Default Destructor
56 Error Condition : None
58 @pre CImplementationClassSeven has been constructed
59 @post CImplementationClassSeven has been completely destroyed.
61 virtual ~CImplementationClassSeven();
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 CImplementationClassSeven 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 CImplementationClassSeven 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 CImplementationClassSeven()
107 Intended Usage : Default Constructor : usable only by derived classes
108 Error Condition : None
111 @post CImplementationClassSeven has been constructed
113 CImplementationClassSeven();
116 @fn ConstructL(TAny* aInitParams)
117 Intended Usage : Completes the safe construction of the CImplementationClassSeven object
118 Error Condition : Leaves with the error code.
121 @param aInitParams The parameter struct used for initialising this object
122 @pre CImplementationClassSeven has been constructed
123 @post CImplementationClassSeven has been fully initialised.
125 void ConstructL(TAny* aInitParams);
127 // Provide the CActive overloads
130 TInt RunError(TInt aError);
133 /** A place for allocating some memory in the ConstructL */
134 HBufC* iInternalDescriptor;
135 /** An int to be stored in TLS to test its useage */
138 }; // End of CImplementationClassSeven definition
140 // __________________________________________________________________________
143 CImplementationClassSeven* CImplementationClassSeven::NewL(TAny* aInitParams)
144 // Intended Usage : Safe construction which leaves nothing upon the cleanup stack
145 // Error Condition : Will leave with an appropriate error code
146 // Dependencies : CBase
148 // @return CImplementationClassSeven* a pointer to the fully instantiated CImplementationClassSeven object
150 // @post The object has been fully instantiated
153 CImplementationClassSeven* self=new(ELeave) CImplementationClassSeven(); // calls c'tor
154 CleanupStack::PushL(self); // Make the construction safe by using the cleanup stack
155 self->ConstructL(aInitParams); // Complete the 'construction'.
156 CleanupStack::Pop(self);
160 CImplementationClassSeven::~CImplementationClassSeven()
161 // Default virtual d'tor
163 delete iInternalDescriptor;
166 CImplementationClassSeven::CImplementationClassSeven()
167 // Default c'tor for use by derived and
168 // static construction methods only
169 : CExampleInterface()
171 // Deliberately do nothing here : See ConstructL() for initialisation completion.
174 void CImplementationClassSeven::ConstructL(TAny*)
175 // Intended Usage : Safely complete the initialization of the constructed object
176 // Error Condition : Will leave with an appropriate error code
177 // Dependencies : CBase
179 // @pre CImplementationClassSeven has been constructed
180 // @post The CImplementationClassSeven object has been fully instantiated
185 void CImplementationClassSeven::DoMethodL()
187 // Access TLS to ensure it has been set properly
188 REINTERPRET_CAST(TInt*, Dll::Tls());
191 TInt CImplementationClassSeven::FireAndForget()
193 TRAPD(error,DoMethodL());
194 return error; // Always KErrNotSupported
197 // Provide the CActive overloads
198 void CImplementationClassSeven::RunL()
200 // Do nothing : should never be called
201 __ASSERT_DEBUG(EFalse,User::Invariant());
204 void CImplementationClassSeven::DoCancel()
209 TInt CImplementationClassSeven::RunError(TInt /*aError*/)
214 TUid CImplementationClassSeven::ImplId()
216 TUid idVal = {0x10009DBC};
220 // __________________________________________________________________________
221 // Exported proxy for instantiation method resolution
222 // Define the interface UIDs
223 const TImplementationProxy ImplementationTable[] =
225 IMPLEMENTATION_PROXY_ENTRY(0x10009DBC, CImplementationClassSeven::NewL)
228 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
230 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
231 return ImplementationTable;