os/ossrv/lowlevellibsandfws/pluginfw/Framework/Example/Example.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-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 a some classes
sl@0
    15
// to be provided by ECom.
sl@0
    16
// 1. Using the CExampleInterface class as a base.
sl@0
    17
// 
sl@0
    18
//
sl@0
    19
sl@0
    20
#include "Interface.h"
sl@0
    21
#include "ImplementationProxy.h"
sl@0
    22
#include "ExampleResolver.h"
sl@0
    23
#include "TestUtilities.h"	// For __FILE__LINE__
sl@0
    24
sl@0
    25
// ____________________________________________________________________________
sl@0
    26
// 
sl@0
    27
/**	Intended usage: This class implements the functionality promised by 
sl@0
    28
	the CExampleInterface defintion class. It does little apart from provides a test instance
sl@0
    29
	which may be retrieved and run for testing purposes.
sl@0
    30
	Its resolution is based upon its registered default data string that
sl@0
    31
	advertises this class as being able to handle 'text\wml' data.
sl@0
    32
	@since 7.0
sl@0
    33
 */
sl@0
    34
class CImplementationClassOne : public CExampleInterface
sl@0
    35
{
sl@0
    36
// Methods
sl@0
    37
public:
sl@0
    38
/**
sl@0
    39
	@fn				NewL(TAny* aInitParams)
sl@0
    40
	Intended Usage	: Standardised safe construction which leaves nothing the cleanup stack.
sl@0
    41
	Error Condition	: Leaves with error code.
sl@0
    42
	@leave          	KErrNoMemory.
sl@0
    43
	@since			7.0
sl@0
    44
	@param			aInitParams The parameter struct used for initialising this object
sl@0
    45
	@return			CImplementationClassOne* The class instance.
sl@0
    46
	@pre 			None
sl@0
    47
	@post			CImplementationClassOne has been constructed,
sl@0
    48
					and initialised.
sl@0
    49
 */
sl@0
    50
	static CImplementationClassOne* NewL(TAny* aInitParams);
sl@0
    51
sl@0
    52
/**
sl@0
    53
	@fn				~CImplementationClassOne()
sl@0
    54
	Intended Usage	: Default Destructor	
sl@0
    55
	Error Condition	: None	
sl@0
    56
	@since			7.0
sl@0
    57
	@pre 			CImplementationClassOne has been constructed
sl@0
    58
	@post			CImplementationClassOne has been completely destroyed.
sl@0
    59
 */
sl@0
    60
	virtual ~CImplementationClassOne();
sl@0
    61
sl@0
    62
/**
sl@0
    63
	@fn				DoMethodL()
sl@0
    64
	Intended Usage	: Overload of the pure interface method
sl@0
    65
					Representative of a method provided on 
sl@0
    66
					the interface by the interface definer.
sl@0
    67
	Error Condition	: Leaves with an error code.
sl@0
    68
	@leave  		KErrNoMemory, KErrNotSupported.
sl@0
    69
	@since			7.0
sl@0
    70
	@return			None
sl@0
    71
	@pre 			CImplementationClassOne has been constructed
sl@0
    72
	@post			Unspecified
sl@0
    73
 */	
sl@0
    74
	void DoMethodL();
sl@0
    75
sl@0
    76
/**
sl@0
    77
	@fn				FireAndForget()
sl@0
    78
	Intended Usage	: Overload of the pure interface method
sl@0
    79
					asynchronous function which 
sl@0
    80
					an interface definer could specify.  
sl@0
    81
					It allows the client to call the function in the knowledge 
sl@0
    82
					that the object will commit suicide when the 
sl@0
    83
					function completes.
sl@0
    84
	Error Condition	: None.
sl@0
    85
	@since			7.0
sl@0
    86
	@return			TInt KErrNone for success.
sl@0
    87
	@pre 			CImplementationClassOne has been constructed
sl@0
    88
	@post			Unspecified
sl@0
    89
 */
sl@0
    90
	TInt FireAndForget();
sl@0
    91
sl@0
    92
 /**
sl@0
    93
	@fn				ImplId()
sl@0
    94
	Intended Usage	: To verify the object returned by ECOM.
sl@0
    95
	Error Condition	: None.
sl@0
    96
	@since			7.0s
sl@0
    97
	@return			TUid (ECOM's Implementation Uid for this class.)
sl@0
    98
	@pre 			CImplementationClassThree has been constructed
sl@0
    99
	@post			Unspecified
sl@0
   100
 */
sl@0
   101
	TUid ImplId();
sl@0
   102
sl@0
   103
private:
sl@0
   104
/**
sl@0
   105
	@fn				CImplementationClassOne()
sl@0
   106
	Intended Usage	: Default Constructor : usable only by derived classes	
sl@0
   107
	Error Condition	: None	
sl@0
   108
	@since			7.0
sl@0
   109
	@pre 			None
sl@0
   110
	@post			CImplementationClassOne has been constructed
sl@0
   111
 */
sl@0
   112
	CImplementationClassOne();
sl@0
   113
sl@0
   114
/**
sl@0
   115
	@fn				ConstructL(TAny* aInitParams)
sl@0
   116
	Intended Usage	: Completes the safe construction of the CImplementationClassOne object
sl@0
   117
	Error Condition	: Leaves with the error code.	
sl@0
   118
	@leave          	KErrNoMemory.	
sl@0
   119
	@since			7.0
sl@0
   120
	@param			aInitParams The parameter struct used for initialising this object
sl@0
   121
	@pre 			CImplementationClassOne has been constructed
sl@0
   122
	@post			CImplementationClassOne has been fully initialised.
sl@0
   123
 */
sl@0
   124
	void ConstructL(TAny* aInitParams);
sl@0
   125
sl@0
   126
// Provide the CActive overloads
sl@0
   127
	void RunL();
sl@0
   128
	void DoCancel();
sl@0
   129
	TInt RunError(TInt aError);
sl@0
   130
sl@0
   131
private:
sl@0
   132
/** A place for allocating some memory in the ConstructL */
sl@0
   133
	HBufC*	iInternalDescriptor;
sl@0
   134
/** An int to be stored in TLS to test its useage */	
sl@0
   135
	TInt	iTLSInt;
sl@0
   136
sl@0
   137
};  // End of CImplementationClassOne definition
sl@0
   138
