os/ossrv/lowlevellibsandfws/pluginfw/Framework/inc/ECom.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2001-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 API definitions required for the use of the ECOM framework by a client 
sl@0
    15
// are contained / defined here.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file
sl@0
    21
 @publishedAll
sl@0
    22
 @released 
sl@0
    23
*/
sl@0
    24
sl@0
    25
#ifndef __ECOM_H__
sl@0
    26
#define __ECOM_H__
sl@0
    27
sl@0
    28
// ____________________________________________________________________________
sl@0
    29
// INCLUDES
sl@0
    30
sl@0
    31
#include <e32base.h>
sl@0
    32
#include <s32std.h>
sl@0
    33
#include <f32file.h>
sl@0
    34
sl@0
    35
#include <ecom/ecomerrorcodes.h>
sl@0
    36
#include <ecom/ecomresolverparams.h>
sl@0
    37
#include <ecom/implementationinformation.h>
sl@0
    38
sl@0
    39
sl@0
    40
// ____________________________________________________________________________
sl@0
    41
// CONSTANTS
sl@0
    42
sl@0
    43
class CGlobalData;
sl@0
    44
sl@0
    45
/** 
sl@0
    46
The UID identifying the ROM-Only CResolver Interface Implementation. 
sl@0
    47
This resolver only returns implementations present on R/O internal media
sl@0
    48
(built-in) or upgrades of such implementations on R/W media. It does not 
sl@0
    49
return implementations that solely reside on R/W media. 
sl@0
    50
*/
sl@0
    51
const TUid KRomOnlyResolverUid = {0x10009D92};
sl@0
    52
sl@0
    53
sl@0
    54
// ____________________________________________________________________________
sl@0
    55
// CLASSES
sl@0
    56
sl@0
    57
/**
sl@0
    58
The REComSession singleton class provides an API to identify (resolution), 
sl@0
    59
instantiate, and destroy interface class implementations requested by 
sl@0
    60
ECOM clients. It manages the session connection to the ECOM Server itself so 
sl@0
    61
that typically only one connection is made to the ECOM Server per thread.
sl@0
    62
It provides an un-initialise function where it releases memory and handles
sl@0
    63
of unused plug-ins, see the FinalClose() function. It also ensures that all
sl@0
    64
necessary clean-up is performed in the event of a Leave by any of the
sl@0
    65
ListImplementationsL() or CreateImplementationL() methods.
sl@0
    66
sl@0
    67
Note: Although a public default constructor is provided in this class
sl@0
    68
it is strongly recommended this object is never created by users of this
sl@0
    69
API on the stack or heap by value. To access the non-static methods of this
sl@0
    70
API use the static OpenL() method to obtain a pointer or a 
sl@0
    71
reference to the single reference counted session in use. Close() must be 
sl@0
    72
called when finished with.
sl@0
    73
sl@0
    74
Special care must be taken when using aInstanceKey. It is a 32-bit instance key
sl@0
    75
that is returned from a call to one of the CreateImplementationL() methods. 
sl@0
    76
This instance key must only be used with DestroyedImplementation() to identify
sl@0
    77
the implementation instance for destruction, or GetImplementationUidL() to
sl@0
    78
retrieve the Implementation Uid of the instance it refers to.
sl@0
    79
No meaning must be attached to this instance key by ECOM clients 
sl@0
    80
and it must not be used for any other purpose.
sl@0
    81
sl@0
    82
sl@0
    83
@see REComSession::FinalClose()
sl@0
    84
*/
sl@0
    85
