os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/ImplementationInformation.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/ImplementationInformation.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,471 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// This file contains the implementation of
1.18 +// the CImplementationInformation class.
1.19 +//
1.20 +//
1.21 +
1.22 +#include <ecom/ecom.h>
1.23 +#include <ecom/ecomerrorcodes.h>
1.24 +#include <ecom/ecomresolverparams.h>
1.25 +#include <ecom/implementationinformation.h>
1.26 +#include "RegistryData.h"
1.27 +#include "ParseImplementationData.h"
1.28 +#include "EComDebug.h"
1.29 +#include "ecompanics.h"
1.30 +// Constant for no extended interface exist in the implementation information.
1.31 +// This is used in externalisation of the object.
1.32 +const TInt KNoneExtendedInterface = -1;
1.33 +
1.34 +/**
1.35 +Intended Usage: This method determines the order of two extended interface.
1.36 +*/
1.37 +static TInt CompareUid(const TUid& aUid1, const TUid& aUid2)
1.38 + {
1.39 + return CompareTUidValues(aUid1.iUid,aUid2.iUid);
1.40 + }
1.41 +
1.42 +/**
1.43 +Function for clean up RExtendedInterfaceArray when leave occurs
1.44 +*/
1.45 +void CloseAndDeleteArray(TAny* aPtr)
1.46 + {
1.47 + if (aPtr!=NULL)
1.48 + {
1.49 + (static_cast<RExtendedInterfacesArray*>(aPtr))->Close();
1.50 + delete aPtr;
1.51 + }
1.52 + }
1.53 +// ___________________________________________________________________________
1.54 +//
1.55 +/**
1.56 +Intended Usage : Standardised two phase constructor which leaves the
1.57 + CImplementationInformation pointer upon the cleanup stack.
1.58 +@leave KErrNoMemory
1.59 +@since 7.0
1.60 +@param aClientSide a boolean indicating whether the streaming is to performed in client/server side
1.61 +@param aStream The stream to internalize this object from
1.62 +@return A pointer to a fully constructed CImplementationInformation
1.63 +@post Object is fully constructed and initialised
1.64 +*/
1.65 +CImplementationInformation* CImplementationInformation::NewLC(TBool aClientSide,RReadStream& aStream)
1.66 + {
1.67 + CImplementationInformation* self=new(ELeave) CImplementationInformation();
1.68 + CleanupStack::PushL(self);
1.69 + self->InternalizeL(aClientSide,aStream);
1.70 + return self;
1.71 + }
1.72 +
1.73 +
1.74 +/**
1.75 +Intended Usage : Standardised two phase construction which leaves nothing
1.76 + on the cleanup stack.
1.77 +@leave KErrNoMemory
1.78 +@since 7.0
1.79 +@param aUid The unique Id of this implementation
1.80 +@param aVersion The version number of this implementation
1.81 +@param aName The display name of this implementation. This object takes ownership of aName.
1.82 +@param aDataType The data type supported by this implementation. This object takes ownership of aDataType.
1.83 +@param aOpaqueData Data for this implementation which is not used by the ECom framework.
1.84 + This object takes ownership of aOpaqueData.
1.85 +@param aDrive The drive that this implementation is on
1.86 +@param aRomOnly The flag recording whether this implementation may be loaded from ROM only
1.87 +@param aRomBased The flag recording whether this implementation is on ROM or is a later version of one on ROM
1.88 +@return A pointer to a fully constructed CImplementationInformation
1.89 +@post Object is fully constructed and initialised
1.90 +*/
1.91 +CImplementationInformation* CImplementationInformation::NewL(TUid aUid,
1.92 + TInt aVersion,
1.93 + HBufC* aName,
1.94 + HBufC8* aDataType,
1.95 + HBufC8* aOpaqueData,
1.96 + TDriveUnit aDrive,
1.97 + TBool aRomOnly,
1.98 + TBool aRomBased)
1.99 +
1.100 + {
1.101 + return new(ELeave) CImplementationInformation(aUid,
1.102 + aVersion,
1.103 + aName,
1.104 + aDataType,
1.105 + aOpaqueData,
1.106 + aDrive,
1.107 + aRomOnly,
1.108 + aRomBased);
1.109 + }
1.110 +
1.111 +/**
1.112 +Standardised two phase construction which leaves nothing on the cleanup stack.
1.113 +@leave KErrNoMemory
1.114 +@param aUid The unique Id of this implementation
1.115 +@param aVersion The version number of this implementation
1.116 +@param aName The display name of this implementation. This object takes ownership of aName.
1.117 +@param aDataType The data type supported by this implementation. This object takes ownership of aDataType.
1.118 +@param aOpaqueData Data for this implementation which is not used by the ECom framework.
1.119 + This object takes ownership of aOpaqueData.
1.120 +@param aDrive The drive that this implementation is on
1.121 +@param aRomOnly The flag recording whether this implementation may be loaded from ROM only
1.122 +@param aRomBased The flag recording whether this implementation is on ROM or is a later version of one on ROM
1.123 +@param aExtendedInterfaces The pointer to the array recording the extended interfaces supported by this implementation.
1.124 + This object takes ownership of aExtendedInterfaces. NULL is available for PLUGIN without extended interfaces support.
1.125 +@return A pointer to a fully constructed CImplementationInformation
1.126 +@post Object is fully constructed and initialised
1.127 +*/
1.128 +CImplementationInformation* CImplementationInformation::NewL(TUid aUid,
1.129 + TInt aVersion,
1.130 + HBufC* aName,
1.131 + HBufC8* aDataType,
1.132 + HBufC8* aOpaqueData,
1.133 + TDriveUnit aDrive,
1.134 + TBool aRomOnly,
1.135 + TBool aRomBased,
1.136 + RExtendedInterfacesArray* aExtendedInterfaces)
1.137 +
1.138 + {
1.139 + return new(ELeave) CImplementationInformation(aUid,
1.140 + aVersion,
1.141 + aName,
1.142 + aDataType,
1.143 + aOpaqueData,
1.144 + aDrive,
1.145 + aRomOnly,
1.146 + aRomBased,
1.147 + aExtendedInterfaces);
1.148 + }
1.149 +
1.150 +/**
1.151 +Intended Usage : D'tor
1.152 +@since 7.0
1.153 +@pre CImplementationInformation is fully constructed.
1.154 +@post CImplementationInformation is completely destroyed.
1.155 +*/
1.156 +CImplementationInformation::~CImplementationInformation()
1.157 + {
1.158 + // d'tor
1.159 + if (iDisplayName!=NULL)
1.160 + {
1.161 + delete iDisplayName;
1.162 + }
1.163 + if (iData!=NULL)
1.164 + {
1.165 + delete iData;
1.166 + }
1.167 + if (iOpaqueData!=NULL)
1.168 + {
1.169 + delete iOpaqueData;
1.170 + }
1.171 + if (iExtendedInterfaceList!=NULL)
1.172 + {
1.173 + iExtendedInterfaceList->Close();
1.174 + delete iExtendedInterfaceList;
1.175 + }
1.176 + }
1.177 +
1.178 +/**
1.179 +Intended Usage : Default c'tor
1.180 +@since 7.0
1.181 +@pre None
1.182 +@post CImplementationInformation is fully constructed.
1.183 +*/
1.184 +CImplementationInformation::CImplementationInformation() : CBase()
1.185 + {
1.186 + // Do nothing here
1.187 + }
1.188 +
1.189 +/**
1.190 +Intended Usage : Constructor with parameters. This object takes ownership of
1.191 + aName, aDataType and aOpaqueData.
1.192 +@param aUid The unique Id of this implementation
1.193 +@param aVersion The version number of this implementation
1.194 +@param aName The display name of this implementation
1.195 +@param aDataType The data type supported by this implementation
1.196 +@param aOpaqueData Data for this implementation which is not used by the ECom framework
1.197 +@param aDrive The drive which this implementation is on
1.198 +@param aRomOnly The flag recording whether this implementation may be loaded from ROM only
1.199 +@param aRomBased The flag recording whether this implementation is on ROM or is a later version of one on ROM
1.200 +@since 7.0
1.201 +@pre None
1.202 +@post CImplementationInformation is fully constructed.
1.203 +*/
1.204 +CImplementationInformation::CImplementationInformation(TUid aUid,
1.205 + TInt aVersion,
1.206 + HBufC* aName,
1.207 + HBufC8* aDataType,
1.208 + HBufC8* aOpaqueData,
1.209 + TDriveUnit aDrive,
1.210 + TBool aRomOnly,
1.211 + TBool aRomBased)
1.212 +: CBase(),
1.213 +iImplementationUid(aUid),
1.214 +iVersion(aVersion),
1.215 +iDisplayName(aName),
1.216 +iData(aDataType),
1.217 +iOpaqueData(aOpaqueData),
1.218 +iDrive(aDrive),
1.219 +iRomOnly(aRomOnly),
1.220 +iRomBased(aRomBased)
1.221 + {
1.222 + // Do nothing here
1.223 + }
1.224 +
1.225 +/**
1.226 +Constructor with parameters. This object takes ownership of aName, aDataType, aOpaqueData and aExtendedInterfaces.
1.227 +@param aUid The unique Id of this implementation
1.228 +@param aVersion The version number of this implementation
1.229 +@param aName The display name of this implementation
1.230 +@param aDataType The data type supported by this implementation
1.231 +@param aOpaqueData Data for this implementation which is not used by the ECom framework
1.232 +@param aDrive The drive which this implementation is on
1.233 +@param aRomOnly The flag recording whether this implementation may be loaded from ROM only
1.234 +@param aRomBased The flag recording whether this implementation is on ROM or is a later version of one on ROM
1.235 +@param aExtendedInterfaces The array recording the extended interfaces supported by this implementation.
1.236 + NULL is available for PLUGIN without extended interfaces support.
1.237 +@pre None
1.238 +@post CImplementationInformation is fully constructed.
1.239 +*/
1.240 +CImplementationInformation::CImplementationInformation(TUid aUid,
1.241 + TInt aVersion,
1.242 + HBufC* aName,
1.243 + HBufC8* aDataType,
1.244 + HBufC8* aOpaqueData,
1.245 + TDriveUnit aDrive,
1.246 + TBool aRomOnly,
1.247 + TBool aRomBased,
1.248 + RExtendedInterfacesArray* aExtendedInterfaces)
1.249 +: CBase(),
1.250 +iImplementationUid(aUid),
1.251 +iVersion(aVersion),
1.252 +iDisplayName(aName),
1.253 +iData(aDataType),
1.254 +iOpaqueData(aOpaqueData),
1.255 +iDrive(aDrive),
1.256 +iRomOnly(aRomOnly),
1.257 +iRomBased(aRomBased),
1.258 +iExtendedInterfaceList(aExtendedInterfaces)
1.259 + {
1.260 + // Do nothing here
1.261 + }
1.262 +/**
1.263 +Intended Usage : Stream out the internal state to aStream.
1.264 +
1.265 +Error Condition : Leave with the error code.
1.266 +@leave KErrNoMemory.
1.267 +@leave @see RWriteStream.
1.268 +@since 7.0
1.269 +@param aClientSide a boolean indicating whether the streaming is to performed in client/server side
1.270 +@param aStream The stream to store the data in.
1.271 +@pre CImplementationInformation is fully constructed and initialized
1.272 +*/
1.273 +void CImplementationInformation::ExternalizeL(TBool aClientSide,RWriteStream& aStream) const
1.274 + {
1.275 + aStream.WriteInt32L(iImplementationUid.iUid);
1.276 + aStream.WriteInt32L(iVersion);
1.277 + if(iDisplayName)
1.278 + {
1.279 + TPtr outputBuf = iDisplayName->Des();
1.280 + aStream.WriteInt32L(outputBuf.Length());
1.281 + aStream.WriteL(outputBuf);
1.282 + }
1.283 + else
1.284 + {
1.285 + aStream.WriteInt32L(0);
1.286 + }
1.287 +
1.288 + if(iData)
1.289 + {
1.290 + TPtr8 outputBuf = iData->Des();
1.291 + aStream.WriteInt32L(outputBuf.Length());
1.292 + aStream.WriteL(outputBuf);
1.293 + }
1.294 + else
1.295 + {
1.296 + aStream.WriteInt32L(0);
1.297 + }
1.298 +
1.299 + if(iOpaqueData)
1.300 + {
1.301 + TPtr8 outputBuf = iOpaqueData->Des();
1.302 + aStream.WriteInt32L(outputBuf.Length());
1.303 + aStream.WriteL(outputBuf);
1.304 + }
1.305 + else
1.306 + {
1.307 + aStream.WriteInt32L(0);
1.308 + }
1.309 + if (aClientSide)
1.310 + {
1.311 + aStream.WriteInt32L(iDrive);
1.312 + aStream.WriteInt32L(iVid.iId);
1.313 + }
1.314 + TInt additionalImplInfo=iRomOnly;
1.315 + additionalImplInfo|=iRomBased<<1;
1.316 + additionalImplInfo|=iDisabled<<2;
1.317 + aStream.WriteInt8L(additionalImplInfo);
1.318 +
1.319 + if (iExtendedInterfaceList != NULL)
1.320 + {
1.321 + TInt count = iExtendedInterfaceList->Count();
1.322 + aStream.WriteInt32L(count);
1.323 + for(TInt i = 0; i < count; ++i)
1.324 + {
1.325 + aStream.WriteInt32L((*iExtendedInterfaceList)[i].iUid);
1.326 + }
1.327 + }
1.328 + else
1.329 + {
1.330 + aStream.WriteInt32L(KNoneExtendedInterface);
1.331 + }
1.332 + }
1.333 +
1.334 +
1.335 +
1.336 +/**
1.337 +Intended Usage : Restore the internal state from aStream.
1.338 +
1.339 +Error Condition : Leave with the error code.
1.340 +@leave KErrNoMemory.
1.341 +@leave @see RReadStream.
1.342 +@since 7.0
1.343 +@param aClientSide a boolean indicating whether the streaming is to performed in client/server side
1.344 +@param aStream The stream to read the data from.
1.345 +@pre CImplementationInformation is fully constructed.
1.346 +@post CImplementationInformation is restored to the state specified by
1.347 + the contents of aStream.
1.348 +*/
1.349 +void CImplementationInformation::InternalizeL(TBool aClientSide,RReadStream& aStream)
1.350 + {
1.351 + delete iDisplayName;
1.352 + iDisplayName = NULL;
1.353 + delete iData;
1.354 + iData = NULL;
1.355 + delete iOpaqueData;
1.356 + iOpaqueData = NULL;
1.357 +
1.358 + iImplementationUid.iUid = aStream.ReadInt32L();
1.359 + iVersion = aStream.ReadInt32L();
1.360 + TInt inputLength = aStream.ReadInt32L();
1.361 + if(inputLength > 0)
1.362 + {
1.363 + // read in the iName string
1.364 + iDisplayName = HBufC::NewL(inputLength);
1.365 + TPtr inputBuf = iDisplayName->Des();
1.366 + aStream.ReadL(inputBuf,inputLength);
1.367 + }
1.368 + inputLength = aStream.ReadInt32L();
1.369 + if(inputLength > 0)
1.370 + {
1.371 + // read in the iData string
1.372 + iData = HBufC8::NewL(inputLength);
1.373 + TPtr8 inputBuf = iData->Des();
1.374 + aStream.ReadL(inputBuf,inputLength);
1.375 + }
1.376 + inputLength = aStream.ReadInt32L();
1.377 + if(inputLength > 0)
1.378 + {
1.379 + // read in the iOpaqueData string
1.380 + iOpaqueData = HBufC8::NewL(inputLength);
1.381 + TPtr8 inputBuf = iOpaqueData->Des();
1.382 + aStream.ReadL(inputBuf,inputLength);
1.383 + }
1.384 + if (aClientSide)
1.385 + {
1.386 + TUint checkDrive = aStream.ReadInt32L();
1.387 + if (checkDrive > (TUint) KMaxDrives)
1.388 + User::Leave(KErrCorrupt);
1.389 + iDrive = checkDrive;
1.390 + iVid.iId = aStream.ReadInt32L();
1.391 + }
1.392 + TInt8 additionalImplInfo=aStream.ReadInt8L();
1.393 + iRomOnly=additionalImplInfo&1;
1.394 + iRomBased=(additionalImplInfo&2)>>1;
1.395 + iDisabled=(additionalImplInfo&4)>>2;
1.396 + TInt count = aStream.ReadInt32L();
1.397 + if (count != KNoneExtendedInterface)
1.398 + {
1.399 + for(TInt i = 0; i < count; i++)
1.400 + {
1.401 + AddExtendedInterfaceL(TUid::Uid(aStream.ReadInt32L()));
1.402 + }
1.403 + }
1.404 + }
1.405 +
1.406 +/**
1.407 +Intended Usage : Set whether this implementation is on ROM or is
1.408 + a later version of one on ROM
1.409 +@pre CImplementationInformation is fully constructed
1.410 +*/
1.411 +void CImplementationInformation::SetRomBased(TBool aRomBased)
1.412 + {
1.413 + iRomBased = aRomBased;
1.414 + }
1.415 +
1.416 +void CImplementationInformation::SetDrive(TDriveUnit aDrive)
1.417 + {
1.418 + iDrive=aDrive;
1.419 + }
1.420 +
1.421 +/**
1.422 +Intended Usage : Add extended interface to list of extended interfaces
1.423 +@pre CImplementationInformation is fully constructed
1.424 +*/
1.425 +void CImplementationInformation::AddExtendedInterfaceL(const TUid& aExtendedInterface)
1.426 + {
1.427 + // Allocates extended interfaces list in case it is NULL
1.428 + if (iExtendedInterfaceList == NULL)
1.429 + {
1.430 + iExtendedInterfaceList = new(ELeave) RExtendedInterfacesArray(KExtendedInterfaceGranularity);
1.431 + }
1.432 +
1.433 + // Ensure no duplicate extended interface is added.
1.434 + // if there is duplicate extended interface, ignore this extended interface and panic in debug mode.
1.435 + TLinearOrder<TUid> uidComparator(CompareUid);
1.436 + TInt error = iExtendedInterfaceList->InsertInOrder(aExtendedInterface,uidComparator);
1.437 + if (error == KErrAlreadyExists)
1.438 + {
1.439 + __ECOM_TRACE1("ECOM: PANIC in CImplementationInformation::AddExtendedInterfaceL(), duplicate extended interface %x", aExtendedInterface.iUid);
1.440 + __ASSERT_DEBUG(EFalse, User::Panic(KEComServerPanicCategory,EEComPanic_CImlpementationInfromation_DuplicateExIf));
1.441 + }
1.442 + else
1.443 + {
1.444 + User::LeaveIfError(error);
1.445 + }
1.446 + }
1.447 +/**
1.448 +Intended Usage : Get extended interface list.
1.449 +@pre CImplementationInformation is fully constructed
1.450 +*/
1.451 +RExtendedInterfacesArray* CImplementationInformation::GetExtendedInterfaceList()
1.452 + {
1.453 + return iExtendedInterfaceList;
1.454 + }
1.455 +
1.456 +
1.457 +/**
1.458 +Intended Usage : Get extended interface list.
1.459 +@pre CImplementationInformation is fully constructed
1.460 +@param aList The array of the extended interfaces which are supported by this implementation.
1.461 +@publishedPartner
1.462 +@released
1.463 +*/
1.464 +EXPORT_C void CImplementationInformation::GetExtendedInterfaceListL(RExtendedInterfacesArray& aList)
1.465 + {
1.466 + aList.Reset();
1.467 + if (iExtendedInterfaceList != NULL)
1.468 + {
1.469 + for (TInt i = 0;i < iExtendedInterfaceList->Count(); i++)
1.470 + {
1.471 + aList.AppendL((*iExtendedInterfaceList)[i]);
1.472 + }
1.473 + }
1.474 + }