sl@0
   139
// __________________________________________________________________________
sl@0
   140
// Implementation
sl@0
   141
sl@0
   142
CImplementationClassOne* CImplementationClassOne::NewL(TAny* aInitParams)
sl@0
   143
// Intended Usage	: Safe construction which leaves nothing upon the cleanup stack	
sl@0
   144
// Error Condition	: Will leave with an appropriate error code	
sl@0
   145
// Dependencies	: CBase
sl@0
   146
// @param			" "
sl@0
   147
// @return			CImplementationClassOne* a pointer to the fully instantiated CImplementationClassOne object
sl@0
   148
// @pre 			None
sl@0
   149
// @post			The object has been fully instantiated
sl@0
   150
// Static member
sl@0
   151
	{
sl@0
   152
	CImplementationClassOne* self=new(ELeave) CImplementationClassOne();  // calls c'tor
sl@0
   153
	CleanupStack::PushL(self);	// Make the construction safe by using the cleanup stack
sl@0
   154
	self->ConstructL(aInitParams); // Complete the 'construction'.
sl@0
   155
	CleanupStack::Pop(self);
sl@0
   156
	return self;
sl@0
   157
	}
sl@0
   158
sl@0
   159
CImplementationClassOne::~CImplementationClassOne()
sl@0
   160
// Default virtual d'tor
sl@0
   161
	{
sl@0
   162
	delete iInternalDescriptor;
sl@0
   163
	}
sl@0
   164
sl@0
   165
CImplementationClassOne::CImplementationClassOne()
sl@0
   166
// Default c'tor for use by derived and 
sl@0
   167
// static construction methods only
sl@0
   168
: CExampleInterface()
sl@0
   169
	{
sl@0
   170
	// Deliberately do nothing here : See ConstructL() for initialisation completion.
sl@0
   171
	}
sl@0
   172
sl@0
   173
void CImplementationClassOne::ConstructL(TAny* aInitParams)
sl@0
   174
// Intended Usage	: Safely complete the initialization of the constructed object	
sl@0
   175