class REComSession  : public RSessionBase
sl@0
    86
	{
sl@0
    87
	friend class CGlobalData;
sl@0
    88
	
sl@0
    89
public: // publishedAll APIs
sl@0
    90
        // Available for use by all clients
sl@0
    91
sl@0
    92
	IMPORT_C REComSession();
sl@0
    93
	
sl@0
    94
	IMPORT_C static REComSession& OpenL();
sl@0
    95
	IMPORT_C void Close();
sl@0
    96
sl@0
    97
	// Get Implementation Uid from an Instance Key
sl@0
    98
	IMPORT_C static TUid GetImplementationUidL(
sl@0
    99
							TUid aInstanceKey);
sl@0
   100
sl@0
   101
    // Destroy Implementation API declaration											
sl@0
   102
	IMPORT_C static void DestroyedImplementation(
sl@0
   103
                            TUid aInstanceKey);
sl@0
   104
sl@0
   105
	// See developer documentation for use of FinalClose.
sl@0
   106
	IMPORT_C static void FinalClose();
sl@0
   107
	
sl@0
   108
sl@0
   109
	// Notification API declarations
sl@0
   110
    //
sl@0
   111
     
sl@0
   112
	IMPORT_C void NotifyOnChange(TRequestStatus& aStatus);
sl@0
   113
	IMPORT_C void CancelNotifyOnChange(TRequestStatus& aStatus);
sl@0
   114
	
sl@0
   115
	
sl@0
   116
	// List implementations API declarations
sl@0
   117
	//
sl@0
   118
	// Use LI1 to list all implementations, unfiltered.
sl@0
   119
	// Use LI2 when default resolving required on the returned list.
sl@0
   120
	// Use LI3 when custom resolving required on the returned list.
sl@0
   121
		
sl@0
   122
	// ListImplementationsL - LI1
sl@0
   123
	IMPORT_C static void ListImplementationsL(
sl@0
   124
                            TUid aInterfaceUid,
sl@0
   125
							RImplInfoPtrArray& aImplInfoArray);
sl@0
   126
							
sl@0
   127
	// ListImplementationsL - LI2
sl@0
   128
	IMPORT_C static void ListImplementationsL(
sl@0
   129
                            TUid aInterfaceUid, 
sl@0
   130
							const TEComResolverParams& aResolutionParameters,
sl@0
   131
							RImplInfoPtrArray& aImplInfoArray);
sl@0
   132
							
sl@0
   133
	// ListImplementationsL - LI3
sl@0
   134
	IMPORT_C static void ListImplementationsL(
sl@0
   135
                            TUid aInterfaceUid, 
sl@0
   136
							const TEComResolverParams& aResolutionParameters, 
sl@0
   137
							TUid aResolverUid,
sl@0
   138
							RImplInfoPtrArray& aImplInfoArray);
sl@0
   139
							
sl@0
   140
	// Use LI7 to list all implementations, unfiltered and with no capability chaeck.
sl@0
   141
	// Use LI8 when default resolving required on the returned list and with no capability chaeck.
sl@0
   142
	// Use LI9 when custom resolving required on the returned list and with no capability chaeck.
sl@0
   143
		
sl@0
   144
	// ListImplementationsL - LI7
sl@0
   145
	IMPORT_C static void ListImplementationsL(
sl@0
   146
                            TUid aInterfaceUid,
sl@0
   147
							RImplInfoPtrArray& aImplInfoArray,TBool aCapabilityCheck);
sl@0
   148
							
sl@0
   149
	// ListImplementationsL - LI8
sl@0
   150
	IMPORT_C static void ListImplementationsL(
sl@0
   151
                            TUid aInterfaceUid, 
sl@0
   152
							const TEComResolverParams& aResolutionParameters,
sl@0
   153
							RImplInfoPtrArray& aImplInfoArray,TBool aCapabilityCheck);
sl@0
   154
							
sl@0
   155
	// ListImplementationsL - LI9
sl@0
   156
	IMPORT_C static void ListImplementationsL(
sl@0
   157
                            TUid aInterfaceUid, 
sl@0
   158
							const TEComResolverParams& aResolutionParameters, 
sl@0
   159
							TUid aResolverUid,
sl@0
   160
							RImplInfoPtrArray& aImplInfoArray,TBool aCapabilityCheck);						
sl@0
   161
sl@0
   162
sl@0
   163
	// Create implementations API declarations
sl@0
   164
    //
sl@0
   165
    // When Implementation UID is known: 
sl@0
   166
    // Use CI1, CI2. 
sl@0
   167
    // Use CI3, CI4 when you have construction parameters.
sl@0
   168
    //
sl@0
   169
    // When the Interface UID is known and default resolving is required:
sl@0
   170
    // Use CI5, CI6. 
sl@0
   171
    // Use CI7, CI8 when you have construction parameters.
sl@0
   172
    // 
sl@0
   173
    // When the Interface UID is known and custom resolving is required:
sl@0
   174
    // Use CI9, CI10.
sl@0
   175
    // Use CI11, CI12 when you have construction parameters.
sl@0
   176
    	
sl@0
   177
	// CreateImplementationL - CI1
sl@0
   178
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   179
                            TUid aImplementationUid, 
sl@0
   180
                            TUid& aInstanceKey);
