os/ossrv/lowlevellibsandfws/pluginfw/Framework/Example/Example16.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // The implementation of a some classes
    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 /**
    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.
    32 	@since 7.0
    33  */
    34 class CImplementationClass16 : public CExampleInterface
    35 {
    36 // Methods
    37 public:
    38 /**
    39 	@fn				NewL(TAny* aInitParams)
    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 	@param			aInitParams The parameter struct used for initialising this object
    45 	@return			CImplementationClass16* The class instance.
    46 	@pre 			None
    47 	@post			CImplementationClass16 has been constructed,
    48 					and initialised.
    49  */
    50 	static void NewL();
    51 
    52 /**
    53 	@fn				~CImplementationClass16()
    54 	Intended Usage	: Default Destructor	
    55 	Error Condition	: None	
    56 	@since			7.0
    57 	@pre 			CImplementationClass16 has been constructed
    58 	@post			CImplementationClass16 has been completely destroyed.
    59  */
    60 	virtual ~CImplementationClass16();
    61 
    62 /**
    63 	@fn				DoMethodL()
    64 	Intended Usage	: Overload of the pure interface method
    65 					Representative of a 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 			CImplementationClass16 has been constructed
    72 	@post			Unspecified
    73  */	
    74 	void DoMethodL();
    75 
    76 
    77  /**
    78 	@fn				ImplId()
    79 	Intended Usage	: To verify the object returned by ECOM.
    80 	Error Condition	: None.
    81 	@since			7.0
    82 	@return			TUid (ECOM's Implementation Uid for this class.)
    83 	@pre 			CImplementationClassThree has been constructed
    84 	@post			Unspecified
    85  */
    86 	TUid ImplId();
    87 
    88 private:
    89 /**
    90 	@fn				CImplementationClass16()
    91 	Intended Usage	: Default Constructor : usable only by derived classes	
    92 	Error Condition	: None	
    93 	@since			7.0
    94 	@pre 			None
    95 	@post			CImplementationClass16 has been constructed
    96  */
    97 	CImplementationClass16();
    98 
    99 /**
   100 	@fn				ConstructL()
   101 	Intended Usage	: Completes the safe construction of the CImplementationClass16 object
   102 	Error Condition	: Leaves with the error code.	
   103 	@leave          KErrNoMemory.	
   104 	@since			7.0
   105 	@pre 			CImplementationClass16 has been constructed
   106 	@post			CImplementationClass16 has been fully initialised.
   107  */
   108 	void ConstructL();
   109 
   110 // Provide the CActive overloads
   111 	void RunL();
   112 	void DoCancel();
   113 	TInt RunError(TInt aError);
   114 
   115 private:
   116 /** A place for allocating some memory in the ConstructL */
   117 	HBufC*	iInternalDescriptor;
   118 /** An int to be stored in TLS to test its useage */	
   119 	TInt	iTLSInt;
   120 
   121 };  // End of CImplementationClass16 definition
   122 
   123 // __________________________________________________________________________
   124 // Implementation
   125 
   126 void CImplementationClass16::NewL()
   127 // Intended Usage	: Safe construction which leaves nothing upon the cleanup stack	
   128 // Error Condition	: Will leave with an appropriate error code	
   129 // Dependencies	: CBase
   130 // @param			" "
   131 // @return			CImplementationClass16* a pointer to the fully instantiated CImplementationClass16 object
   132 // @pre 			None
   133 // @post			The object has been fully instantiated
   134 // Static member
   135 	{
   136 	User::Leave(KErrGeneral);
   137 	}
   138 
   139 CImplementationClass16::~CImplementationClass16()
   140 // Default virtual d'tor
   141 	{
   142 	delete iInternalDescriptor;
   143 	}
   144 
   145 CImplementationClass16::CImplementationClass16()
   146 // Default c'tor for use by derived and 
   147 // static construction methods only
   148 : CExampleInterface()
   149 	{
   150 	// Deliberately do nothing here : See ConstructL() for initialisation completion.
   151 	}
   152 
   153 void CImplementationClass16::ConstructL()
   154 // Intended Usage	: Safely complete the initialization of the constructed object	
   155 // Error Condition	: Will leave with an appropriate error code	
   156 // Dependencies	: CBase
   157 // @return			void
   158 // @pre 			CImplementationClass16 has been constructed
   159 // @post			The CImplementationClass16 object has been fully instantiated
   160 //
   161 	{
   162 	}
   163 
   164 void CImplementationClass16::DoMethodL()
   165 	{
   166 	}
   167 
   168 // Provide the CActive overloads
   169 void CImplementationClass16::RunL()
   170 	{
   171 	// Do nothing : should never be called
   172 	__ASSERT_DEBUG(EFalse,User::Invariant());
   173 	}
   174 
   175 void CImplementationClass16::DoCancel()
   176 	{
   177 	// Do nothing
   178 	}
   179 
   180 TInt CImplementationClass16::RunError(TInt /*aError*/)
   181 	{
   182 	return KErrNone;
   183 	}
   184 
   185 TUid CImplementationClass16::ImplId()
   186 	{
   187 	TUid idVal = {0x10009E4A};
   188 	return (idVal);
   189 	}
   190 
   191 // __________________________________________________________________________
   192 // Exported proxy for instantiation method resolution
   193 // Define the interface UIDs
   194 const TImplementationProxy ImplementationTable[] = 
   195 	{
   196 		IMPLEMENTATION_PROXY_ENTRY(0x10009DDC,	CImplementationClass16::NewL)
   197 	};
   198 
   199 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
   200 	{
   201 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   202 	return ImplementationTable;
   203 	}
   204