// Error Condition	: Will leave with an appropriate error code	
sl@0
   176
// Dependencies	: CBase
sl@0
   177
// @return			void
sl@0
   178
// @pre 			CImplementationClassOne has been constructed
sl@0
   179
// @post			The CImplementationClassOne object has been fully instantiated
sl@0
   180
//
sl@0
   181
	{
sl@0
   182
	TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*,
sl@0
   183
														   aInitParams);
sl@0
   184
	if(params->descriptor)
sl@0
   185
		iInternalDescriptor = params->descriptor->AllocL();
sl@0
   186
sl@0
   187
	Dll::SetTls(&iTLSInt);
sl@0
   188
	}
sl@0
   189
sl@0
   190
void CImplementationClassOne::DoMethodL()
sl@0
   191
	{
sl@0
   192
	// Access TLS to ensure it has been set properly
sl@0
   193
	REINTERPRET_CAST(TInt*, Dll::Tls());
sl@0
   194
	}
sl@0
   195
sl@0
   196
TInt CImplementationClassOne::FireAndForget()
sl@0
   197
	{
sl@0
   198
	TRAPD(error,DoMethodL());
sl@0
   199
	return error;			// Always KErrNotSupported
sl@0
   200
	}
sl@0
   201
sl@0
   202
// Provide the CActive overloads
sl@0
   203
void CImplementationClassOne::RunL()
sl@0
   204
	{
sl@0
   205
	// Do nothing : should never be called
sl@0
   206
	__ASSERT_DEBUG(EFalse,User::Invariant());
sl@0
   207
	}
sl@0
   208
sl@0
   209
void CImplementationClassOne::DoCancel()
sl@0
   210
	{
sl@0
   211
	// Do nothing
sl@0
   212
	}
sl@0
   213
sl@0
   214
TInt CImplementationClassOne::RunError(TInt aError)
sl@0
   215
	{
sl@0
   216
	return aError;
sl@0
   217
	}
sl@0
   218
sl@0
   219
TUid CImplementationClassOne::ImplId()
sl@0
   220
	{
sl@0
   221
	TUid idVal = {0x10009DC3};
sl@0
   222
	return (idVal);
sl@0
   223
	}
sl@0
   224
sl@0
   225
// ____________________________________________________________________________
sl@0
   226
// 
sl@0
   227
/**	Intended usage: This class implements the functionality promised by 
sl@0
   228
	the CExampleInterface defintion class. It does little apart from provides a test instance
sl@0
   229
	which may be retrieved and run for testing purposes.
sl@0
   230
	Its resolution is based upon its registered default data string that
sl@0
   231
	advertises this class as being able to handle 'text\*' data.
sl@0
   232
	I.e. it should be 'found' by wildcard matching for any text handling type.
sl@0
   233
	@since 7.0
sl@0
   234
sl@0
   235
 */
sl@0
   236