sl@0
   181
                            
sl@0
   182
	// CreateImplementationL - CI2
sl@0
   183
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   184
                            TUid aImplementationUid, 
sl@0
   185
							TInt32 aKeyOffset);
sl@0
   186
							
sl@0
   187
	// CreateImplementationL - CI3
sl@0
   188
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   189
                            TUid aImplementationUid, 
sl@0
   190
							TUid& aInstanceKey, 
sl@0
   191
							TAny* aConstructionParameters);
sl@0
   192
							
sl@0
   193
	// CreateImplementationL - CI4
sl@0
   194
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   195
                            TUid aImplementationUid, 
sl@0
   196
							TInt32 aKeyOffset,
sl@0
   197
							TAny* aConstructionParameters);
sl@0
   198
							
sl@0
   199
	// CreateImplementationL - CI5
sl@0
   200
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   201
                            TUid aInterfaceUid, 
sl@0
   202
							TUid& aInstanceKey,
sl@0
   203
							const TEComResolverParams& aResolutionParameters);
sl@0
   204
							
sl@0
   205
	// CreateImplementationL - CI6
sl@0
   206
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   207
                            TUid aInterfaceUid, 
sl@0
   208
							TInt32 aKeyOffset, 
sl@0
   209
							const TEComResolverParams& aResolutionParameters);
sl@0
   210
							
sl@0
   211
	// CreateImplementationL - CI7
sl@0
   212
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   213
                            TUid aInterfaceUid, 
sl@0
   214
							TUid& aInstanceKey, 
sl@0
   215
							TAny* aConstructionParameters, 
sl@0
   216
							const TEComResolverParams& aResolutionParameters);
sl@0
   217
							
sl@0
   218
	// CreateImplementationL - CI8
sl@0
   219
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   220
                            TUid aInterfaceUid, 
sl@0
   221
							TInt32 aKeyOffset, 
sl@0
   222
							TAny* aConstructionParameters, 
sl@0
   223
							const TEComResolverParams& aResolutionParameters);
sl@0
   224
							
sl@0
   225
	// CreateImplementationL - CI9
sl@0
   226
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   227
                            TUid aInterfaceUid, 
sl@0
   228
							TUid& aInstanceKey, 
sl@0
   229
							const TEComResolverParams& aResolutionParameters,
sl@0
   230
							TUid aResolverUid);
sl@0
   231
												
sl@0
   232
	// CreateImplementationL - CI10
sl@0
   233
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   234
                            TUid aInterfaceUid, 
sl@0
   235
							TInt32 aKeyOffset,
sl@0
   236
							const TEComResolverParams& aResolutionParameters, 
sl@0
   237
							TUid aResolverUid);
sl@0
   238
												
sl@0
   239
	// CreateImplementationL - CI11
sl@0
   240
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   241
                            TUid aInterfaceUid, 
sl@0
   242
							TUid& aInstanceKey, 
sl@0
   243
							TAny* aConstructionParameters,
