os/ossrv/lowlevellibsandfws/pluginfw/Framework/Suicidal/Suicidal.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // The implementation of a Suicidal class
    15 // to be provided by ECom.
    16 // 1. Using the CExampleInterface class as a base.
    17 // 
    18 //
    19 
    20 #include "TestUtilities.h"	// For __FILE__LINE__
    21 #include "Interface.h"
    22 #include "ImplementationProxy.h"
    23 
    24 // ____________________________________________________________________________
    25 // 
    26 /**
    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.
    32 	@since 7.0
    33  */
    34 class CSuicidalImplementation : public CExampleInterface
    35 {
    36 // Methods
    37 public:
    38 /**
    39 	@fn				NewL()
    40 	Intended Usage	: Standardised safe construction which leaves nothing the cleanup stack.
    41 	Error Condition	: Leaves with error code.
    42 	@leave          KErrNoMemory.
    43 	@since			7.0
    44 	@return			CSuicidalImplementation* The class instance.
    45 	@pre 			None
    46 	@post			CSuicidalImplementation has been constructed,
    47 					and initialised.
    48  */
    49 	static CSuicidalImplementation* NewL();
    50 
    51 /**
    52 	@fn				~CSuicidalImplementation()
    53 	Intended Usage	: Default Destructor	
    54 	Error Condition	: None	
    55 	@since			7.0
    56 	@pre 			CSuicidalImplementation has been constructed
    57 	@post			CSuicidalImplementation has been completely destroyed, 
    58 					and is no longer registered with the scheduler.
    59  */
    60 	virtual ~CSuicidalImplementation();
    61 
    62 /**
    63 	@fn				DoMethodL()
    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.
    69 	@since			7.0
    70 	@return			None
    71 	@pre 			CSuicidalImplementation has been constructed
    72 	@post			Unspecified
    73  */	
    74 	void DoMethodL();
    75 
    76 /**
    77 	@fn				FireAndForget()
    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 
    83 					function completes.
    84 	Error Condition	: None.
    85 	@since			7.0
    86 	@return			TInt KErrNone for success.
    87 	@pre 			CSuicidalImplementation has been constructed
    88 	@post			CSuicidalImplementation is active with a status of KRequestPending.
    89  */
    90 	TInt FireAndForget();
    91 
    92  /**
    93 	@fn				ImplId()
    94 	Intended Usage	: To verify the object returned by ECOM.
    95 	Error Condition	: None.
    96 	@since			7.0s
    97 	@return			TUid (ECOM's Implementation Uid for this class.)
    98 	@pre 			CImplementationClassThree has been constructed
    99 	@post			Unspecified
   100  */
   101 	TUid ImplId();
   102 
   103 private:
   104 /**
   105 	@fn				CSuicidalImplementation()
   106 	Intended Usage	: Default Constructor : usable only by derived classes	
   107 	Error Condition	: None	
   108 	@since			7.0
   109 	@pre 			None
   110 	@post			CSuicidalImplementation has been constructed
   111  */
   112 	CSuicidalImplementation();
   113 
   114 /**
   115 	@fn				ConstructL()
   116 	Intended Usage	: Completes the safe construction of the CSuicidalImplementation object
   117 	Error Condition	: Leaves with the error code.	
   118 	@leave                  KErrNoMemory.	
   119 	@since			7.0
   120 	@pre 			CSuicidalImplementation has been constructed
   121 	@post			CSuicidalImplementation has been fully initialised.
   122  */
   123 	void ConstructL();
   124 
   125 // Provide the CActive overloads
   126 /**
   127 	@fn				RunL()
   128 	Intended Usage	: When the object activates commit suicide. 
   129 	Error Condition	: Not enough memory available to complete the scan.
   130 	@leave   		KErrNoMemory
   131 	@since			7.0
   132 	@pre 			CSuicidalImplementation is fully constructed.
   133 	@post			CSuicidalImplementation has committed suicide,
   134 					and deleted itself.
   135  */
   136 	void RunL();
   137 /**
   138 	@fn				DoCancel()
   139 	Intended Usage	: The cancel action called by CActive::Cancel(). 
   140 	Error Condition	: None	
   141 	@since			7.0
   142 	@pre 			CSuicidalImplementation is fully constructed.
   143 	@post			CSuicidalImplementation behaviour is cancelled and
   144 					it is no longer active on the current scheduler.
   145  */
   146 	void DoCancel();
   147 
   148 /**
   149 	@fn				RunError(TInt aError)
   150 	Intended Usage	: Called by the RunL leaving.
   151 	@since			7.0
   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.
   157  */
   158 	TInt RunError(TInt aError);
   159 
   160 };  // End of CSuicidalImplementation definition
   161 
   162 // __________________________________________________________________________
   163 // Implementation
   164 const TInt KDefaultTestAllocSize = 8;
   165 
   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
   170 // @param			" "
   171 // @return			CSuicidalImplementation* a pointer to the fully instantiated CSuicidalImplementation object
   172 // @pre 			None
   173 // @post			The object has been fully instantiated
   174 // Static member
   175 	{
   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);
   180 	return self;
   181 	}
   182 
   183 CSuicidalImplementation::~CSuicidalImplementation()
   184 // Default virtual d'tor
   185 	{
   186 	// Do Nothing
   187 	}
   188 
   189 CSuicidalImplementation::CSuicidalImplementation()
   190 // Default c'tor for use by derived and 
   191 // static construction methods only
   192 : CExampleInterface()
   193 	{
   194 	// Deliberately do nothing here : See ConstructL() for initialisation completion.
   195 	}
   196 
   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
   201 // @return			void
   202 // @pre 			CSuicidalImplementation has been constructed
   203 // @post			The CSuicidalImplementation object has been fully instantiated
   204 //
   205 	{
   206 	// Allocate and delete some memory 
   207 	// so that leave testing can check 
   208 	// for the correct handling.
   209 	HBufC* temp = HBufC::NewL(KDefaultTestAllocSize);
   210 	delete temp;
   211 	}
   212 
   213 void CSuicidalImplementation::DoMethodL()
   214 	{
   215 	CActiveScheduler::Add(this);
   216 	}
   217 
   218 TInt CSuicidalImplementation::FireAndForget()
   219 	{
   220 	TInt error = KErrNone;
   221 	TRAP(error,DoMethodL());
   222 	if(!IsActive())
   223 		{
   224 		SetActive();
   225 		iStatus = KRequestPending;
   226 		TRequestStatus* status = &iStatus;
   227 		User::RequestComplete(status, error);
   228 		}
   229 	return error;
   230 	}
   231 
   232 // Provide the CActive overloads
   233 void CSuicidalImplementation::RunL()
   234 	{
   235 	User::LeaveIfError(iStatus.Int());
   236 	delete this;	// AAARGH : Scary self deletion!!!!
   237 	}
   238 
   239 void CSuicidalImplementation::DoCancel()
   240 	{
   241 	// Do nothing
   242 	}
   243 
   244 TInt CSuicidalImplementation::RunError(TInt)
   245 	{
   246 	delete this;		// AAARGH : Scary self deletion!!!!
   247 	return KErrNone;	// Don't Panic
   248 	}
   249 
   250 TUid CSuicidalImplementation::ImplId()
   251 	{
   252 	TUid idVal = {0x10009DC5};
   253 	return (idVal);
   254 	}
   255 
   256 // __________________________________________________________________________
   257 // Exported proxy for instantiation method resolution
   258 // Define the interface UIDs
   259 const TImplementationProxy ImplementationTable[] = 
   260 	{
   261 		IMPLEMENTATION_PROXY_ENTRY(0x10009DC5,	CSuicidalImplementation::NewL)	// SuicidalImplementationClass
   262 	};
   263 
   264 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
   265 	{
   266 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   267 
   268 	return ImplementationTable;
   269 	}