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 Suicidal class
15 // to be provided by ECom.
16 // 1. Using the CExampleInterface class as a base.
20 #include "TestUtilities.h" // For __FILE__LINE__
21 #include "Interface.h"
22 #include "ImplementationProxy.h"
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, and then commits suicide.
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 CSuicidalImplementation : public CExampleInterface
40 Intended Usage : Standardised safe construction which leaves nothing the cleanup stack.
41 Error Condition : Leaves with error code.
44 @return CSuicidalImplementation* The class instance.
46 @post CSuicidalImplementation has been constructed,
49 static CSuicidalImplementation* NewL();
52 @fn ~CSuicidalImplementation()
53 Intended Usage : Default Destructor
54 Error Condition : None
56 @pre CSuicidalImplementation has been constructed
57 @post CSuicidalImplementation has been completely destroyed,
58 and is no longer registered with the scheduler.
60 virtual ~CSuicidalImplementation();
64 Intended Usage : Overload of the pure interface method
65 Representative of some method provided on
66 the interface by the interface definer.
67 Error Condition : Leaves with an error code.
68 @leave KErrNoMemory, KErrNotSupported.
71 @pre CSuicidalImplementation 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 CSuicidalImplementation has been constructed
88 @post CSuicidalImplementation is active with a status of KRequestPending.
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 CSuicidalImplementation()
106 Intended Usage : Default Constructor : usable only by derived classes
107 Error Condition : None
110 @post CSuicidalImplementation has been constructed
112 CSuicidalImplementation();
116 Intended Usage : Completes the safe construction of the CSuicidalImplementation object
117 Error Condition : Leaves with the error code.
120 @pre CSuicidalImplementation has been constructed
121 @post CSuicidalImplementation has been fully initialised.
125 // Provide the CActive overloads
128 Intended Usage : When the object activates commit suicide.
129 Error Condition : Not enough memory available to complete the scan.
132 @pre CSuicidalImplementation is fully constructed.
133 @post CSuicidalImplementation has committed suicide,
139 Intended Usage : The cancel action called by CActive::Cancel().
140 Error Condition : None
142 @pre CSuicidalImplementation is fully constructed.
143 @post CSuicidalImplementation behaviour is cancelled and
144 it is no longer active on the current scheduler.
149 @fn RunError(TInt aError)
150 Intended Usage : Called by the RunL leaving.
152 @param aError The error code that the RunL left with.
153 @return TInt KErrNone.
154 @pre CSuicidalImplementation is fully constructed.
155 @post CSuicidalImplementation is returned to a
156 sensible active state.
158 TInt RunError(TInt aError);
160 }; // End of CSuicidalImplementation definition
162 // __________________________________________________________________________
164 const TInt KDefaultTestAllocSize = 8;
166 CSuicidalImplementation* CSuicidalImplementation::NewL()
167 // Intended Usage : Safe construction which leaves nothing upon the cleanup stack
168 // Error Condition : Will leave with an appropriate error code
169 // Dependencies : CBase
171 // @return CSuicidalImplementation* a pointer to the fully instantiated CSuicidalImplementation object
173 // @post The object has been fully instantiated
176 CSuicidalImplementation* self=new(ELeave) CSuicidalImplementation(); // calls c'tor
177 CleanupStack::PushL(self); // Make the construction safe by using the cleanup stack
178 self->ConstructL(); // Complete the 'construction'.
179 CleanupStack::Pop(self);
183 CSuicidalImplementation::~CSuicidalImplementation()
184 // Default virtual d'tor
189 CSuicidalImplementation::CSuicidalImplementation()
190 // Default c'tor for use by derived and
191 // static construction methods only
192 : CExampleInterface()
194 // Deliberately do nothing here : See ConstructL() for initialisation completion.
197 void CSuicidalImplementation::ConstructL()
198 // Intended Usage : Safely complete the initialization of the constructed object
199 // Error Condition : Will leave with an appropriate error code
200 // Dependencies : CBase
202 // @pre CSuicidalImplementation has been constructed
203 // @post The CSuicidalImplementation object has been fully instantiated
206 // Allocate and delete some memory
207 // so that leave testing can check
208 // for the correct handling.
209 HBufC* temp = HBufC::NewL(KDefaultTestAllocSize);
213 void CSuicidalImplementation::DoMethodL()
215 CActiveScheduler::Add(this);
218 TInt CSuicidalImplementation::FireAndForget()
220 TInt error = KErrNone;
221 TRAP(error,DoMethodL());
225 iStatus = KRequestPending;
226 TRequestStatus* status = &iStatus;
227 User::RequestComplete(status, error);
232 // Provide the CActive overloads
233 void CSuicidalImplementation::RunL()
235 User::LeaveIfError(iStatus.Int());
236 delete this; // AAARGH : Scary self deletion!!!!
239 void CSuicidalImplementation::DoCancel()
244 TInt CSuicidalImplementation::RunError(TInt)
246 delete this; // AAARGH : Scary self deletion!!!!
247 return KErrNone; // Don't Panic
250 TUid CSuicidalImplementation::ImplId()
252 TUid idVal = {0x10009DC5};
256 // __________________________________________________________________________
257 // Exported proxy for instantiation method resolution
258 // Define the interface UIDs
259 const TImplementationProxy ImplementationTable[] =
261 IMPLEMENTATION_PROXY_ENTRY(0x10009DC5, CSuicidalImplementation::NewL) // SuicidalImplementationClass
264 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
266 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
268 return ImplementationTable;