os/ossrv/lowlevellibsandfws/pluginfw/Framework/inc/ImplementationInformation.inl
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 implementation of
sl@0
    15
// the CImplementationInformation class.
sl@0
    16
// Provide the inline implementation of CImplementationInformation
sl@0
    17
// CImplementationInformation provides access to information on a particular implementation
sl@0
    18
// 
sl@0
    19
//
sl@0
    20
sl@0
    21
/**
sl@0
    22
 
sl@0
    23
 Intended Usage	:	Accessor for this implementation's human readable name
sl@0
    24
 @since			7.0
sl@0
    25
 @return			The human readable name for this implementation
sl@0
    26
 @pre 			CImplementationInformation is fully constructed and initialized
sl@0
    27
*/
sl@0
    28
const TDesC& CImplementationInformation::DisplayName() const
sl@0
    29
	{
sl@0
    30
	if(iDisplayName == NULL)
sl@0
    31
		return KNullDesC();
sl@0
    32
	else
sl@0
    33
		return *iDisplayName;
sl@0
    34
	}
sl@0
    35
sl@0
    36
sl@0
    37
/**
sl@0
    38
Intended Usage	:	Accessor for this implementation's default binary data
sl@0
    39
@since			7.0
sl@0
    40
@return			The data type which this implementation supports
sl@0
    41
@pre 			CImplementationInformation is fully constructed and initialized
sl@0
    42
*/
sl@0
    43
const TDesC8& CImplementationInformation::DataType() const
sl@0
    44
	{
sl@0
    45
	if(iData == NULL)
sl@0
    46
		return KNullDesC8();
sl@0
    47
	else
sl@0
    48
		return *iData;
sl@0
    49
	}
sl@0
    50
sl@0
    51
sl@0
    52
/**
sl@0
    53
Intended Usage	:	Accessor for this implementation's opaque binary data
sl@0
    54
@since			7.0
sl@0
    55
@return			The opaque data which is available for this implementation
sl@0
    56
@pre 			CImplementationInformation is fully constructed and initialized
sl@0
    57
*/
sl@0
    58
const TDesC8& CImplementationInformation::OpaqueData() const
sl@0
    59
	{
sl@0
    60
	if(iOpaqueData == NULL)
sl@0
    61
		return KNullDesC8();
sl@0
    62
	else
sl@0
    63
		return *iOpaqueData;
sl@0
    64
	}
sl@0
    65
sl@0
    66
sl@0
    67
/**
sl@0
    68
Intended Usage	:	Accessor for this implementation's Uid
sl@0
    69
@since			7.0
sl@0
    70
@return			The Uid of this implementation
sl@0
    71
@pre 			CImplementationInformation is fully constructed and initialized
sl@0
    72
*/
sl@0
    73
TUid CImplementationInformation::ImplementationUid() const
sl@0
    74
	{
sl@0
    75
	return iImplementationUid;
sl@0
    76
	}
sl@0
    77
sl@0
    78
sl@0
    79
/**
sl@0
    80
Intended Usage	:	Accessor for the version number of this implementation
sl@0
    81
@since			7.0
sl@0
    82
@return			The version number of this implementation
sl@0
    83
@pre 			CImplementationInformation is fully constructed and initialized
sl@0
    84
*/
sl@0
    85
TInt CImplementationInformation::Version() const
sl@0
    86
	{
sl@0
    87
	return iVersion;
sl@0
    88
	}
sl@0
    89
sl@0
    90
sl@0
    91
/**
sl@0
    92
Intended Usage	:	Accessor for whether this implementation is currently 
sl@0
    93
					disabled
sl@0
    94
@since			7.0
sl@0
    95
@return			Flag indicating whether this implementation is disabled
sl@0
    96
@pre 			CImplementationInformation is fully constructed and initialized
sl@0
    97
*/
sl@0
    98
TBool CImplementationInformation::Disabled() const
sl@0
    99
	{
sl@0
   100
	return iDisabled;
sl@0
   101
	}
sl@0
   102
sl@0
   103
sl@0
   104
/**
sl@0
   105
Intended Usage	:	Marks this implementation as disabled, or enabled.
sl@0
   106
Note that this function should not be used by any ECOM client side as it will have no effect at all
sl@0
   107
on the implementation information stored in the server side.
sl@0
   108
@since			7.0
sl@0
   109
@param			aDisabled ETrue to indicate this implementation should be disabled, EFalse for enabled.
sl@0
   110
@pre 			CImplementationInformation is fully constructed and initialized
sl@0
   111
@post			Implementation is marked as.
sl@0
   112
*/
sl@0
   113
