sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // This file contains the implementation of sl@0: // the CImplementationInformation class. sl@0: // Provide the inline implementation of CImplementationInformation sl@0: // CImplementationInformation provides access to information on a particular implementation sl@0: // sl@0: // sl@0: sl@0: /** sl@0: sl@0: Intended Usage : Accessor for this implementation's human readable name sl@0: @since 7.0 sl@0: @return The human readable name for this implementation sl@0: @pre CImplementationInformation is fully constructed and initialized sl@0: */ sl@0: const TDesC& CImplementationInformation::DisplayName() const sl@0: { sl@0: if(iDisplayName == NULL) sl@0: return KNullDesC(); sl@0: else sl@0: return *iDisplayName; sl@0: } sl@0: sl@0: sl@0: /** sl@0: Intended Usage : Accessor for this implementation's default binary data sl@0: @since 7.0 sl@0: @return The data type which this implementation supports sl@0: @pre CImplementationInformation is fully constructed and initialized sl@0: */ sl@0: const TDesC8& CImplementationInformation::DataType() const sl@0: { sl@0: if(iData == NULL) sl@0: return KNullDesC8(); sl@0: else sl@0: return *iData; sl@0: } sl@0: sl@0: sl@0: /** sl@0: Intended Usage : Accessor for this implementation's opaque binary data sl@0: @since 7.0 sl@0: @return The opaque data which is available for this implementation sl@0: @pre CImplementationInformation is fully constructed and initialized sl@0: */ sl@0: const TDesC8& CImplementationInformation::OpaqueData() const sl@0: { sl@0: if(iOpaqueData == NULL) sl@0: return KNullDesC8(); sl@0: else sl@0: return *iOpaqueData; sl@0: } sl@0: sl@0: sl@0: /** sl@0: Intended Usage : Accessor for this implementation's Uid sl@0: @since 7.0 sl@0: @return The Uid of this implementation sl@0: @pre CImplementationInformation is fully constructed and initialized sl@0: */ sl@0: TUid CImplementationInformation::ImplementationUid() const sl@0: { sl@0: return iImplementationUid; sl@0: } sl@0: sl@0: sl@0: /** sl@0: Intended Usage : Accessor for the version number of this implementation sl@0: @since 7.0 sl@0: @return The version number of this implementation sl@0: @pre CImplementationInformation is fully constructed and initialized sl@0: */ sl@0: TInt CImplementationInformation::Version() const sl@0: { sl@0: return iVersion; sl@0: } sl@0: sl@0: sl@0: /** sl@0: Intended Usage : Accessor for whether this implementation is currently sl@0: disabled sl@0: @since 7.0 sl@0: @return Flag indicating whether this implementation is disabled sl@0: @pre CImplementationInformation is fully constructed and initialized sl@0: */ sl@0: TBool CImplementationInformation::Disabled() const sl@0: { sl@0: return iDisabled; sl@0: } sl@0: sl@0: sl@0: /** sl@0: Intended Usage : Marks this implementation as disabled, or enabled. sl@0: Note that this function should not be used by any ECOM client side as it will have no effect at all sl@0: on the implementation information stored in the server side. sl@0: @since 7.0 sl@0: @param aDisabled ETrue to indicate this implementation should be disabled, EFalse for enabled. sl@0: @pre CImplementationInformation is fully constructed and initialized sl@0: @post Implementation is marked as. sl@0: */ sl@0: void CImplementationInformation::SetDisabled(TBool aDisabled) sl@0: { sl@0: iDisabled = aDisabled; sl@0: } sl@0: sl@0: /** sl@0: Intended Usage : Returns the drive that this implementation is installed on sl@0: Error Condition : None sl@0: @since 7.0 sl@0: @return The drive that this implementation is on sl@0: @pre CImplementationInformation is fully constructed. sl@0: */ sl@0: TDriveUnit CImplementationInformation::Drive() const sl@0: { sl@0: return iDrive; sl@0: } sl@0: sl@0: sl@0: /** sl@0: Intended Usage : Accessor for whether this implementation is to be loaded sl@0: from ROM only sl@0: @return Flag indicating whether this implementation is to be loaded from ROM only sl@0: @pre CImplementationInformation is fully constructed sl@0: */ sl@0: TBool CImplementationInformation::RomOnly() const sl@0: { sl@0: return iRomOnly; sl@0: } sl@0: sl@0: /** sl@0: Intended Usage : Accessor for whether this implementation is on ROM or is sl@0: a later version of one on ROM sl@0: @return Flag indicating whether this implementation is on ROM or is a later version of one on ROM sl@0: @pre CImplementationInformation is fully constructed sl@0: */ sl@0: TBool CImplementationInformation::RomBased() const sl@0: { sl@0: return iRomBased; sl@0: } sl@0: /** sl@0: Intended Usage: Returns the VID of the plug-in that this implementation belongs to. sl@0: The VID is the VendorId for the plug-in's DLL sl@0: @pre CImplementationInformation is fully constructed sl@0: @return VendorId of the plug-in that this implementation belongs to. sl@0: */ sl@0: TVendorId CImplementationInformation::VendorId() const sl@0: { sl@0: return iVid; sl@0: } sl@0: sl@0: /** sl@0: Intended Usage: Sets the VID of the plug-in that this implementation belongs to. sl@0: The VID is the VendorId for the plug-in's DLL. sl@0: @internalComponent sl@0: @pre CImplementationInformation is fully constructed sl@0: @param aVid VendorId of the plug-in that this implementation belongs to. sl@0: */ sl@0: void CImplementationInformation::SetVendorId(const TVendorId aVid) sl@0: { sl@0: iVid = aVid; sl@0: } sl@0: sl@0: // ____________________________________________________________________________ sl@0: // Provide the inline implementations of useful utilitiy functions related to sl@0: // CImplementationInformation for use in client and server sides. sl@0: // sl@0: sl@0: /** sl@0: Comparison function used in ordering functions (e.g. as used with TLinearOrder) sl@0: where ECOM UID identified structures are held in ordered RArray/RPointerArray sl@0: objects. sl@0: sl@0: @internalComponent sl@0: @param aUid1 First UID value of comparison sl@0: @param aUid2 Second UID Value of comparison sl@0: @return Returns 1 when aUid1 > aUid2; -1 when aUid1 < aUid2; 0 when they equal sl@0: */ sl@0: inline TInt CompareTUidValues(TInt aUid1, TInt aUid2) sl@0: { sl@0: // This has been implemented as 'return aUid1-aUid2' previously. sl@0: // This can lead to overflow problems when comparing 2 signed integers sl@0: // if the operands are large enough: large aUid minus large negative aUid2 sl@0: // returns a negative value due to arithmetic overflow of the result when sl@0: // you'd want a positive value. Hence the longer hand implementation below. sl@0: if (aUid1 > aUid2) sl@0: return 1; sl@0: if (aUid1 < aUid2) sl@0: return -1; sl@0: return 0; sl@0: }