os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/ImplementationInformation.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // This file contains the implementation of
    15 // the CImplementationInformation class.
    16 // 
    17 //
    18 
    19 #include <ecom/ecom.h>
    20 #include <ecom/ecomerrorcodes.h>
    21 #include <ecom/ecomresolverparams.h>
    22 #include <ecom/implementationinformation.h>
    23 #include "RegistryData.h"
    24 #include "ParseImplementationData.h"
    25 #include "EComDebug.h"
    26 #include "ecompanics.h"
    27 // Constant for no extended interface exist in the implementation information.
    28 // This is used in externalisation of the object.
    29 const TInt KNoneExtendedInterface = -1;
    30 
    31 /**
    32 Intended Usage: This method determines the order of two extended interface.
    33 */
    34 static TInt CompareUid(const TUid& aUid1, const TUid& aUid2)
    35 	{
    36 	return CompareTUidValues(aUid1.iUid,aUid2.iUid);
    37 	}
    38 
    39 /** 
    40 Function for clean up RExtendedInterfaceArray when leave occurs
    41 */
    42 void CloseAndDeleteArray(TAny* aPtr)
    43 	{
    44 	if (aPtr!=NULL)
    45 		{
    46 		(static_cast<RExtendedInterfacesArray*>(aPtr))->Close();
    47 		delete aPtr;
    48 		}
    49 	}		
    50 // ___________________________________________________________________________
    51 //
    52 /**
    53 Intended Usage	:	Standardised two phase constructor which leaves the
    54 					CImplementationInformation pointer upon the cleanup stack.
    55 @leave  		KErrNoMemory
    56 @since			7.0
    57 @param			aClientSide a boolean indicating whether the streaming is to performed in client/server side
    58 @param			aStream The stream to internalize this object from
    59 @return			A pointer to a fully constructed CImplementationInformation
    60 @post			Object is fully constructed and initialised
    61 */
    62 CImplementationInformation* CImplementationInformation::NewLC(TBool aClientSide,RReadStream& aStream)
    63 	{
    64 	CImplementationInformation* self=new(ELeave) CImplementationInformation();
    65 	CleanupStack::PushL(self);
    66 	self->InternalizeL(aClientSide,aStream);
    67 	return self;
    68 	}
    69 
    70 
    71 /**
    72 Intended Usage	:	Standardised two phase construction which leaves nothing
    73 					on the cleanup stack.  
    74 @leave  		KErrNoMemory
    75 @since			7.0
    76 @param			aUid The unique Id of this implementation
    77 @param			aVersion The version number of this implementation
    78 @param			aName The display name of this implementation. This object takes ownership of aName.
    79 @param			aDataType The data type supported by this implementation. This object takes ownership of aDataType.
    80 @param			aOpaqueData Data for this implementation which is not used by the ECom framework.
    81 				This object takes ownership of aOpaqueData.
    82 @param			aDrive The drive that this implementation is on
    83 @param			aRomOnly The flag recording whether this implementation may be loaded from ROM only
    84 @param			aRomBased The flag recording whether this implementation is on ROM or is a later version of one on ROM
    85 @return			A pointer to a fully constructed CImplementationInformation
    86 @post			Object is fully constructed and initialised
    87 */
    88 CImplementationInformation* CImplementationInformation::NewL(TUid aUid, 
    89 															 TInt aVersion, 
    90 															 HBufC*  aName,
    91 															 HBufC8* aDataType,
    92 															 HBufC8* aOpaqueData,
    93 															 TDriveUnit aDrive,
    94 															 TBool aRomOnly,
    95 															 TBool aRomBased)
    96 
    97 	{
    98 	return new(ELeave) CImplementationInformation(aUid, 
    99 												  aVersion, 
   100 												  aName,
   101 												  aDataType,
   102 												  aOpaqueData,
   103 												  aDrive,
   104 												  aRomOnly,
   105 												  aRomBased);
   106 	}
   107 
   108 /**
   109 Standardised two phase construction which leaves nothing on the cleanup stack.  
   110 @leave  		KErrNoMemory
   111 @param			aUid The unique Id of this implementation
   112 @param			aVersion The version number of this implementation
   113 @param			aName The display name of this implementation. This object takes ownership of aName.
   114 @param			aDataType The data type supported by this implementation. This object takes ownership of aDataType.
   115 @param			aOpaqueData Data for this implementation which is not used by the ECom framework.
   116 				This object takes ownership of aOpaqueData.
   117 @param			aDrive The drive that this implementation is on
   118 @param			aRomOnly The flag recording whether this implementation may be loaded from ROM only
   119 @param			aRomBased The flag recording whether this implementation is on ROM or is a later version of one on ROM
   120 @param			aExtendedInterfaces The pointer to the array recording the extended interfaces supported by this implementation.
   121 				This object takes ownership of aExtendedInterfaces. NULL is available for PLUGIN without extended interfaces support.
   122 @return			A pointer to a fully constructed CImplementationInformation
   123 @post			Object is fully constructed and initialised
   124 */	
   125 CImplementationInformation* CImplementationInformation::NewL(TUid aUid, 
   126 															 TInt aVersion, 
   127 															 HBufC*  aName,
   128 															 HBufC8* aDataType,
   129 															 HBufC8* aOpaqueData,
   130 															 TDriveUnit aDrive,
   131 															 TBool aRomOnly,
   132 															 TBool aRomBased,
   133 															 RExtendedInterfacesArray* aExtendedInterfaces)
   134 
   135 	{
   136 	return new(ELeave) CImplementationInformation(aUid, 
   137 												  aVersion, 
   138 												  aName,
   139 												  aDataType,
   140 												  aOpaqueData,
   141 												  aDrive,
   142 												  aRomOnly,
   143 												  aRomBased,
   144 												  aExtendedInterfaces);
   145 	}	
   146 	
   147 /**
   148 Intended Usage	: D'tor	
   149 @since			7.0
   150 @pre 			CImplementationInformation is fully constructed.
   151 @post			CImplementationInformation is completely destroyed.
   152 */
   153 CImplementationInformation::~CImplementationInformation()
   154 	{
   155 	// d'tor 
   156 	if (iDisplayName!=NULL)
   157 		{
   158 		delete iDisplayName;
   159 		}
   160 	if (iData!=NULL)
   161 		{
   162 		delete iData;
   163 		}
   164 	if (iOpaqueData!=NULL)
   165 		{
   166 		delete iOpaqueData;
   167 		}
   168 	if (iExtendedInterfaceList!=NULL)
   169 		{
   170 		iExtendedInterfaceList->Close();
   171 		delete iExtendedInterfaceList;
   172 		}
   173 	}
   174 
   175 /**
   176 Intended Usage	: Default c'tor
   177 @since			7.0
   178 @pre 			None
   179 @post			CImplementationInformation is fully constructed.
   180 */
   181 CImplementationInformation::CImplementationInformation() : CBase()
   182 	{
   183 	// Do nothing here
   184 	}
   185 
   186 /**
   187 Intended Usage	:	Constructor with parameters.  This object takes ownership of
   188 					aName, aDataType and aOpaqueData.
   189 @param			aUid The unique Id of this implementation
   190 @param			aVersion The version number of this implementation
   191 @param			aName The display name of this implementation
   192 @param			aDataType The data type supported by this implementation
   193 @param			aOpaqueData Data for this implementation which is not used by the ECom framework
   194 @param			aDrive The drive which this implementation is on
   195 @param			aRomOnly The flag recording whether this implementation may be loaded from ROM only
   196 @param			aRomBased The flag recording whether this implementation is on ROM or is a later version of one on ROM
   197 @since			7.0
   198 @pre 			None
   199 @post			CImplementationInformation is fully constructed.
   200 */
   201 CImplementationInformation::CImplementationInformation(TUid aUid, 
   202 													   TInt aVersion, 
   203 													   HBufC*  aName,
   204 													   HBufC8* aDataType,
   205 													   HBufC8* aOpaqueData,
   206 													   TDriveUnit aDrive,
   207 													   TBool aRomOnly,
   208 													   TBool aRomBased)
   209 : CBase(),
   210 iImplementationUid(aUid),
   211 iVersion(aVersion),
   212 iDisplayName(aName),
   213 iData(aDataType),
   214 iOpaqueData(aOpaqueData),
   215 iDrive(aDrive),
   216 iRomOnly(aRomOnly),
   217 iRomBased(aRomBased)
   218 	{
   219 	// Do nothing here
   220 	}
   221 
   222 /**
   223 Constructor with parameters.  This object takes ownership of aName, aDataType, aOpaqueData and aExtendedInterfaces.
   224 @param			aUid The unique Id of this implementation
   225 @param			aVersion The version number of this implementation
   226 @param			aName The display name of this implementation
   227 @param			aDataType The data type supported by this implementation
   228 @param			aOpaqueData Data for this implementation which is not used by the ECom framework
   229 @param			aDrive The drive which this implementation is on
   230 @param			aRomOnly The flag recording whether this implementation may be loaded from ROM only
   231 @param			aRomBased The flag recording whether this implementation is on ROM or is a later version of one on ROM
   232 @param			aExtendedInterfaces The array recording the extended interfaces supported by this implementation.
   233 				NULL is available for PLUGIN without extended interfaces support.
   234 @pre 			None
   235 @post			CImplementationInformation is fully constructed.
   236 */
   237 CImplementationInformation::CImplementationInformation(TUid aUid, 
   238 													   TInt aVersion, 
   239 													   HBufC*  aName,
   240 													   HBufC8* aDataType,
   241 													   HBufC8* aOpaqueData,
   242 													   TDriveUnit aDrive,
   243 													   TBool aRomOnly,
   244 													   TBool aRomBased,
   245 													   RExtendedInterfacesArray* aExtendedInterfaces)
   246 : CBase(),
   247 iImplementationUid(aUid),
   248 iVersion(aVersion),
   249 iDisplayName(aName),
   250 iData(aDataType),
   251 iOpaqueData(aOpaqueData),
   252 iDrive(aDrive),
   253 iRomOnly(aRomOnly),
   254 iRomBased(aRomBased),
   255 iExtendedInterfaceList(aExtendedInterfaces)
   256 	{
   257 	// Do nothing here
   258 	}
   259 /**
   260 Intended Usage	: Stream out the internal state to aStream.	
   261 
   262 Error Condition	: Leave with the error code.
   263 @leave  		KErrNoMemory.
   264 @leave  		@see RWriteStream.
   265 @since			7.0
   266 @param			aClientSide a boolean indicating whether the streaming is to performed in client/server side
   267 @param			aStream The stream to store the data in.
   268 @pre 			CImplementationInformation is fully constructed and initialized
   269 */
   270 void CImplementationInformation::ExternalizeL(TBool aClientSide,RWriteStream& aStream) const
   271 	{
   272 	aStream.WriteInt32L(iImplementationUid.iUid);
   273 	aStream.WriteInt32L(iVersion);
   274 	if(iDisplayName)
   275 		{
   276 		TPtr outputBuf = iDisplayName->Des();
   277 		aStream.WriteInt32L(outputBuf.Length());
   278 		aStream.WriteL(outputBuf);
   279 		}
   280 	else
   281 		{
   282 		aStream.WriteInt32L(0);
   283 		}
   284 
   285 	if(iData)
   286 		{
   287 		TPtr8 outputBuf = iData->Des();
   288 		aStream.WriteInt32L(outputBuf.Length());
   289 		aStream.WriteL(outputBuf);
   290 		}
   291 	else
   292 		{
   293 		aStream.WriteInt32L(0);
   294 		}
   295 
   296 	if(iOpaqueData)
   297 		{
   298 		TPtr8 outputBuf = iOpaqueData->Des();
   299 		aStream.WriteInt32L(outputBuf.Length());
   300 		aStream.WriteL(outputBuf);
   301 		}
   302 	else
   303 		{
   304 		aStream.WriteInt32L(0);
   305 		}
   306 	if (aClientSide)
   307 		{
   308 		aStream.WriteInt32L(iDrive);		
   309 		aStream.WriteInt32L(iVid.iId);		
   310 		}
   311 	TInt additionalImplInfo=iRomOnly;
   312 	additionalImplInfo|=iRomBased<<1;
   313 	additionalImplInfo|=iDisabled<<2;
   314 	aStream.WriteInt8L(additionalImplInfo);
   315 	
   316 	if (iExtendedInterfaceList != NULL)
   317 		{
   318 		TInt count = iExtendedInterfaceList->Count();
   319 		aStream.WriteInt32L(count);
   320 		for(TInt i = 0; i < count; ++i)
   321 			{
   322 	   		aStream.WriteInt32L((*iExtendedInterfaceList)[i].iUid);
   323 			}
   324 		}
   325 	else
   326 		{
   327 		aStream.WriteInt32L(KNoneExtendedInterface);
   328 		}
   329 	}
   330 	
   331 
   332 
   333 /**
   334 Intended Usage	: Restore the internal state from aStream.	
   335 
   336 Error Condition	: Leave with the error code.
   337 @leave  		KErrNoMemory.
   338 @leave  		@see RReadStream.
   339 @since			7.0
   340 @param			aClientSide a boolean indicating whether the streaming is to performed in client/server side
   341 @param			aStream The stream to read the data from.
   342 @pre 			CImplementationInformation is fully constructed.
   343 @post			CImplementationInformation is restored to the state specified by
   344 				the contents of aStream.
   345 */
   346 void CImplementationInformation::InternalizeL(TBool aClientSide,RReadStream& aStream)
   347 	{
   348 	delete iDisplayName;
   349 	iDisplayName = NULL;
   350 	delete iData;
   351 	iData = NULL;
   352 	delete iOpaqueData;
   353 	iOpaqueData = NULL;
   354 
   355 	iImplementationUid.iUid = aStream.ReadInt32L();
   356 	iVersion = aStream.ReadInt32L();
   357 	TInt inputLength = aStream.ReadInt32L();
   358 	if(inputLength > 0)
   359   		{
   360   		// read in the iName string
   361   		iDisplayName = HBufC::NewL(inputLength);
   362   		TPtr inputBuf = iDisplayName->Des();
   363   		aStream.ReadL(inputBuf,inputLength);
   364   		}
   365   	inputLength = aStream.ReadInt32L();
   366 	if(inputLength > 0) 
   367   		{
   368   		// read in the iData string
   369   		iData = HBufC8::NewL(inputLength);
   370   		TPtr8 inputBuf = iData->Des();
   371   		aStream.ReadL(inputBuf,inputLength);
   372   		}
   373 	inputLength = aStream.ReadInt32L();
   374 	if(inputLength > 0)
   375   		{
   376   		// read in the iOpaqueData string
   377   		iOpaqueData = HBufC8::NewL(inputLength);
   378  		TPtr8 inputBuf = iOpaqueData->Des();
   379   		aStream.ReadL(inputBuf,inputLength);
   380   		}
   381 	if (aClientSide)
   382 		{
   383 		TUint checkDrive = aStream.ReadInt32L();
   384 		if (checkDrive > (TUint) KMaxDrives)
   385 			User::Leave(KErrCorrupt);
   386 		iDrive = checkDrive;	
   387 		iVid.iId = aStream.ReadInt32L();		
   388 		}
   389 	TInt8 additionalImplInfo=aStream.ReadInt8L();
   390 	iRomOnly=additionalImplInfo&1;
   391 	iRomBased=(additionalImplInfo&2)>>1;
   392 	iDisabled=(additionalImplInfo&4)>>2;
   393 	TInt count = aStream.ReadInt32L();
   394 	if (count != KNoneExtendedInterface)
   395 		{
   396 		for(TInt i = 0; i < count; i++)
   397 	   		{
   398 	   		AddExtendedInterfaceL(TUid::Uid(aStream.ReadInt32L()));
   399 			}
   400 		}
   401 	}
   402 
   403 /**
   404 Intended Usage	: Set whether this implementation is on ROM or is
   405 				  a later version of one on ROM
   406 @pre 			CImplementationInformation is fully constructed
   407 */
   408 void CImplementationInformation::SetRomBased(TBool aRomBased)
   409 	{
   410 	iRomBased = aRomBased;
   411 	}
   412 
   413 void CImplementationInformation::SetDrive(TDriveUnit aDrive)
   414 	{
   415 	iDrive=aDrive;
   416 	}
   417 
   418 /**
   419 Intended Usage	: Add extended interface to list of extended interfaces
   420 @pre 			CImplementationInformation is fully constructed
   421 */
   422 void CImplementationInformation::AddExtendedInterfaceL(const TUid& aExtendedInterface)
   423 	{
   424 	// Allocates extended interfaces list in case it is NULL
   425 	if (iExtendedInterfaceList == NULL)
   426 		{
   427 		iExtendedInterfaceList = new(ELeave) RExtendedInterfacesArray(KExtendedInterfaceGranularity);
   428 		}
   429 
   430 	// Ensure no duplicate extended interface is added.
   431 	// if there is duplicate extended interface, ignore this extended interface and panic in debug mode.
   432 	TLinearOrder<TUid> uidComparator(CompareUid);		
   433 	TInt error = iExtendedInterfaceList->InsertInOrder(aExtendedInterface,uidComparator);
   434 	if (error == KErrAlreadyExists)
   435 		{
   436         __ECOM_TRACE1("ECOM: PANIC in CImplementationInformation::AddExtendedInterfaceL(), duplicate extended interface %x", aExtendedInterface.iUid);
   437 		__ASSERT_DEBUG(EFalse, User::Panic(KEComServerPanicCategory,EEComPanic_CImlpementationInfromation_DuplicateExIf));		
   438 		}
   439 	else
   440 		{
   441 		User::LeaveIfError(error);
   442 		}
   443 	}	
   444 /**
   445 Intended Usage	: Get extended interface list.
   446 @pre 			CImplementationInformation is fully constructed
   447 */
   448 RExtendedInterfacesArray* CImplementationInformation::GetExtendedInterfaceList()
   449 	{
   450 	return iExtendedInterfaceList;
   451 	}
   452 
   453 
   454 /**
   455 Intended Usage	: Get extended interface list.
   456 @pre 	CImplementationInformation is fully constructed
   457 @param 	aList The array of the extended interfaces which are supported by this implementation.  
   458 @publishedPartner
   459 @released
   460 */
   461 EXPORT_C void CImplementationInformation::GetExtendedInterfaceListL(RExtendedInterfacesArray& aList)
   462 	{
   463 	aList.Reset();
   464 	if (iExtendedInterfaceList != NULL)
   465 		{
   466 		for (TInt i = 0;i < iExtendedInterfaceList->Count(); i++)
   467 			{
   468 			aList.AppendL((*iExtendedInterfaceList)[i]);		
   469 			}
   470 		}
   471 	}