void CImplementationInformation::SetDisabled(TBool aDisabled)
sl@0
   114
	{
sl@0
   115
	iDisabled = aDisabled;
sl@0
   116
	}
sl@0
   117
sl@0
   118
/**
sl@0
   119
Intended Usage	: Returns the drive that this implementation is installed on
sl@0
   120
Error Condition	: None
sl@0
   121
@since			7.0
sl@0
   122
@return			The drive that this implementation is on
sl@0
   123
@pre 			CImplementationInformation is fully constructed.
sl@0
   124
*/
sl@0
   125
TDriveUnit CImplementationInformation::Drive() const
sl@0
   126
	{
sl@0
   127
	return iDrive;
sl@0
   128
	}
sl@0
   129
sl@0
   130
sl@0
   131
/**
sl@0
   132
Intended Usage	: Accessor for whether this implementation is to be loaded 
sl@0
   133
				  from ROM only
sl@0
   134
@return			Flag indicating whether this implementation is to be loaded from ROM only
sl@0
   135
@pre 			CImplementationInformation is fully constructed
sl@0
   136
*/
sl@0
   137
TBool CImplementationInformation::RomOnly() const
sl@0
   138
	{
sl@0
   139
	return iRomOnly;
sl@0
   140
	}
sl@0
   141
sl@0
   142
/**
sl@0
   143
Intended Usage	: Accessor for whether this implementation is on ROM or is
sl@0
   144
				  a later version of one on ROM
sl@0
   145
@return			Flag indicating whether this implementation is on ROM or is a later version of one on ROM
sl@0
   146
@pre 			CImplementationInformation is fully constructed
sl@0
   147
*/
sl@0
   148
TBool CImplementationInformation::RomBased() const
sl@0
   149
	{
sl@0
   150
	return iRomBased;
sl@0
   151
	}
sl@0
   152
/**
sl@0
   153
Intended Usage:	Returns the VID of the plug-in that this implementation belongs to. 
sl@0
   154
				The VID is the VendorId for the plug-in's DLL
sl@0
   155
@pre			CImplementationInformation is fully constructed
sl@0
   156
@return			VendorId of the plug-in that this implementation belongs to.
sl@0
   157
*/
sl@0
   158
TVendorId CImplementationInformation::VendorId() const
sl@0
   159
	{
sl@0
   160
	return iVid;
sl@0
   161
	}
sl@0
   162
	
sl@0
   163
/**
sl@0
   164
Intended Usage:	Sets the VID of the plug-in that this implementation belongs to. 
sl@0
   165
				The VID is the VendorId for the plug-in's DLL.
sl@0
   166
@internalComponent
sl@0
   167
@pre			CImplementationInformation is fully constructed
sl@0
   168
@param 			aVid VendorId of the plug-in that this implementation belongs to.
sl@0
   169
*/
sl@0
   170
void CImplementationInformation::SetVendorId(const TVendorId aVid)
sl@0
   171
	{
sl@0
   172
	iVid = aVid;
sl@0
   173
	}
sl@0
   174
sl@0
   175
// ____________________________________________________________________________
sl@0
   176
// Provide the inline implementations of useful utilitiy functions related to
sl@0
   177
// CImplementationInformation for use in client and server sides.
sl@0
   178
//
sl@0
   179
sl@0
   180
/**
sl@0
   181
Comparison function used in ordering functions (e.g. as used with TLinearOrder) 
sl@0
   182
where ECOM UID identified structures are held in ordered RArray/RPointerArray 
sl@0
   183
objects.
sl@0
   184
sl@0
   185
@internalComponent
sl@0
   186
@param aUid1 First UID value of comparison
sl@0
   187
@param aUid2 Second UID Value of comparison
sl@0
   188
@return Returns 1 when aUid1 > aUid2; -1 when aUid1 < aUid2; 0 when they equal
sl@0
   189
*/
sl@0
   190
inline TInt CompareTUidValues(TInt aUid1, TInt aUid2)
sl@0
   191
	{
sl@0
   192
	// This has been implemented as 'return aUid1-aUid2' previously.
sl@0
   193
	// This can lead to overflow problems when comparing 2 signed integers
sl@0
   194
	// if the operands are large enough: large aUid minus large negative aUid2
sl@0
   195
	// returns a negative value due to arithmetic overflow of the result when 
sl@0
   196
	// you'd want a positive value. Hence the longer hand implementation below.
sl@0
   197
	if (aUid1 > aUid2)
sl@0
   198
		return 1;
sl@0
   199
	if (aUid1 < aUid2)
sl@0
   200
		return -1;
sl@0
   201
	return 0;
sl@0
   202
	}