sl@0
   244
							const TEComResolverParams& aResolutionParameters, 
sl@0
   245
							TUid aResolverUid);
sl@0
   246
												
sl@0
   247
	// CreateImplementationL - CI12
sl@0
   248
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   249
                            TUid aInterfaceUid, 
sl@0
   250
							TInt32 aKeyOffset, 
sl@0
   251
							TAny* aConstructionParameters,
sl@0
   252
							const TEComResolverParams& aResolutionParameters,
sl@0
   253
							TUid aResolverUid);
sl@0
   254
	
sl@0
   255
sl@0
   256
public: // publishedPartner APIs
sl@0
   257
        // Extended interfaces API declarations available for use by 
sl@0
   258
        // all system software i.e by phone manufacturers and internally (i.e. not supported for use by 3rd parties)
sl@0
   259
        // See Symbian OS Developer Library and ECOM How To/FAQ documentation.
sl@0
   260
				
sl@0
   261
                			
sl@0
   262
	// List implementations API declarations
sl@0
   263
	//
sl@0
   264
	// Use L14 to list all implementations which satisfy interface, extended 
sl@0
   265
    //      interfaces
sl@0
   266
	// Use L15 to list all implementations which satisfy interface, extended 
sl@0
   267
    //      interfaces when default resolving required on the list returned
sl@0
   268
	// Use L16 to list all implementations which satisfy interface, extended
sl@0
   269
    //      interfaces when custom resolving required on the list returned
sl@0
   270
		
sl@0
   271
	// ListImplementationsL - LI4
sl@0
   272
	IMPORT_C static void ListImplementationsL(
sl@0
   273
                            TUid aInterfaceUid,
sl@0
   274
                            RExtendedInterfacesArray& aExtendedInterfaces,
sl@0
   275
							RImplInfoPtrArray& aImplInfoArray);
sl@0
   276
							
sl@0
   277
	// ListImplementationsL - LI5
sl@0
   278
	IMPORT_C static void ListImplementationsL(
sl@0
   279
                            TUid aInterfaceUid, 
sl@0
   280
                            RExtendedInterfacesArray& aExtendedInterfaces,
sl@0
   281
							const TEComResolverParams& aResolutionParameters,
sl@0
   282
							RImplInfoPtrArray& aImplInfoArray);
sl@0
   283
							
sl@0
   284
	// ListImplementationsL - LI6
sl@0
   285
	IMPORT_C static void ListImplementationsL(
sl@0
   286
                            TUid aInterfaceUid, 
sl@0
   287
                            RExtendedInterfacesArray& aExtendedInterfaces,
sl@0
   288
							const TEComResolverParams& aResolutionParameters, 
sl@0
   289
							TUid aResolverUid,
sl@0
   290
							RImplInfoPtrArray& aImplInfoArray);
sl@0
   291
			
sl@0
   292
			
sl@0
   293
	// Create implementations API declarations
sl@0
   294
    //
sl@0
   295
    // When the interface UID and  the extended interface UID's are known 
sl@0
   296
	//     and default resolving is required. The construction parameters may 
sl@0
   297
    //     optionally be provided.
sl@0
   298
    //     Use CI13: Instance key is returned
sl@0
   299
 	//     Use CI14: An offset to aInstanceKey returned by the ECom framework 
sl@0
   300
    //         to identify this instance to the framework
sl@0
   301
	// When the interface UID and  the extended interface UID's are known 
sl@0
   302
	//     and custom resolving is required.  The construction parameters may 
sl@0
   303
    //     optionally be provided.
sl@0
   304
    //     Use CI15: Instance key is returned
sl@0
   305
    //     Use CI16: An offset to aInstanceKey returned by the ECom framework 
sl@0
   306
    //         to identify this instance to the framework
sl@0
   307
    	
sl@0
   308
	// CreateImplementationL - CI13
sl@0
   309
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   310
                            TUid aInterfaceUid, 
