sl@0
|
1 |
// Copyright (c) 2006-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 |
// Implementation for CEComCachedDriveInfo class
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@internalComponent
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <e32const.h>
|
sl@0
|
24 |
#include <f32file.h>
|
sl@0
|
25 |
#include <bsul/bsul.h>
|
sl@0
|
26 |
#include <ecom/ecomerrorcodes.h>
|
sl@0
|
27 |
#include "DriveInfo.h"
|
sl@0
|
28 |
#include "EComPatchDataConstantv2.h"
|
sl@0
|
29 |
#include "EComInternalErrorCodes.h"
|
sl@0
|
30 |
const TInt KInvalidIndex = -1;
|
sl@0
|
31 |
const TInt32 KInvalidDrvNumber = -1;
|
sl@0
|
32 |
|
sl@0
|
33 |
/** static member of CEComCachedDriveInfo */
|
sl@0
|
34 |
TFixedArray<TEComDrvFlags, KMaxDrives> CEComCachedDriveInfo::iDriveAttr;
|
sl@0
|
35 |
|
sl@0
|
36 |
/** static member of CEComCachedDriveInfo */
|
sl@0
|
37 |
TInt CEComCachedDriveInfo::iLastIndex = KInvalidIndex;
|
sl@0
|
38 |
|
sl@0
|
39 |
/** static member of CEComCachedDriveInfo */
|
sl@0
|
40 |
TBool CEComCachedDriveInfo::iInitialized = EFalse;
|
sl@0
|
41 |
|
sl@0
|
42 |
|
sl@0
|
43 |
/** Standard factory method to instantiate CEComCachedDriveInfo instances.
|
sl@0
|
44 |
*/
|
sl@0
|
45 |
CEComCachedDriveInfo* CEComCachedDriveInfo::NewL(RFs& aFs)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
CEComCachedDriveInfo* self = new (ELeave) CEComCachedDriveInfo;
|
sl@0
|
48 |
CleanupStack::PushL(self);
|
sl@0
|
49 |
self->ConstructL(aFs, KDiscoveryDisabledDriveList);
|
sl@0
|
50 |
CleanupStack::Pop(self);
|
sl@0
|
51 |
return self;
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
/** Constructor of CEComCachedDriveInfo. Nothing to do. */
|
sl@0
|
55 |
CEComCachedDriveInfo::CEComCachedDriveInfo()
|
sl@0
|
56 |
{
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
/** Standard two-phase construction to complete construction
|
sl@0
|
60 |
of CEComCachedDriveInfo.
|
sl@0
|
61 |
|
sl@0
|
62 |
@param aFs reference to a connected RFs session.
|
sl@0
|
63 |
@param aDiscoveryDisabledMask bits set indicate the drives contain no plug-ins
|
sl@0
|
64 |
and need not be scanned. There is a mechanism to allow licensees to
|
sl@0
|
65 |
specify this mask at ROM build time.
|
sl@0
|
66 |
@leave KErrNoMemory if out of memory, or any of the other system wide errors.
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
void CEComCachedDriveInfo::ConstructL(RFs& aFs, TUint32 aDiscoveryDisabledMask)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
if (iInitialized)
|
sl@0
|
71 |
{
|
sl@0
|
72 |
return;
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
iLastIndex = KInvalidIndex;
|
sl@0
|
76 |
|
sl@0
|
77 |
// Get list of installed drives. This info is not available from
|
sl@0
|
78 |
// BSUL::CCachedDriveInfo API's.
|
sl@0
|
79 |
TDriveList drvList;
|
sl@0
|
80 |
User::LeaveIfError( aFs.DriveList(drvList) );
|
sl@0
|
81 |
|
sl@0
|
82 |
BSUL::CCachedDriveInfo* cachedDrvInfo = BSUL::CCachedDriveInfo::NewL(aFs);
|
sl@0
|
83 |
CleanupStack::PushL(cachedDrvInfo);
|
sl@0
|
84 |
|
sl@0
|
85 |
// determine attributes of valid drives
|
sl@0
|
86 |
for (TInt i = EDriveA; i <= EDriveZ; i++)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
if (drvList[i])
|
sl@0
|
89 |
{
|
sl@0
|
90 |
// drive exist
|
sl@0
|
91 |
TInt j = ++iLastIndex;
|
sl@0
|
92 |
|
sl@0
|
93 |
iDriveAttr[j].iDrvNumber = i;
|
sl@0
|
94 |
|
sl@0
|
95 |
TDriveUnit drvUnit(i);
|
sl@0
|
96 |
if (cachedDrvInfo->IsReadOnlyInternalL(drvUnit))
|
sl@0
|
97 |
{
|
sl@0
|
98 |
iDriveAttr[j].iFlags = EEComDrvAttrReadOnlyInternal;
|
sl@0
|
99 |
// RO internal drive does not have any other attributes
|
sl@0
|
100 |
continue;
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
iDriveAttr[j].iFlags = 0;
|
sl@0
|
104 |
|
sl@0
|
105 |
// Check if drive is removable
|
sl@0
|
106 |
if (cachedDrvInfo->IsFlagSetOnDriveL(drvUnit, KDriveAttRemovable))
|
sl@0
|
107 |
{
|
sl@0
|
108 |
iDriveAttr[j].iFlags |= EEComDrvAttrRemovable;
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
// Check if drive is on ReadWrite drive
|
sl@0
|
112 |
if (! cachedDrvInfo->IsFlagSetOnDriveL(drvUnit, KDriveAttRom))
|
sl@0
|
113 |
{
|
sl@0
|
114 |
iDriveAttr[j].iFlags |= EEComDrvAttrWritable;
|
sl@0
|
115 |
}
|
sl@0
|
116 |
|
sl@0
|
117 |
TUint32 drvBitMask = 1;
|
sl@0
|
118 |
drvBitMask <<= i;
|
sl@0
|
119 |
// Three conditions for discovery disable: disabled by licensees,
|
sl@0
|
120 |
// remote drives and substituted drives
|
sl@0
|
121 |
if ( (drvBitMask & aDiscoveryDisabledMask) ||
|
sl@0
|
122 |
cachedDrvInfo->IsFlagSetOnDriveL(drvUnit, KDriveAttSubsted) ||
|
sl@0
|
123 |
cachedDrvInfo->IsFlagSetOnDriveL(drvUnit, KDriveAttRemote) )
|
sl@0
|
124 |
{
|
sl@0
|
125 |
iDriveAttr[j].iFlags |= EEComDrvAttrNoDiscovery;
|
sl@0
|
126 |
}
|
sl@0
|
127 |
} // if drvList[i]
|
sl@0
|
128 |
} // for
|
sl@0
|
129 |
|
sl@0
|
130 |
CleanupStack::PopAndDestroy(cachedDrvInfo);
|
sl@0
|
131 |
__ASSERT_DEBUG(iLastIndex >= 0, User::Invariant());
|
sl@0
|
132 |
|
sl@0
|
133 |
for (TInt i = iLastIndex + 1; i < KMaxDrives; i++)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
iDriveAttr[i].iDrvNumber = KInvalidDrvNumber;
|
sl@0
|
136 |
}
|
sl@0
|
137 |
|
sl@0
|
138 |
iInitialized = ETrue;
|
sl@0
|
139 |
}
|
sl@0
|
140 |
|
sl@0
|
141 |
/** Is EEComDrvAttrReadOnlyInternal attribute set on the given drive?
|
sl@0
|
142 |
@param aDrive the drive number
|
sl@0
|
143 |
@return ETrue if drive is RO internal. EFalse means either no such drive or
|
sl@0
|
144 |
not RO internal.
|
sl@0
|
145 |
@leave KEComErrDriveNotFound if aDrive is not supposed to be scanned,
|
sl@0
|
146 |
i.e. drive absent or disabled by licensees or subst or remote.
|
sl@0
|
147 |
Use TEComCachedDriveInfoIterator::SetPos instead if want to test drive
|
sl@0
|
148 |
attribute.
|
sl@0
|
149 |
*/
|
sl@0
|
150 |
TBool CEComCachedDriveInfo::DriveIsReadOnlyInternalL(const TInt aDrive) const
|
sl@0
|
151 |
{
|
sl@0
|
152 |
TEComCachedDriveInfoIterator iter(*this);
|
sl@0
|
153 |
|
sl@0
|
154 |
if (! iter.SetPos(aDrive))
|
sl@0
|
155 |
{
|
sl@0
|
156 |
// This method is intended to be used on drives that are known
|
sl@0
|
157 |
// to be valid, e.g. drive extracted from the path of a discovered
|
sl@0
|
158 |
// DLL.
|
sl@0
|
159 |
User::Leave(KEComErrDriveNotFound);
|
sl@0
|
160 |
}
|
sl@0
|
161 |
return iter.DriveIsReadOnlyInternal();
|
sl@0
|
162 |
}
|
sl@0
|
163 |
|
sl@0
|
164 |
/** Test if the EEComDrvAttrRemovable attribute for the given drive is set.
|
sl@0
|
165 |
@param aDrive the drive number
|
sl@0
|
166 |
@return ETrue if drive is removable. EFalse means either no such drive or
|
sl@0
|
167 |
not removable.
|
sl@0
|
168 |
@leave KEComErrDriveNotFound if aDrive is not supposed to be scanned,
|
sl@0
|
169 |
i.e. drive absent or disabled by licensees or subst or remote.
|
sl@0
|
170 |
Use TEComCachedDriveInfoIterator::SetPos instead if want to test drive
|
sl@0
|
171 |
is removable.
|
sl@0
|
172 |
*/
|
sl@0
|
173 |
TBool CEComCachedDriveInfo::DriveIsRemovableL(const TInt aDrive) const
|
sl@0
|
174 |
{
|
sl@0
|
175 |
TEComCachedDriveInfoIterator iter(*this);
|
sl@0
|
176 |
|
sl@0
|
177 |
if (! iter.SetPos(aDrive))
|
sl@0
|
178 |
{
|
sl@0
|
179 |
// This method is intended to be used on drives that are known
|
sl@0
|
180 |
// to be valid, e.g. drive extracted from the path of a discovered
|
sl@0
|
181 |
// DLL.
|
sl@0
|
182 |
User::Leave(KEComErrDriveNotFound);
|
sl@0
|
183 |
}
|
sl@0
|
184 |
return iter.DriveIsRemovable();
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
/** Test if the EEComDrvAttrWritable attribute for the given drive is set.
|
sl@0
|
188 |
@param aDrive the drive number
|
sl@0
|
189 |
@return ETrue if drive is writable. EFalse means either no such drive or
|
sl@0
|
190 |
drive not writable.
|
sl@0
|
191 |
@leave KEComErrDriveNotFound if aDrive is not supposed to be scanned,
|
sl@0
|
192 |
i.e. drive absent or disabled by licensees or subst or remote.
|
sl@0
|
193 |
Use TEComCachedDriveInfoIterator::SetPos instead if want to test drive
|
sl@0
|
194 |
is removable.
|
sl@0
|
195 |
*/
|
sl@0
|
196 |
TBool CEComCachedDriveInfo::DriveIsWritableL(const TInt aDrive) const
|
sl@0
|
197 |
{
|
sl@0
|
198 |
TEComCachedDriveInfoIterator iter(*this);
|
sl@0
|
199 |
|
sl@0
|
200 |
if (! iter.SetPos(aDrive))
|
sl@0
|
201 |
{
|
sl@0
|
202 |
// This method is intended to be used on drives that are known
|
sl@0
|
203 |
// to be valid, e.g. drive extracted from the path of a discovered
|
sl@0
|
204 |
// DLL.
|
sl@0
|
205 |
User::Leave(KEComErrDriveNotFound);
|
sl@0
|
206 |
}
|
sl@0
|
207 |
return iter.DriveIsWritable();
|
sl@0
|
208 |
}
|
sl@0
|
209 |
|
sl@0
|
210 |
// Implementation for TEComCachedDriveInfoIterator class
|
sl@0
|
211 |
|
sl@0
|
212 |
/** TEComCachedDriveInfoIterator Constructor
|
sl@0
|
213 |
Note that the object is not yet in valid state. User must first call
|
sl@0
|
214 |
First() or Last().
|
sl@0
|
215 |
*/
|
sl@0
|
216 |
TEComCachedDriveInfoIterator::TEComCachedDriveInfoIterator(const CEComCachedDriveInfo& aCachedDriveInfo)
|
sl@0
|
217 |
: iDriveAttr(aCachedDriveInfo.iDriveAttr)
|
sl@0
|
218 |
{
|
sl@0
|
219 |
iIndex = KInvalidIndex;
|
sl@0
|
220 |
}
|
sl@0
|
221 |
|
sl@0
|
222 |
/** Check if the drive is enabled for scanning and move index there if true.
|
sl@0
|
223 |
@param aDrive the drive number of the drive to check.
|
sl@0
|
224 |
@return ETrue the drive is enabled for scanning. Index is moved to that location.
|
sl@0
|
225 |
If drive not to be scanned, index is moved out of bound.
|
sl@0
|
226 |
*/
|
sl@0
|
227 |
TBool TEComCachedDriveInfoIterator::SetPos(const TInt aDrive)
|
sl@0
|
228 |
{
|
sl@0
|
229 |
for (iIndex = CEComCachedDriveInfo::iLastIndex; iIndex >= 0; iIndex--)
|
sl@0
|
230 |
{
|
sl@0
|
231 |
if (iDriveAttr[iIndex].iDrvNumber == aDrive)
|
sl@0
|
232 |
{
|
sl@0
|
233 |
if (0 == (iDriveAttr[iIndex].iFlags & EEComDrvAttrNoDiscovery))
|
sl@0
|
234 |
{
|
sl@0
|
235 |
return ETrue;
|
sl@0
|
236 |
}
|
sl@0
|
237 |
iIndex = KInvalidIndex;
|
sl@0
|
238 |
break;
|
sl@0
|
239 |
}
|
sl@0
|
240 |
}
|
sl@0
|
241 |
return EFalse;
|
sl@0
|
242 |
}
|
sl@0
|
243 |
|
sl@0
|
244 |
/** Position iterator at first valid drive so as to
|
sl@0
|
245 |
iterate the drive list in increasing drive number order. */
|
sl@0
|
246 |
void TEComCachedDriveInfoIterator::First(void)
|
sl@0
|
247 |
{
|
sl@0
|
248 |
for (iIndex = 0; iIndex <= CEComCachedDriveInfo::iLastIndex; iIndex++)
|
sl@0
|
249 |
{
|
sl@0
|
250 |
if (0 == (iDriveAttr[iIndex].iFlags & EEComDrvAttrNoDiscovery))
|
sl@0
|
251 |
{
|
sl@0
|
252 |
return;
|
sl@0
|
253 |
}
|
sl@0
|
254 |
}
|
sl@0
|
255 |
}
|
sl@0
|
256 |
|
sl@0
|
257 |
/** Position iterator at last valid drive so as to
|
sl@0
|
258 |
iterate the drive list in decreasing drive number order. */
|
sl@0
|
259 |
void TEComCachedDriveInfoIterator::Last(void)
|
sl@0
|
260 |
{
|
sl@0
|
261 |
for (iIndex = CEComCachedDriveInfo::iLastIndex; iIndex >=0; iIndex--)
|
sl@0
|
262 |
{
|
sl@0
|
263 |
if (0 == (iDriveAttr[iIndex].iFlags & EEComDrvAttrNoDiscovery))
|
sl@0
|
264 |
{
|
sl@0
|
265 |
return;
|
sl@0
|
266 |
}
|
sl@0
|
267 |
}
|
sl@0
|
268 |
}
|
sl@0
|
269 |
|
sl@0
|
270 |
/** To be used in for and while loops to check if iterator
|
sl@0
|
271 |
has stepped through all posible drives. */
|
sl@0
|
272 |
TBool TEComCachedDriveInfoIterator::InRange(void) const
|
sl@0
|
273 |
{
|
sl@0
|
274 |
return (iIndex >= 0 && iIndex <= CEComCachedDriveInfo::iLastIndex);
|
sl@0
|
275 |
}
|
sl@0
|
276 |
|
sl@0
|
277 |
/** Increment iterator to next valid drive. */
|
sl@0
|
278 |
void TEComCachedDriveInfoIterator::Next(void)
|
sl@0
|
279 |
{
|
sl@0
|
280 |
if (InRange())
|
sl@0
|
281 |
{
|
sl@0
|
282 |
for (++iIndex; iIndex <= CEComCachedDriveInfo::iLastIndex; iIndex++)
|
sl@0
|
283 |
{
|
sl@0
|
284 |
if (0 == (iDriveAttr[iIndex].iFlags & EEComDrvAttrNoDiscovery))
|
sl@0
|
285 |
{
|
sl@0
|
286 |
return;
|
sl@0
|
287 |
}
|
sl@0
|
288 |
}
|
sl@0
|
289 |
}
|
sl@0
|
290 |
}
|
sl@0
|
291 |
|
sl@0
|
292 |
/** Decrement iterator to next valid drive. */
|
sl@0
|
293 |
void TEComCachedDriveInfoIterator::Prev(void)
|
sl@0
|
294 |
{
|
sl@0
|
295 |
if (InRange())
|
sl@0
|
296 |
{
|
sl@0
|
297 |
for (--iIndex; iIndex >= 0; iIndex--)
|
sl@0
|
298 |
{
|
sl@0
|
299 |
if (0 == (iDriveAttr[iIndex].iFlags & EEComDrvAttrNoDiscovery))
|
sl@0
|
300 |
{
|
sl@0
|
301 |
return;
|
sl@0
|
302 |
}
|
sl@0
|
303 |
}
|
sl@0
|
304 |
}
|
sl@0
|
305 |
}
|
sl@0
|
306 |
|
sl@0
|
307 |
/**
|
sl@0
|
308 |
@panic USER:133 from TFixedArray if iterator is out of bound.
|
sl@0
|
309 |
*/
|
sl@0
|
310 |
TDriveNumber TEComCachedDriveInfoIterator::DriveNumber(void) const
|
sl@0
|
311 |
{
|
sl@0
|
312 |
return static_cast<TDriveNumber>( iDriveAttr.At(iIndex).iDrvNumber );
|
sl@0
|
313 |
}
|
sl@0
|
314 |
|
sl@0
|
315 |
/**
|
sl@0
|
316 |
@panic USER:133 from TFixedArray if iterator is out of bound.
|
sl@0
|
317 |
*/
|
sl@0
|
318 |
TDriveUnit TEComCachedDriveInfoIterator::DriveUnit(void) const
|
sl@0
|
319 |
{
|
sl@0
|
320 |
return TDriveUnit( DriveNumber() );
|
sl@0
|
321 |
}
|
sl@0
|
322 |
|
sl@0
|
323 |
/** Test if the EEComDrvAttrReadOnlyInternal attribute for the current
|
sl@0
|
324 |
drive is set.
|
sl@0
|
325 |
@panic USER:133 from TFixedArray if iterator is out of bound.
|
sl@0
|
326 |
*/
|
sl@0
|
327 |
TBool TEComCachedDriveInfoIterator::DriveIsReadOnlyInternal(void) const
|
sl@0
|
328 |
{
|
sl@0
|
329 |
if (EEComDrvAttrReadOnlyInternal & iDriveAttr.At(iIndex).iFlags)
|
sl@0
|
330 |
{
|
sl@0
|
331 |
return ETrue;
|
sl@0
|
332 |
}
|
sl@0
|
333 |
return EFalse;
|
sl@0
|
334 |
}
|
sl@0
|
335 |
|
sl@0
|
336 |
/** Test if the EEComDrvAttrRemovable attribute for the current
|
sl@0
|
337 |
drive is set.
|
sl@0
|
338 |
@panic USER:133 from TFixedArray if iterator is out of bound.
|
sl@0
|
339 |
*/
|
sl@0
|
340 |
TBool TEComCachedDriveInfoIterator::DriveIsRemovable(void) const
|
sl@0
|
341 |
{
|
sl@0
|
342 |
if (EEComDrvAttrRemovable & iDriveAttr.At(iIndex).iFlags)
|
sl@0
|
343 |
{
|
sl@0
|
344 |
return ETrue;
|
sl@0
|
345 |
}
|
sl@0
|
346 |
return EFalse;
|
sl@0
|
347 |
}
|
sl@0
|
348 |
|
sl@0
|
349 |
/** Test if the EEComDrvAttrWritable attribute for the current drive is set.
|
sl@0
|
350 |
@return ETrue if drive is writable. EFalse means drive is not writable.
|
sl@0
|
351 |
@panic USER:133 from TFixedArray if iterator is out of bound.
|
sl@0
|
352 |
*/
|
sl@0
|
353 |
TBool TEComCachedDriveInfoIterator::DriveIsWritable(void) const
|
sl@0
|
354 |
{
|
sl@0
|
355 |
if (EEComDrvAttrWritable & iDriveAttr.At(iIndex).iFlags)
|
sl@0
|
356 |
{
|
sl@0
|
357 |
return ETrue;
|
sl@0
|
358 |
}
|
sl@0
|
359 |
return EFalse;
|
sl@0
|
360 |
}
|