class CImplementationClassTwo : public CExampleInterface
sl@0
   237
{
sl@0
   238
// Methods
sl@0
   239
public:
sl@0
   240
/**
sl@0
   241
	@fn				NewL(TAny* aParams)
sl@0
   242
	Intended Usage	: Standardised safe construction which leaves nothing the cleanup stack.
sl@0
   243
	Error Condition	: Leaves with error code.
sl@0
   244
	@leave          	KErrNoMemory.
sl@0
   245
	@since			7.0
sl@0
   246
	@return			CImplementationClassTwo* The class instance.
sl@0
   247
	@pre 			None
sl@0
   248
	@post			CImplementationClassTwo has been constructed,
sl@0
   249
					and initialised.
sl@0
   250
 */
sl@0
   251
	static CImplementationClassTwo* NewL(TAny* aParams);
sl@0
   252
sl@0
   253
/**
sl@0
   254
	@fn				~CImplementationClassTwo()
sl@0
   255
	Intended Usage	: Default Destructor	
sl@0
   256
	Error Condition	: None	
sl@0
   257
	@since			7.0
sl@0
   258
	@pre 			CImplementationClassTwo has been constructed
sl@0
   259
	@post			CImplementationClassTwo has been completely destroyed.
sl@0
   260
 */
sl@0
   261
	virtual ~CImplementationClassTwo();
sl@0
   262
sl@0
   263
/**
sl@0
   264
	@fn				DoMethodL()
sl@0
   265
	Intended Usage	: Overload of the pure interface method
sl@0
   266
					Representative of a method provided on 
sl@0
   267
					the interface by the interface definer.
sl@0
   268
	Error Condition	: Leaves with an error code.
sl@0
   269
	@leave  		KErrNoMemory, KErrNotSupported.
sl@0
   270
	@since			7.0
sl@0
   271
	@return			None
sl@0
   272
	@pre 			CImplementationClassTwo has been constructed
sl@0
   273
	@post			Unspecified
sl@0
   274
 */	
sl@0
   275
	void DoMethodL();
sl@0
   276
sl@0
   277
/**
sl@0
   278
	@fn				FireAndForget()
sl@0
   279
	Intended Usage	: Overload of the pure interface method
sl@0
   280
					asynchronous function which 
sl@0
   281
					an interface definer could specify.  
sl@0
   282
					It allows the client to call the function in the knowledge 
sl@0
   283
					that the object will commit suicide when the 
sl@0
   284
					function completes.
sl@0
   285
	Error Condition	: None.
sl@0
   286
	@since			7.0
sl@0
   287
	@return			TInt KErrNone for success.
sl@0
   288
	@pre 			CImplementationClassTwo has been constructed
sl@0
   289
	@post			Unspecified
sl@0
   290
 */
sl@0
   291
	TInt FireAndForget();
sl@0
   292
sl@0
   293
 /**
sl@0
   294
	@fn				ImplId()
sl@0
   295
	Intended Usage	: To verify the object returned by ECOM.
sl@0
   296
	Error Condition	: None.
sl@0
   297
	@since			7.0s
sl@0
   298
	@return			TUid (ECOM's Implementation Uid for this class.)
sl@0
   299
	@pre 			CImplementationClassThree has been constructed
sl@0
   300
	@post			Unspecified
sl@0
   301
 */
sl@0
   302
	TUid ImplId();
sl@0
   303
sl@0
   304
private:
sl@0
   305
/**
sl@0
   306
	@fn				CImplementationClassTwo()
sl@0
   307
	Intended Usage	: Default Constructor : usable only by derived classes	
sl@0
   308
	Error Condition	: None	
sl@0
   309
	@since			7.0
sl@0
   310
	@pre 			None
sl@0
   311
	@post			CImplementationClassTwo has been constructed
sl@0
   312
 */
sl@0
   313
	CImplementationClassTwo();
sl@0
   314
sl@0
   315
/**
sl@0
   316
	@fn				ConstructL()
sl@0
   317
	Intended Usage	: Completes the safe construction of the CImplementationClassTwo object
sl@0
   318
	Error Condition	: Leaves with the error code.	
sl@0
   319
	@leave          	KErrNoMemory.	
sl@0
   320
	@since			7.0
sl@0
   321
	@pre 			CImplementationClassTwo has been constructed
sl@0
   322
	@post			CImplementationClassTwo has been fully initialised.
sl@0
   323
 */
sl@0
   324
	void ConstructL();
sl@0
   325
sl@0
   326
// Provide the CActive overloads
sl@0
   327
	void RunL();
sl@0
   328
	void DoCancel();
sl@0
   329
	TInt RunError(TInt aError);
sl@0
   330
};  // End of CImplementationClassTwo definition
sl@0
   331
sl@0
   332
// __________________________________________________________________________
sl@0
   333
// Implementation
sl@0
   334
sl@0
   335
CImplementationClassTwo* CImplementationClassTwo::NewL(TAny* /* aParams */)
sl@0
   336
// Intended Usage	: Safe construction which leaves nothing upon the cleanup stack	
sl@0
   337
// Error Condition	: Will leave with an appropriate error code	
sl@0
   338
// Dependencies	: CBase
sl@0
   339
// @param			" "
sl@0
   340
// @return			CImplementationClassTwo* a pointer to the fully instantiated CImplementationClassTwo object
sl@0
   341
// @pre 			None
sl@0
   342
// @post			The object has been fully instantiated
sl@0
   343
