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