os/ossrv/lowlevellibsandfws/pluginfw/Framework/inc/ImplementationInformation.h
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) 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
// This file contains the definition of the CImplementationInformation API class.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @publishedAll
sl@0
    21
 @released
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __IMPLEMENTATIONINFORMATION_H__
sl@0
    25
#define __IMPLEMENTATIONINFORMATION_H__
sl@0
    26
sl@0
    27
// ____________________________________________________________________________
sl@0
    28
// INCLUDES
sl@0
    29
sl@0
    30
#include <s32std.h>
sl@0
    31
#include <f32file.h>
sl@0
    32
sl@0
    33
sl@0
    34
// ____________________________________________________________________________
sl@0
    35
// TYPES
sl@0
    36
sl@0
    37
/**
sl@0
    38
Simplifies the definition of extended interfaces array
sl@0
    39
@publishedPartner
sl@0
    40
@released
sl@0
    41
*/
sl@0
    42
// To be used internally by ECOM and by Phone Manufacturers
sl@0
    43
typedef RArray<TUid> RExtendedInterfacesArray;
sl@0
    44
sl@0
    45
sl@0
    46
sl@0
    47
// ____________________________________________________________________________
sl@0
    48
// CLASSES
sl@0
    49
sl@0
    50
/**
sl@0
    51
The CimplementationInformation class acts as the container for the registration 
sl@0
    52
data relating to a particular interface implementation.
sl@0
    53
Note that this class is used in both the ECOM client and server side hence the 
sl@0
    54
mixed API classification seen below. For the client side only the API used to 
sl@0
    55
extract the registration data should be used.
sl@0
    56
*/
sl@0
    57
