os/ossrv/lowlevellibsandfws/pluginfw/Framework/Example/EComSwiExample.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // The implementation of a classe
    15 // to be provided by ECom.
    16 // 1. Using the CExampleInterface class as a base.
    17 // 
    18 //
    19 
    20 #include "Interface.h"
    21 #include "ImplementationProxy.h"
    22 #include "TestUtilities.h"	// For __FILE__LINE__
    23 
    24 // ____________________________________________________________________________
    25 // 
    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.
    31 	@since 7.0
    32  */
    33 class CImplementationClassOne : public CExampleInterface
    34 {
    35 // Methods
    36 public:
    37 /**
    38 	@fn				NewL(TAny* aInitParams)
    39 	Intended Usage	: Standardised safe construction which leaves nothing the cleanup stack.
    40 	Error Condition	: Leaves with error code.
    41 	@leave          	KErrNoMemory.
    42 	@since			7.0
    43 	@param			aInitParams The parameter struct used for initialising this object
    44 	@return			CImplementationClassOne* The class instance.
    45 	@pre 			None
    46 	@post			CImplementationClassOne has been constructed,
    47 					and initialised.
    48  */
    49 	static CImplementationClassOne* NewL(TAny* aInitParams);
    50 
    51 /**
    52 	@fn				~CImplementationClassOne()
    53 	Intended Usage	: Default Destructor	
    54 	Error Condition	: None	
    55 	@since			7.0
    56 	@pre 			CImplementationClassOne has been constructed
    57 	@post			CImplementationClassOne has been completely destroyed.
    58  */
    59 	virtual ~CImplementationClassOne();
    60 
    61 /**
    62 	@fn				DoMethodL()
    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.
    68 	@since			7.0
    69 	@return			None
    70 	@pre 			CImplementationClassOne has been constructed
    71 	@post			Unspecified
    72  */	
    73 	void DoMethodL();
    74 
    75 /**
    76 	@fn				FireAndForget()
    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 
    82 					function completes.
    83 	Error Condition	: None.
    84 	@since			7.0
    85 	@return			TInt KErrNone for success.
    86 	@pre 			CImplementationClassOne has been constructed
    87 	@post			Unspecified
    88  */
    89 	TInt FireAndForget();
    90 
    91  /**
    92 	@fn				ImplId()
    93 	Intended Usage	: To verify the object returned by ECOM.
    94 	Error Condition	: None.
    95 	@since			7.0s
    96 	@return			TUid (ECOM's Implementation Uid for this class.)
    97 	@pre 			CImplementationClassThree has been constructed
    98 	@post			Unspecified
    99  */
   100 	TUid ImplId();
   101 
   102 private:
   103 /**
   104 	@fn				CImplementationClassOne()
   105 	Intended Usage	: Default Constructor : usable only by derived classes	
   106 	Error Condition	: None	
   107 	@since			7.0
   108 	@pre 			None
   109 	@post			CImplementationClassOne has been constructed
   110  */
   111 	CImplementationClassOne();
   112 
   113 /**
   114 	@fn				ConstructL(TAny* aInitParams)
   115 	Intended Usage	: Completes the safe construction of the CImplementationClassOne object
   116 	Error Condition	: Leaves with the error code.	
   117 	@leave          	KErrNoMemory.	
   118 	@since			7.0
   119 	@param			aInitParams The parameter struct used for initialising this object
   120 	@pre 			CImplementationClassOne has been constructed
   121 	@post			CImplementationClassOne has been fully initialised.
   122  */
   123 	void ConstructL(TAny* aInitParams);
   124 
   125 // Provide the CActive overloads
   126 	void RunL();
   127 	void DoCancel();
   128 	TInt RunError(TInt aError);
   129 
   130 private:
   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 */	
   134 	TInt	iTLSInt;
   135 
   136 };  // End of CImplementationClassOne definition
   137 
   138 // __________________________________________________________________________
   139 // Implementation
   140 
   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
   145 // @param			" "
   146 // @return			CImplementationClassOne* a pointer to the fully instantiated CImplementationClassOne object
   147 // @pre 			None
   148 // @post			The object has been fully instantiated
   149 // Static member
   150 	{
   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);
   155 	return self;
   156 	}
   157 
   158 CImplementationClassOne::~CImplementationClassOne()
   159 // Default virtual d'tor
   160 	{
   161 	delete iInternalDescriptor;
   162 	}
   163 
   164 CImplementationClassOne::CImplementationClassOne()
   165 // Default c'tor for use by derived and 
   166 // static construction methods only
   167 : CExampleInterface()
   168 	{
   169 	// Deliberately do nothing here : See ConstructL() for initialisation completion.
   170 	}
   171 
   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
   176 // @return			void
   177 // @pre 			CImplementationClassOne has been constructed
   178 // @post			The CImplementationClassOne object has been fully instantiated
   179 //
   180 	{
   181 	TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*,
   182 														   aInitParams);
   183 	if(params->descriptor)
   184 		iInternalDescriptor = params->descriptor->AllocL();
   185 
   186 	Dll::SetTls(&iTLSInt);
   187 	}
   188 
   189 void CImplementationClassOne::DoMethodL()
   190 	{
   191 	// Access TLS to ensure it has been set properly
   192 	REINTERPRET_CAST(TInt*, Dll::Tls());
   193 	}
   194 
   195 TInt CImplementationClassOne::FireAndForget()
   196 	{
   197 	TRAPD(error,DoMethodL());
   198 	return error;			// Always KErrNotSupported
   199 	}
   200 
   201 // Provide the CActive overloads
   202 void CImplementationClassOne::RunL()
   203 	{
   204 	// Do nothing : should never be called
   205 	__ASSERT_DEBUG(EFalse,User::Invariant());
   206 	}
   207 
   208 void CImplementationClassOne::DoCancel()
   209 	{
   210 	// Do nothing
   211 	}
   212 
   213 TInt CImplementationClassOne::RunError(TInt aError)
   214 	{
   215 	return aError;
   216 	}
   217 
   218 TUid CImplementationClassOne::ImplId()
   219 	{
   220 	TUid idVal = {0x10009DDA};
   221 	return (idVal);
   222 	}
   223 
   224 
   225 // __________________________________________________________________________
   226 // Exported proxy for instantiation method resolution
   227 // Define the interface UIDs
   228 const TImplementationProxy ImplementationTable[] = 
   229 	{
   230 		IMPLEMENTATION_PROXY_ENTRY(0x10009DDA,	CImplementationClassOne::NewL),
   231 	};
   232 
   233 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
   234 	{
   235 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   236 
   237 	return ImplementationTable;
   238 	}
   239