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: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "RegistryData.h" sl@0: #include "ParseImplementationData.h" sl@0: #include "EComDebug.h" sl@0: #include "ecompanics.h" sl@0: // Constant for no extended interface exist in the implementation information. sl@0: // This is used in externalisation of the object. sl@0: const TInt KNoneExtendedInterface = -1; sl@0: sl@0: /** sl@0: Intended Usage: This method determines the order of two extended interface. sl@0: */ sl@0: static TInt CompareUid(const TUid& aUid1, const TUid& aUid2) sl@0: { sl@0: return CompareTUidValues(aUid1.iUid,aUid2.iUid); sl@0: } sl@0: sl@0: /** sl@0: Function for clean up RExtendedInterfaceArray when leave occurs sl@0: */ sl@0: void CloseAndDeleteArray(TAny* aPtr) sl@0: { sl@0: if (aPtr!=NULL) sl@0: { sl@0: (static_cast(aPtr))->Close(); sl@0: delete aPtr; sl@0: } sl@0: } sl@0: // ___________________________________________________________________________ sl@0: // sl@0: /** sl@0: Intended Usage : Standardised two phase constructor which leaves the sl@0: CImplementationInformation pointer upon the cleanup stack. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aClientSide a boolean indicating whether the streaming is to performed in client/server side sl@0: @param aStream The stream to internalize this object from sl@0: @return A pointer to a fully constructed CImplementationInformation sl@0: @post Object is fully constructed and initialised sl@0: */ sl@0: CImplementationInformation* CImplementationInformation::NewLC(TBool aClientSide,RReadStream& aStream) sl@0: { sl@0: CImplementationInformation* self=new(ELeave) CImplementationInformation(); sl@0: CleanupStack::PushL(self); sl@0: self->InternalizeL(aClientSide,aStream); sl@0: return self; sl@0: } sl@0: sl@0: sl@0: /** sl@0: Intended Usage : Standardised two phase construction which leaves nothing sl@0: on the cleanup stack. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aUid The unique Id of this implementation sl@0: @param aVersion The version number of this implementation sl@0: @param aName The display name of this implementation. This object takes ownership of aName. sl@0: @param aDataType The data type supported by this implementation. This object takes ownership of aDataType. sl@0: @param aOpaqueData Data for this implementation which is not used by the ECom framework. sl@0: This object takes ownership of aOpaqueData. sl@0: @param aDrive The drive that this implementation is on sl@0: @param aRomOnly The flag recording whether this implementation may be loaded from ROM only sl@0: @param aRomBased The flag recording whether this implementation is on ROM or is a later version of one on ROM sl@0: @return A pointer to a fully constructed CImplementationInformation sl@0: @post Object is fully constructed and initialised sl@0: */ sl@0: CImplementationInformation* CImplementationInformation::NewL(TUid aUid, sl@0: TInt aVersion, sl@0: HBufC* aName, sl@0: HBufC8* aDataType, sl@0: HBufC8* aOpaqueData, sl@0: TDriveUnit aDrive, sl@0: TBool aRomOnly, sl@0: TBool aRomBased) sl@0: sl@0: { sl@0: return new(ELeave) CImplementationInformation(aUid, sl@0: aVersion, sl@0: aName, sl@0: aDataType, sl@0: aOpaqueData, sl@0: aDrive, sl@0: aRomOnly, sl@0: aRomBased); sl@0: } sl@0: sl@0: /** sl@0: Standardised two phase construction which leaves nothing on the cleanup stack. sl@0: @leave KErrNoMemory sl@0: @param aUid The unique Id of this implementation sl@0: @param aVersion The version number of this implementation sl@0: @param aName The display name of this implementation. This object takes ownership of aName. sl@0: @param aDataType The data type supported by this implementation. This object takes ownership of aDataType. sl@0: @param aOpaqueData Data for this implementation which is not used by the ECom framework. sl@0: This object takes ownership of aOpaqueData. sl@0: @param aDrive The drive that this implementation is on sl@0: @param aRomOnly The flag recording whether this implementation may be loaded from ROM only sl@0: @param aRomBased The flag recording whether this implementation is on ROM or is a later version of one on ROM sl@0: @param aExtendedInterfaces The pointer to the array recording the extended interfaces supported by this implementation. sl@0: This object takes ownership of aExtendedInterfaces. NULL is available for PLUGIN without extended interfaces support. sl@0: @return A pointer to a fully constructed CImplementationInformation sl@0: @post Object is fully constructed and initialised sl@0: */ sl@0: CImplementationInformation* CImplementationInformation::NewL(TUid aUid, sl@0: TInt aVersion, sl@0: HBufC* aName, sl@0: HBufC8* aDataType, sl@0: HBufC8* aOpaqueData, sl@0: TDriveUnit aDrive, sl@0: TBool aRomOnly, sl@0: TBool aRomBased, sl@0: RExtendedInterfacesArray* aExtendedInterfaces) sl@0: sl@0: { sl@0: return new(ELeave) CImplementationInformation(aUid, sl@0: aVersion, sl@0: aName, sl@0: aDataType, sl@0: aOpaqueData, sl@0: aDrive, sl@0: aRomOnly, sl@0: aRomBased, sl@0: aExtendedInterfaces); sl@0: } sl@0: sl@0: /** sl@0: Intended Usage : D'tor sl@0: @since 7.0 sl@0: @pre CImplementationInformation is fully constructed. sl@0: @post CImplementationInformation is completely destroyed. sl@0: */ sl@0: CImplementationInformation::~CImplementationInformation() sl@0: { sl@0: // d'tor sl@0: if (iDisplayName!=NULL) sl@0: { sl@0: delete iDisplayName; sl@0: } sl@0: if (iData!=NULL) sl@0: { sl@0: delete iData; sl@0: } sl@0: if (iOpaqueData!=NULL) sl@0: { sl@0: delete iOpaqueData; sl@0: } sl@0: if (iExtendedInterfaceList!=NULL) sl@0: { sl@0: iExtendedInterfaceList->Close(); sl@0: delete iExtendedInterfaceList; sl@0: } sl@0: } sl@0: sl@0: /** sl@0: Intended Usage : Default c'tor sl@0: @since 7.0 sl@0: @pre None sl@0: @post CImplementationInformation is fully constructed. sl@0: */ sl@0: CImplementationInformation::CImplementationInformation() : CBase() sl@0: { sl@0: // Do nothing here sl@0: } sl@0: sl@0: /** sl@0: Intended Usage : Constructor with parameters. This object takes ownership of sl@0: aName, aDataType and aOpaqueData. sl@0: @param aUid The unique Id of this implementation sl@0: @param aVersion The version number of this implementation sl@0: @param aName The display name of this implementation sl@0: @param aDataType The data type supported by this implementation sl@0: @param aOpaqueData Data for this implementation which is not used by the ECom framework sl@0: @param aDrive The drive which this implementation is on sl@0: @param aRomOnly The flag recording whether this implementation may be loaded from ROM only sl@0: @param aRomBased The flag recording whether this implementation is on ROM or is a later version of one on ROM sl@0: @since 7.0 sl@0: @pre None sl@0: @post CImplementationInformation is fully constructed. sl@0: */ sl@0: CImplementationInformation::CImplementationInformation(TUid aUid, sl@0: TInt aVersion, sl@0: HBufC* aName, sl@0: HBufC8* aDataType, sl@0: HBufC8* aOpaqueData, sl@0: TDriveUnit aDrive, sl@0: TBool aRomOnly, sl@0: TBool aRomBased) sl@0: : CBase(), sl@0: iImplementationUid(aUid), sl@0: iVersion(aVersion), sl@0: iDisplayName(aName), sl@0: iData(aDataType), sl@0: iOpaqueData(aOpaqueData), sl@0: iDrive(aDrive), sl@0: iRomOnly(aRomOnly), sl@0: iRomBased(aRomBased) sl@0: { sl@0: // Do nothing here sl@0: } sl@0: sl@0: /** sl@0: Constructor with parameters. This object takes ownership of aName, aDataType, aOpaqueData and aExtendedInterfaces. sl@0: @param aUid The unique Id of this implementation sl@0: @param aVersion The version number of this implementation sl@0: @param aName The display name of this implementation sl@0: @param aDataType The data type supported by this implementation sl@0: @param aOpaqueData Data for this implementation which is not used by the ECom framework sl@0: @param aDrive The drive which this implementation is on sl@0: @param aRomOnly The flag recording whether this implementation may be loaded from ROM only sl@0: @param aRomBased The flag recording whether this implementation is on ROM or is a later version of one on ROM sl@0: @param aExtendedInterfaces The array recording the extended interfaces supported by this implementation. sl@0: NULL is available for PLUGIN without extended interfaces support. sl@0: @pre None sl@0: @post CImplementationInformation is fully constructed. sl@0: */ sl@0: CImplementationInformation::CImplementationInformation(TUid aUid, sl@0: TInt aVersion, sl@0: HBufC* aName, sl@0: HBufC8* aDataType, sl@0: HBufC8* aOpaqueData, sl@0: TDriveUnit aDrive, sl@0: TBool aRomOnly, sl@0: TBool aRomBased, sl@0: RExtendedInterfacesArray* aExtendedInterfaces) sl@0: : CBase(), sl@0: iImplementationUid(aUid), sl@0: iVersion(aVersion), sl@0: iDisplayName(aName), sl@0: iData(aDataType), sl@0: iOpaqueData(aOpaqueData), sl@0: iDrive(aDrive), sl@0: iRomOnly(aRomOnly), sl@0: iRomBased(aRomBased), sl@0: iExtendedInterfaceList(aExtendedInterfaces) sl@0: { sl@0: // Do nothing here sl@0: } sl@0: /** sl@0: Intended Usage : Stream out the internal state to aStream. sl@0: sl@0: Error Condition : Leave with the error code. sl@0: @leave KErrNoMemory. sl@0: @leave @see RWriteStream. sl@0: @since 7.0 sl@0: @param aClientSide a boolean indicating whether the streaming is to performed in client/server side sl@0: @param aStream The stream to store the data in. sl@0: @pre CImplementationInformation is fully constructed and initialized sl@0: */ sl@0: void CImplementationInformation::ExternalizeL(TBool aClientSide,RWriteStream& aStream) const sl@0: { sl@0: aStream.WriteInt32L(iImplementationUid.iUid); sl@0: aStream.WriteInt32L(iVersion); sl@0: if(iDisplayName) sl@0: { sl@0: TPtr outputBuf = iDisplayName->Des(); sl@0: aStream.WriteInt32L(outputBuf.Length()); sl@0: aStream.WriteL(outputBuf); sl@0: } sl@0: else sl@0: { sl@0: aStream.WriteInt32L(0); sl@0: } sl@0: sl@0: if(iData) sl@0: { sl@0: TPtr8 outputBuf = iData->Des(); sl@0: aStream.WriteInt32L(outputBuf.Length()); sl@0: aStream.WriteL(outputBuf); sl@0: } sl@0: else sl@0: { sl@0: aStream.WriteInt32L(0); sl@0: } sl@0: sl@0: if(iOpaqueData) sl@0: { sl@0: TPtr8 outputBuf = iOpaqueData->Des(); sl@0: aStream.WriteInt32L(outputBuf.Length()); sl@0: aStream.WriteL(outputBuf); sl@0: } sl@0: else sl@0: { sl@0: aStream.WriteInt32L(0); sl@0: } sl@0: if (aClientSide) sl@0: { sl@0: aStream.WriteInt32L(iDrive); sl@0: aStream.WriteInt32L(iVid.iId); sl@0: } sl@0: TInt additionalImplInfo=iRomOnly; sl@0: additionalImplInfo|=iRomBased<<1; sl@0: additionalImplInfo|=iDisabled<<2; sl@0: aStream.WriteInt8L(additionalImplInfo); sl@0: sl@0: if (iExtendedInterfaceList != NULL) sl@0: { sl@0: TInt count = iExtendedInterfaceList->Count(); sl@0: aStream.WriteInt32L(count); sl@0: for(TInt i = 0; i < count; ++i) sl@0: { sl@0: aStream.WriteInt32L((*iExtendedInterfaceList)[i].iUid); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: aStream.WriteInt32L(KNoneExtendedInterface); sl@0: } sl@0: } sl@0: sl@0: sl@0: sl@0: /** sl@0: Intended Usage : Restore the internal state from aStream. sl@0: sl@0: Error Condition : Leave with the error code. sl@0: @leave KErrNoMemory. sl@0: @leave @see RReadStream. sl@0: @since 7.0 sl@0: @param aClientSide a boolean indicating whether the streaming is to performed in client/server side sl@0: @param aStream The stream to read the data from. sl@0: @pre CImplementationInformation is fully constructed. sl@0: @post CImplementationInformation is restored to the state specified by sl@0: the contents of aStream. sl@0: */ sl@0: void CImplementationInformation::InternalizeL(TBool aClientSide,RReadStream& aStream) sl@0: { sl@0: delete iDisplayName; sl@0: iDisplayName = NULL; sl@0: delete iData; sl@0: iData = NULL; sl@0: delete iOpaqueData; sl@0: iOpaqueData = NULL; sl@0: sl@0: iImplementationUid.iUid = aStream.ReadInt32L(); sl@0: iVersion = aStream.ReadInt32L(); sl@0: TInt inputLength = aStream.ReadInt32L(); sl@0: if(inputLength > 0) sl@0: { sl@0: // read in the iName string sl@0: iDisplayName = HBufC::NewL(inputLength); sl@0: TPtr inputBuf = iDisplayName->Des(); sl@0: aStream.ReadL(inputBuf,inputLength); sl@0: } sl@0: inputLength = aStream.ReadInt32L(); sl@0: if(inputLength > 0) sl@0: { sl@0: // read in the iData string sl@0: iData = HBufC8::NewL(inputLength); sl@0: TPtr8 inputBuf = iData->Des(); sl@0: aStream.ReadL(inputBuf,inputLength); sl@0: } sl@0: inputLength = aStream.ReadInt32L(); sl@0: if(inputLength > 0) sl@0: { sl@0: // read in the iOpaqueData string sl@0: iOpaqueData = HBufC8::NewL(inputLength); sl@0: TPtr8 inputBuf = iOpaqueData->Des(); sl@0: aStream.ReadL(inputBuf,inputLength); sl@0: } sl@0: if (aClientSide) sl@0: { sl@0: TUint checkDrive = aStream.ReadInt32L(); sl@0: if (checkDrive > (TUint) KMaxDrives) sl@0: User::Leave(KErrCorrupt); sl@0: iDrive = checkDrive; sl@0: iVid.iId = aStream.ReadInt32L(); sl@0: } sl@0: TInt8 additionalImplInfo=aStream.ReadInt8L(); sl@0: iRomOnly=additionalImplInfo&1; sl@0: iRomBased=(additionalImplInfo&2)>>1; sl@0: iDisabled=(additionalImplInfo&4)>>2; sl@0: TInt count = aStream.ReadInt32L(); sl@0: if (count != KNoneExtendedInterface) sl@0: { sl@0: for(TInt i = 0; i < count; i++) sl@0: { sl@0: AddExtendedInterfaceL(TUid::Uid(aStream.ReadInt32L())); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /** sl@0: Intended Usage : Set whether this implementation is on ROM or is sl@0: a later version of one on ROM sl@0: @pre CImplementationInformation is fully constructed sl@0: */ sl@0: void CImplementationInformation::SetRomBased(TBool aRomBased) sl@0: { sl@0: iRomBased = aRomBased; sl@0: } sl@0: sl@0: void CImplementationInformation::SetDrive(TDriveUnit aDrive) sl@0: { sl@0: iDrive=aDrive; sl@0: } sl@0: sl@0: /** sl@0: Intended Usage : Add extended interface to list of extended interfaces sl@0: @pre CImplementationInformation is fully constructed sl@0: */ sl@0: void CImplementationInformation::AddExtendedInterfaceL(const TUid& aExtendedInterface) sl@0: { sl@0: // Allocates extended interfaces list in case it is NULL sl@0: if (iExtendedInterfaceList == NULL) sl@0: { sl@0: iExtendedInterfaceList = new(ELeave) RExtendedInterfacesArray(KExtendedInterfaceGranularity); sl@0: } sl@0: sl@0: // Ensure no duplicate extended interface is added. sl@0: // if there is duplicate extended interface, ignore this extended interface and panic in debug mode. sl@0: TLinearOrder uidComparator(CompareUid); sl@0: TInt error = iExtendedInterfaceList->InsertInOrder(aExtendedInterface,uidComparator); sl@0: if (error == KErrAlreadyExists) sl@0: { sl@0: __ECOM_TRACE1("ECOM: PANIC in CImplementationInformation::AddExtendedInterfaceL(), duplicate extended interface %x", aExtendedInterface.iUid); sl@0: __ASSERT_DEBUG(EFalse, User::Panic(KEComServerPanicCategory,EEComPanic_CImlpementationInfromation_DuplicateExIf)); sl@0: } sl@0: else sl@0: { sl@0: User::LeaveIfError(error); sl@0: } sl@0: } sl@0: /** sl@0: Intended Usage : Get extended interface list. sl@0: @pre CImplementationInformation is fully constructed sl@0: */ sl@0: RExtendedInterfacesArray* CImplementationInformation::GetExtendedInterfaceList() sl@0: { sl@0: return iExtendedInterfaceList; sl@0: } sl@0: sl@0: sl@0: /** sl@0: Intended Usage : Get extended interface list. sl@0: @pre CImplementationInformation is fully constructed sl@0: @param aList The array of the extended interfaces which are supported by this implementation. sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: EXPORT_C void CImplementationInformation::GetExtendedInterfaceListL(RExtendedInterfacesArray& aList) sl@0: { sl@0: aList.Reset(); sl@0: if (iExtendedInterfaceList != NULL) sl@0: { sl@0: for (TInt i = 0;i < iExtendedInterfaceList->Count(); i++) sl@0: { sl@0: aList.AppendL((*iExtendedInterfaceList)[i]); sl@0: } sl@0: } sl@0: }