os/ossrv/lowlevellibsandfws/pluginfw/Framework/Example/examplefourteen.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.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// The implementation of CImplementationClassFourteen
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalComponent
sl@0
    21
*/
sl@0
    22
sl@0
    23
#include "examplefourteen.h"
sl@0
    24
sl@0
    25
/**
sl@0
    26
	Intended Usage	: Standardised safe construction which leaves nothing the cleanup stack.
sl@0
    27
	Error Condition	: Leaves with error code.
sl@0
    28
	@leave          	KErrNoMemory.
sl@0
    29
	@param			aInitParams The parameter struct used for initialising this object
sl@0
    30
	@return			CImplementationClassFourteen* The class instance.
sl@0
    31
	@pre 			None
sl@0
    32
	@post			CImplementationClassFourteen has been constructed,
sl@0
    33
					and initialised.
sl@0
    34
 */
sl@0
    35
CImplementationClassFourteen* CImplementationClassFourteen::NewL(TAny* aInitParams)
sl@0
    36
	{
sl@0
    37
	CImplementationClassFourteen* self=new(ELeave) CImplementationClassFourteen(); 
sl@0
    38
	CleanupStack::PushL(self);	
sl@0
    39
	self->ConstructL(aInitParams); 
sl@0
    40
	CleanupStack::Pop(self);
sl@0
    41
	return self;
sl@0
    42
	}
sl@0
    43
sl@0
    44
/**
sl@0
    45
	Intended Usage	: Destructor of CImplementationClassFourteen
sl@0
    46
	Error Condition	: None	
sl@0
    47
	@pre 			CImplementationClassFourteen has been constructed
sl@0
    48
	@post			CImplementationClassFourteen has been completely destroyed.
sl@0
    49
 */
sl@0
    50
CImplementationClassFourteen::~CImplementationClassFourteen()
sl@0
    51
	{
sl@0
    52
	delete iInternalDescriptor;
sl@0
    53
	Dll::FreeTls();
sl@0
    54
	}
sl@0
    55
/**
sl@0
    56
	Intended Usage	: Default Constructor : usable only by derived classes	
sl@0
    57
	Error Condition	: None	
sl@0
    58
	@pre 			None
sl@0
    59
	@post			CImplementationClassFourteen has been constructed
sl@0
    60
 */
sl@0
    61
CImplementationClassFourteen::CImplementationClassFourteen()
sl@0
    62
: CExampleInterface()
sl@0
    63
	{
sl@0
    64
	}
sl@0
    65
sl@0
    66
/**
sl@0
    67
	Intended Usage	: Completes the safe construction of the CImplementationClassFourteen object
sl@0
    68
	Error Condition	: Leaves with the error code.	
sl@0
    69
	@leave          	KErrNoMemory.	
sl@0
    70
	@param			aInitParams The parameter struct used for initialising this object
sl@0
    71
	@pre 			CImplementationClassFourteen has been constructed
sl@0
    72
	@post			CImplementationClassFourteen has been fully initialised.
sl@0
    73
 */
sl@0
    74
void CImplementationClassFourteen::ConstructL(TAny* aInitParams)
sl@0
    75
	{
sl@0
    76
	TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*, aInitParams);
sl@0
    77
	if(params)
sl@0
    78
		{
sl@0
    79
		if(params->descriptor)
sl@0
    80
			{
sl@0
    81
			iInternalDescriptor = params->descriptor->AllocL();
sl@0
    82
			}
sl@0
    83
		}
sl@0
    84
	User::LeaveIfError(Dll::SetTls(&iTLSInt));
sl@0
    85
	}
sl@0
    86
sl@0
    87
/**
sl@0
    88
	Intended Usage	: Overload of the pure interface method
sl@0
    89
					Representative of a method provided on 
sl@0
    90
					the interface by the interface definer.
sl@0
    91
	@return			None
sl@0
    92
 */	
sl@0
    93
void CImplementationClassFourteen::DoMethodL()
sl@0
    94
	{
sl@0
    95
	// Access TLS to ensure it has been set properly
sl@0
    96
	ASSERT(Dll::Tls()!=NULL);
sl@0
    97
	}
sl@0
    98
sl@0
    99
/**
sl@0
   100
	Intended Usage	: Overload of the pure interface method
sl@0
   101
					asynchronous function which 
sl@0
   102
					an interface definer could specify.  
sl@0
   103
	@return			TInt KErrNone for success.
sl@0
   104
 */
sl@0
   105
TInt CImplementationClassFourteen::FireAndForget()
sl@0
   106
	{
sl@0
   107
	return KErrNone;			
sl@0
   108
	}
sl@0
   109
sl@0
   110
// Provide the CActive overloads
sl@0
   111
void CImplementationClassFourteen::RunL()
sl@0
   112
	{
sl@0
   113
	// Do nothing : should never be called
sl@0
   114
	__ASSERT_DEBUG(EFalse,User::Invariant());
sl@0
   115
	}
sl@0
   116
sl@0
   117
void CImplementationClassFourteen::DoCancel()
sl@0
   118
	{
sl@0
   119
	// Do nothing
sl@0
   120
	}
sl@0
   121
sl@0
   122
TInt CImplementationClassFourteen::RunError(TInt aError)
sl@0
   123
	{
sl@0
   124
	return aError;
sl@0
   125
	}
sl@0
   126
/**
sl@0
   127
	Intended Usage	: To verify the object returned by ECOM.
sl@0
   128
	@return			TUid (ECOM's Implementation Uid for this class.)
sl@0
   129
 */
sl@0
   130
TUid CImplementationClassFourteen::ImplId()
sl@0
   131
	{
sl@0
   132
	return KImplUid;
sl@0
   133
	}
sl@0
   134
sl@0
   135