NONSHARABLE_CLASS(CImplementationInformation) : public CBase
sl@0
    58
	{
sl@0
    59
public: // internalComponent APIs
sl@0
    60
    	// Internal methods used only inside ECOM , not for client use.
sl@0
    61
sl@0
    62
	static CImplementationInformation* NewLC(TBool aClientSide,
sl@0
    63
                                             RReadStream& aStream);
sl@0
    64
sl@0
    65
	static CImplementationInformation* NewL(TUid	aUid,
sl@0
    66
											TInt	aVersion,
sl@0
    67
											HBufC*  aName,
sl@0
    68
											HBufC8* aDataType,
sl@0
    69
											HBufC8* aOpaqueData,
sl@0
    70
											TDriveUnit aDrive,
sl@0
    71
											TBool aRomOnly,
sl@0
    72
											TBool aRomBased);
sl@0
    73
	static CImplementationInformation* NewL(TUid	aUid,
sl@0
    74
											TInt	aVersion,
sl@0
    75
											HBufC*  aName,
sl@0
    76
											HBufC8* aDataType,
sl@0
    77
											HBufC8* aOpaqueData,
sl@0
    78
											TDriveUnit aDrive,
sl@0
    79
											TBool aRomOnly,
sl@0
    80
											TBool aRomBased,
sl@0
    81
											RExtendedInterfacesArray* aExtendedInterfaces);
sl@0
    82
	
sl@0
    83
	~CImplementationInformation();
sl@0
    84
sl@0
    85
public: // publishedAll APIs
sl@0
    86
        // Available for use by all clients
sl@0
    87
sl@0
    88
	inline const TDesC& DisplayName() const;
sl@0
    89
sl@0
    90
	inline const TDesC8& DataType() const;
sl@0
    91
	inline const TDesC8& OpaqueData() const;
sl@0
    92
sl@0
    93
	inline TUid ImplementationUid() const;
sl@0
    94
	inline TInt Version() const;
sl@0
    95
sl@0
    96
	inline TDriveUnit Drive() const;
sl@0
    97
	
sl@0
    98
	inline TBool RomOnly() const;
sl@0
    99
	inline TBool RomBased() const;
sl@0
   100
	
sl@0
   101
	inline TVendorId VendorId() const;
sl@0
   102
	
sl@0
   103
	inline TBool Disabled() const;
sl@0
   104
	
sl@0
   105
	// This function should not be used by any ECOM client as it will have no 
sl@0
   106
    // effect at all on the implementation information stored in the server side
sl@0
   107
	inline void SetDisabled(TBool aDisabled);
sl@0
   108
sl@0
   109
	IMPORT_C void GetExtendedInterfaceListL(RExtendedInterfacesArray& aList);
sl@0
   110
sl@0
   111
public: // internalComponent APIs
sl@0
   112
    	// Internal methods used inside ECOM, not for client use.
sl@0
   113
sl@0
   114
	void ExternalizeL(TBool aClientSide,RWriteStream& aStream) const;
sl@0
   115
	void InternalizeL(TBool aClientSide,RReadStream& aStream);
sl@0
   116
	
sl@0
   117
	void SetRomBased(TBool aRomBased);
sl@0
   118
	void SetDrive(TDriveUnit aDrive);
sl@0
   119
	
sl@0
   120
 	inline void SetVendorId(const TVendorId aVid);
sl@0
   121
sl@0
   122
	void AddExtendedInterfaceL(const TUid& aExtendedInterface); 	
sl@0
   123
	RExtendedInterfacesArray* GetExtendedInterfaceList();
sl@0
   124
	
sl@0
   125
private: // internalComponent APIs
sl@0
   126
         // Internal methods used inside ECOM, not for client use.
sl@0
   127
sl@0
   128
	CImplementationInformation();
sl@0
   129
sl@0
   130
	CImplementationInformation(TUid aUid,
sl@0
   131
							   TInt aVersion,
sl@0
   132
							   HBufC*  aName,
sl@0
   133
							   HBufC8* aDataType,
sl@0
   134
							   HBufC8* aOpaqueData,
sl@0
   135
							   TDriveUnit aDrive,
sl@0
   136
							   TBool aRomOnly,
sl@0
   137
							   TBool aRomBased);
sl@0
   138
    
sl@0
   139
    CImplementationInformation(TUid aUid,
sl@0
   140
							   TInt aVersion,
sl@0
   141
							   HBufC*  aName,
sl@0
   142
							   HBufC8* aDataType,
sl@0
   143
							   HBufC8* aOpaqueData,
sl@0
   144
							   TDriveUnit aDrive,
sl@0
   145
							   TBool aRomOnly,
sl@0
   146
							   TBool aRomBased,
sl@0
   147
							   RExtendedInterfacesArray* aExtendedInterfaces);
sl@0
   148
							   	
sl@0
   149
private:
sl@0
   150
	/** The implementation UID */
sl@0
   151
	TUid		iImplementationUid;
sl@0
   152
	
sl@0
   153
	/** The implementation version */
sl@0
   154
	TInt		iVersion;
sl@0
   155
	
sl@0
   156
	/** This implementations human readable name intended for display in 
sl@0
   157
	    UI implementations */
sl@0
   158
	HBufC*		iDisplayName;
sl@0
   159
	
sl@0
   160
	/** The type of data this implementation is registered to handle :
sl@0
   161
	Used for matching against the run-time cue provided by the client
sl@0
   162
	during default interface implementation resolution.
sl@0
   163
	*/
sl@0
   164
	HBufC8*		iData;
sl@0
   165
	
sl@0
   166
	/** Data registered for this implementation which can be used by the client
sl@0
   167
	during non-default resolution operations but is ignored by the framework.
sl@0
   168
	*/
sl@0
   169
	HBufC8*		iOpaqueData;
sl@0
   170
	
sl@0
   171
	/** The flag recording if this implementation is disabled or enabled */
sl@0
   172
	TBool		iDisabled;
sl@0
   173
	
sl@0
   174
	/** The drive that this plug-in resides on */
sl@0
   175
	TDriveUnit		iDrive;
sl@0
   176
	
sl@0
   177
	/** The flag recording whether this implementation may only be loaded
sl@0
   178
	from read-only internal media */
sl@0
   179
	TBool iRomOnly;
sl@0
   180
	
sl@0
   181
	/** This flag records whether this implementation was discovered on
sl@0
   182
	read-only internal media or that it is a later version of one that was */
sl@0
   183
	TBool iRomBased;
sl@0
   184
	
sl@0
   185
	/** The Vendor ID of the plug-in which this implementation belongs to*/
sl@0
   186
	TVendorId iVid;
sl@0
   187
	
sl@0
   188
	/** Array of extended interfaces.*/
sl@0
   189
	RExtendedInterfacesArray* iExtendedInterfaceList;
sl@0
   190
	
sl@0
   191
	};	// End CImplementationInformation
sl@0
   192
sl@0
   193
sl@0
   194
// ____________________________________________________________________________
sl@0
   195
// TYPES
sl@0
   196
sl@0
   197
/**
sl@0
   198
Simplifies the definition of functions which return registry information
sl@0
   199
*/
sl@0
   200
typedef RArray<CImplementationInformation*> RImplInfoArray;
sl@0
   201
sl@0
   202
/**
sl@0
   203
Simplifies the definition of functions which return registry information
sl@0
   204
*/
sl@0
   205
typedef RPointerArray<CImplementationInformation> RImplInfoPtrArray;
sl@0
   206
sl@0
   207
sl@0
   208
// ____________________________________________________________________________
sl@0
   209
// INLINES
sl@0
   210
sl@0
   211
#include <ecom/implementationinformation.inl>
sl@0
   212
sl@0
   213
sl@0
   214
#endif		// __IMPLEMENTATIONINFORMATION_H__