os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/ImplementationInformation.cpp
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This file contains the implementation of
15 // the CImplementationInformation class.
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;
32 Intended Usage: This method determines the order of two extended interface.
34 static TInt CompareUid(const TUid& aUid1, const TUid& aUid2)
36 return CompareTUidValues(aUid1.iUid,aUid2.iUid);
40 Function for clean up RExtendedInterfaceArray when leave occurs
42 void CloseAndDeleteArray(TAny* aPtr)
46 (static_cast<RExtendedInterfacesArray*>(aPtr))->Close();
50 // ___________________________________________________________________________
53 Intended Usage : Standardised two phase constructor which leaves the
54 CImplementationInformation pointer upon the cleanup stack.
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
62 CImplementationInformation* CImplementationInformation::NewLC(TBool aClientSide,RReadStream& aStream)
64 CImplementationInformation* self=new(ELeave) CImplementationInformation();
65 CleanupStack::PushL(self);
66 self->InternalizeL(aClientSide,aStream);
72 Intended Usage : Standardised two phase construction which leaves nothing
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
88 CImplementationInformation* CImplementationInformation::NewL(TUid aUid,
98 return new(ELeave) CImplementationInformation(aUid,
109 Standardised two phase construction which leaves nothing on the cleanup stack.
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
125 CImplementationInformation* CImplementationInformation::NewL(TUid aUid,
133 RExtendedInterfacesArray* aExtendedInterfaces)
136 return new(ELeave) CImplementationInformation(aUid,
144 aExtendedInterfaces);
148 Intended Usage : D'tor
150 @pre CImplementationInformation is fully constructed.
151 @post CImplementationInformation is completely destroyed.
153 CImplementationInformation::~CImplementationInformation()
156 if (iDisplayName!=NULL)
164 if (iOpaqueData!=NULL)
168 if (iExtendedInterfaceList!=NULL)
170 iExtendedInterfaceList->Close();
171 delete iExtendedInterfaceList;
176 Intended Usage : Default c'tor
179 @post CImplementationInformation is fully constructed.
181 CImplementationInformation::CImplementationInformation() : CBase()
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
199 @post CImplementationInformation is fully constructed.
201 CImplementationInformation::CImplementationInformation(TUid aUid,
210 iImplementationUid(aUid),
214 iOpaqueData(aOpaqueData),
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.
235 @post CImplementationInformation is fully constructed.
237 CImplementationInformation::CImplementationInformation(TUid aUid,
245 RExtendedInterfacesArray* aExtendedInterfaces)
247 iImplementationUid(aUid),
251 iOpaqueData(aOpaqueData),
254 iRomBased(aRomBased),
255 iExtendedInterfaceList(aExtendedInterfaces)
260 Intended Usage : Stream out the internal state to aStream.
262 Error Condition : Leave with the error code.
264 @leave @see RWriteStream.
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
270 void CImplementationInformation::ExternalizeL(TBool aClientSide,RWriteStream& aStream) const
272 aStream.WriteInt32L(iImplementationUid.iUid);
273 aStream.WriteInt32L(iVersion);
276 TPtr outputBuf = iDisplayName->Des();
277 aStream.WriteInt32L(outputBuf.Length());
278 aStream.WriteL(outputBuf);
282 aStream.WriteInt32L(0);
287 TPtr8 outputBuf = iData->Des();
288 aStream.WriteInt32L(outputBuf.Length());
289 aStream.WriteL(outputBuf);
293 aStream.WriteInt32L(0);
298 TPtr8 outputBuf = iOpaqueData->Des();
299 aStream.WriteInt32L(outputBuf.Length());
300 aStream.WriteL(outputBuf);
304 aStream.WriteInt32L(0);
308 aStream.WriteInt32L(iDrive);
309 aStream.WriteInt32L(iVid.iId);
311 TInt additionalImplInfo=iRomOnly;
312 additionalImplInfo|=iRomBased<<1;
313 additionalImplInfo|=iDisabled<<2;
314 aStream.WriteInt8L(additionalImplInfo);
316 if (iExtendedInterfaceList != NULL)
318 TInt count = iExtendedInterfaceList->Count();
319 aStream.WriteInt32L(count);
320 for(TInt i = 0; i < count; ++i)
322 aStream.WriteInt32L((*iExtendedInterfaceList)[i].iUid);
327 aStream.WriteInt32L(KNoneExtendedInterface);
334 Intended Usage : Restore the internal state from aStream.
336 Error Condition : Leave with the error code.
338 @leave @see RReadStream.
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.
346 void CImplementationInformation::InternalizeL(TBool aClientSide,RReadStream& aStream)
355 iImplementationUid.iUid = aStream.ReadInt32L();
356 iVersion = aStream.ReadInt32L();
357 TInt inputLength = aStream.ReadInt32L();
360 // read in the iName string
361 iDisplayName = HBufC::NewL(inputLength);
362 TPtr inputBuf = iDisplayName->Des();
363 aStream.ReadL(inputBuf,inputLength);
365 inputLength = aStream.ReadInt32L();
368 // read in the iData string
369 iData = HBufC8::NewL(inputLength);
370 TPtr8 inputBuf = iData->Des();
371 aStream.ReadL(inputBuf,inputLength);
373 inputLength = aStream.ReadInt32L();
376 // read in the iOpaqueData string
377 iOpaqueData = HBufC8::NewL(inputLength);
378 TPtr8 inputBuf = iOpaqueData->Des();
379 aStream.ReadL(inputBuf,inputLength);
383 TUint checkDrive = aStream.ReadInt32L();
384 if (checkDrive > (TUint) KMaxDrives)
385 User::Leave(KErrCorrupt);
387 iVid.iId = aStream.ReadInt32L();
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)
396 for(TInt i = 0; i < count; i++)
398 AddExtendedInterfaceL(TUid::Uid(aStream.ReadInt32L()));
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
408 void CImplementationInformation::SetRomBased(TBool aRomBased)
410 iRomBased = aRomBased;
413 void CImplementationInformation::SetDrive(TDriveUnit aDrive)
419 Intended Usage : Add extended interface to list of extended interfaces
420 @pre CImplementationInformation is fully constructed
422 void CImplementationInformation::AddExtendedInterfaceL(const TUid& aExtendedInterface)
424 // Allocates extended interfaces list in case it is NULL
425 if (iExtendedInterfaceList == NULL)
427 iExtendedInterfaceList = new(ELeave) RExtendedInterfacesArray(KExtendedInterfaceGranularity);
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)
436 __ECOM_TRACE1("ECOM: PANIC in CImplementationInformation::AddExtendedInterfaceL(), duplicate extended interface %x", aExtendedInterface.iUid);
437 __ASSERT_DEBUG(EFalse, User::Panic(KEComServerPanicCategory,EEComPanic_CImlpementationInfromation_DuplicateExIf));
441 User::LeaveIfError(error);
445 Intended Usage : Get extended interface list.
446 @pre CImplementationInformation is fully constructed
448 RExtendedInterfacesArray* CImplementationInformation::GetExtendedInterfaceList()
450 return iExtendedInterfaceList;
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.
461 EXPORT_C void CImplementationInformation::GetExtendedInterfaceListL(RExtendedInterfacesArray& aList)
464 if (iExtendedInterfaceList != NULL)
466 for (TInt i = 0;i < iExtendedInterfaceList->Count(); i++)
468 aList.AppendL((*iExtendedInterfaceList)[i]);