sl@0
   311
                            const RExtendedInterfacesArray& aExtendedInterfaces,
sl@0
   312
							TUid& aInstanceKey, 
sl@0
   313
							const TEComResolverParams& aResolutionParameters,
sl@0
   314
							TAny* aConstructionParameters = NULL);
sl@0
   315
												
sl@0
   316
	// CreateImplementationL - CI14
sl@0
   317
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   318
                            TUid aInterfaceUid, 
sl@0
   319
                            const RExtendedInterfacesArray& aExtendedInterfaces,
sl@0
   320
							TInt32 aKeyOffset, 
sl@0
   321
							const TEComResolverParams& aResolutionParameters,
sl@0
   322
							TAny* aConstructionParameters = NULL);			
sl@0
   323
sl@0
   324
	// CreateImplementationL - CI15
sl@0
   325
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   326
                            TUid aInterfaceUid, 
sl@0
   327
                            const RExtendedInterfacesArray& aExtendedInterfaces,
sl@0
   328
							TUid& aInstanceKey, 
sl@0
   329
							const TEComResolverParams& aResolutionParameters, 
sl@0
   330
							TUid aResolverUid,
sl@0
   331
							TAny* aConstructionParameters = NULL);
sl@0
   332
												
sl@0
   333
	// CreateImplementationL - CI16
sl@0
   334
	IMPORT_C static TAny* CreateImplementationL(
sl@0
   335
                            TUid aInterfaceUid, 
sl@0
   336
                            const RExtendedInterfacesArray& aExtendedInterfaces,
sl@0
   337
							TInt32 aKeyOffset, 
sl@0
   338
							const TEComResolverParams& aResolutionParameters,
sl@0
   339
							TUid aResolverUid,
sl@0
   340
							TAny* aConstructionParameters = NULL);	
sl@0
   341
           		
sl@0
   342
                   	
sl@0
   343
	// Extended Interface query and management API declarations
sl@0
   344
	//
sl@0
   345
							
sl@0
   346
	IMPORT_C static TAny* GetExtendedInterfaceL(
sl@0
   347
                            const TUid& aInstanceKey, 
sl@0
   348
                            const TUid& aExtendedInterfaceUid);
sl@0
   349
	
sl@0
   350
	IMPORT_C static void ListExtendedInterfacesL(
sl@0
   351
                            const TUid& aImplementationUid, 
sl@0
   352
                            RExtendedInterfacesArray& aIfInfo);
sl@0
   353
	
sl@0
   354
	IMPORT_C static void ManuallyReleaseExtendedInterfaceL(
sl@0
   355
                            const TUid& aInstanceKey, 
sl@0
   356
                            const TUid& aExtendedInterfaceUid);
sl@0
   357
	
sl@0
   358
sl@0
   359
private: // @internalComponent APIs
sl@0
   360
         // This API is for internal testing purposes.Should not be used externally by clients.
sl@0
   361
sl@0
   362
	static REComSession& OpenLC();
sl@0
   363
	
sl@0
   364
	void ConstructL();
sl@0
   365
	void ReallyClose();
sl@0
   366
	
sl@0
   367
	void ListImplementationsL(
sl@0
   368
            TInt aServiceId, 
sl@0
   369
			TUid aInterfaceUid, 
sl@0
   370
			const RExtendedInterfacesArray& aExtendedInterfaces,
sl@0
   371
			const TEComResolverParams& aResolutionParameters, 
sl@0
   372
			TUid aResolverUid,
sl@0
   373
			RImplInfoPtrArray& aImplInfoArray,
sl@0
   374
			TBool aCapabilityCheck = ETrue);
sl@0
   375
			
sl@0
   376
	TAny* ResolveAndCreateImplL(
sl@0
   377
            TUid aImplementationUid, 
sl@0
   378
			TUid& aInstanceKey, 
sl@0
   379
			TAny* aCreationParameters, 
sl@0
   380
            TBool aCreationParamsFlag);