// Static member
sl@0
   344
	{
sl@0
   345
	CImplementationClassTwo* self=new(ELeave) CImplementationClassTwo();  // calls c'tor
sl@0
   346
	CleanupStack::PushL(self);	// Make the construction safe by using the cleanup stack
sl@0
   347
	self->ConstructL(); // Complete the 'construction'.
sl@0
   348
	CleanupStack::Pop(self);
sl@0
   349
	return self;
sl@0
   350
	}
sl@0
   351
sl@0
   352
CImplementationClassTwo::~CImplementationClassTwo()
sl@0
   353
// Default virtual d'tor
sl@0
   354
	{
sl@0
   355
	// Do Nothing
sl@0
   356
	}
sl@0
   357
sl@0
   358
CImplementationClassTwo::CImplementationClassTwo()
sl@0
   359
// Default c'tor for use by derived and 
sl@0
   360
// static construction methods only
sl@0
   361
: CExampleInterface()
sl@0
   362
	{
sl@0
   363
	CActiveScheduler::Add(this);
sl@0
   364
	}
sl@0
   365
sl@0
   366
void CImplementationClassTwo::ConstructL()
sl@0
   367
// Intended Usage	: Safely complete the initialization of the constructed object	
sl@0
   368
// Error Condition	: Will leave with an appropriate error code	
sl@0
   369
// Dependencies	: CBase
sl@0
   370
// @return			void
sl@0
   371
// @pre 			CImplementationClassTwo has been constructed
sl@0
   372
// @post			The CImplementationClassTwo object has been fully instantiated
sl@0
   373
//
sl@0
   374
	{
sl@0
   375
	// Do Nothing
sl@0
   376
	}
sl@0
   377
sl@0
   378
void CImplementationClassTwo::DoMethodL()
sl@0
   379
	{
sl@0
   380
	// Do nothing
sl@0
   381
	}
sl@0
   382
sl@0
   383
TInt CImplementationClassTwo::FireAndForget()
sl@0
   384
	{
sl@0
   385
	TInt error = KErrNone;
sl@0
   386
	TRAP(error,DoMethodL());
sl@0
   387
	if(!IsActive())
sl@0
   388
		{
sl@0
   389
		SetActive();
sl@0
   390
		iStatus = KRequestPending;
sl@0
   391
		TRequestStatus* status = &iStatus;
sl@0
   392
		User::RequestComplete(status, KErrNone);
sl@0
   393
		}
sl@0
   394
	return error;
sl@0
   395
	}
sl@0
   396
sl@0
   397
// Provide the CActive overloads
sl@0
   398
void CImplementationClassTwo::RunL()
sl@0
   399
	{
sl@0
   400
	delete this;	// AAARGH : Scary!!!!
sl@0
   401
	}
sl@0
   402
sl@0
   403
void CImplementationClassTwo::DoCancel()
sl@0
   404
	{
sl@0
   405
	// Do nothing
sl@0
   406
	}
sl@0
   407
sl@0
   408
TInt CImplementationClassTwo::RunError(TInt aError)
sl@0
   409
	{
sl@0
   410
	return aError;
sl@0
   411
	}
sl@0
   412
sl@0
   413
TUid CImplementationClassTwo::ImplId()
sl@0
   414
	{
sl@0
   415
	TUid idVal = {0x10009DC4};
sl@0
   416
	return (idVal);
sl@0
   417
	}
sl@0
   418
sl@0
   419
// __________________________________________________________________________
sl@0
   420
// Exported proxy for instantiation method resolution
sl@0
   421
// Define the interface UIDs
sl@0
   422
const TImplementationProxy ImplementationTable[] = 
sl@0
   423
	{
sl@0
   424
		IMPLEMENTATION_PROXY_ENTRY(0x10009DC3,	CImplementationClassOne::NewL),
sl@0
   425
		IMPLEMENTATION_PROXY_ENTRY(0x10009DC4,	CImplementationClassTwo::NewL),
sl@0
   426
		IMPLEMENTATION_PROXY_ENTRY(0x10009DD0,	CExampleResolver::NewL)
sl@0
   427
	};
sl@0
   428
sl@0
   429
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
sl@0
   430
	{
sl@0
   431
	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
sl@0
   432
sl@0
   433
	return ImplementationTable;
sl@0
   434
	}
sl@0
   435