sl@0
   381
                                     
sl@0
   382
	TAny* ResolveAndCreateImplL(
sl@0
   383
            TUid aInterfaceUid, 
sl@0
   384
			const TEComResolverParams& aResolutionParameters, 
sl@0
   385
			TUid& aInstanceKey, 
sl@0
   386
			TAny* aCreationParameters, 
sl@0
   387
            TBool aCreationParamsFlag);
sl@0
   388
                                     
sl@0
   389
	TAny* ResolveAndCreateImplL(
sl@0
   390
            TUid aInterfaceUid, 
sl@0
   391
			const TEComResolverParams& aResolutionParameters, 
sl@0
   392
			TUid aResolverUid, 
sl@0
   393
			TUid& aInstanceKey, 
sl@0
   394
			TAny* aCreationParameters, 
sl@0
   395
            TBool aCreationParamsFlag);
sl@0
   396
	
sl@0
   397
	TAny* ResolveAndCreateImplL(
sl@0
   398
            TUid aInterfaceUid, 
sl@0
   399
            const RExtendedInterfacesArray& aExtendedInterfaces, 
sl@0
   400
			const TEComResolverParams& aResolutionParameters, 
sl@0
   401
			TUid& aInstanceKey, 
sl@0
   402
			TAny* aCreationParameters, 
sl@0
   403
            TBool aCreationParamsFlag);
sl@0
   404
                                     
sl@0
   405
	TAny* ResolveAndCreateImplL(
sl@0
   406
            TUid aInterfaceUid, 
sl@0
   407
            const RExtendedInterfacesArray& aExtendedInterfaces, 
sl@0
   408
			const TEComResolverParams& aResolutionParameters, 
sl@0
   409
			TUid aResolverUid, 
sl@0
   410
			TUid& aInstanceKey, 
sl@0
   411
			TAny* aCreationParameters, 
sl@0
   412
            TBool aCreationParamsFlag);
sl@0
   413
sl@0
   414
	TAny* ResolveAndCreateImplL(
sl@0
   415
            TInt aServiceId,
sl@0
   416
			TUid aInterfaceUid,
sl@0
   417
			const RExtendedInterfacesArray& aExtendedInterfaces, 
sl@0
   418
			const TEComResolverParams& aResolutionParameters, 
sl@0
   419
			TUid aResolverUid, 
sl@0
   420
			TUid& aInstanceKey, 
sl@0
   421
			TAny* aCreationParameters, 
sl@0
   422
            TBool aCreationParamsFlag);
sl@0
   423
	
sl@0
   424
	void ProcessListExtendedInterfacesL(
sl@0
   425
            const TUid& aImplementationUid,
sl@0
   426
			RExtendedInterfacesArray& aIfInfo);   
sl@0
   427
	
sl@0
   428
	void PackMatchStrAndExtendedInterfacesL(
sl@0
   429
            const TEComResolverParams& aResolutionParameters, 
sl@0
   430
			const RExtendedInterfacesArray& aExtendedInterfaces, 
sl@0
   431
			RBuf8& aMatchStrExtInfBuf);
sl@0
   432
                             
sl@0
   433
                                     
sl@0
   434
public: // @internalComponent APIs
sl@0
   435
    	// Internal methods used inside ECOM, not for client use.
sl@0
   436
sl@0
   437
    // This API is for internal testing purposes.
sl@0
   438
	IMPORT_C static void SetGetParametersL(const TIpcArgs &aArgs);
sl@0
   439
			
sl@0
   440
            									
sl@0
   441
private:
sl@0
   442
    /** Not used */
sl@0
   443
	TInt iReserved1;
sl@0
   444
sl@0
   445
	/** not used */
sl@0
   446
	TInt iReserved3;
sl@0
   447
    /** not used */
sl@0
   448
	TInt iReserved2;
sl@0
   449
	};
sl@0
   450
sl@0
   451
#endif	// __ECOM_H__