Update contrib.
1 // Copyright (c) 2006-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 // Implementation for CEComCachedDriveInfo class
25 #include <bsul/bsul.h>
26 #include <ecom/ecomerrorcodes.h>
27 #include "DriveInfo.h"
28 #include "EComPatchDataConstantv2.h"
29 #include "EComInternalErrorCodes.h"
30 const TInt KInvalidIndex = -1;
31 const TInt32 KInvalidDrvNumber = -1;
33 /** static member of CEComCachedDriveInfo */
34 TFixedArray<TEComDrvFlags, KMaxDrives> CEComCachedDriveInfo::iDriveAttr;
36 /** static member of CEComCachedDriveInfo */
37 TInt CEComCachedDriveInfo::iLastIndex = KInvalidIndex;
39 /** static member of CEComCachedDriveInfo */
40 TBool CEComCachedDriveInfo::iInitialized = EFalse;
43 /** Standard factory method to instantiate CEComCachedDriveInfo instances.
45 CEComCachedDriveInfo* CEComCachedDriveInfo::NewL(RFs& aFs)
47 CEComCachedDriveInfo* self = new (ELeave) CEComCachedDriveInfo;
48 CleanupStack::PushL(self);
49 self->ConstructL(aFs, KDiscoveryDisabledDriveList);
50 CleanupStack::Pop(self);
54 /** Constructor of CEComCachedDriveInfo. Nothing to do. */
55 CEComCachedDriveInfo::CEComCachedDriveInfo()
59 /** Standard two-phase construction to complete construction
60 of CEComCachedDriveInfo.
62 @param aFs reference to a connected RFs session.
63 @param aDiscoveryDisabledMask bits set indicate the drives contain no plug-ins
64 and need not be scanned. There is a mechanism to allow licensees to
65 specify this mask at ROM build time.
66 @leave KErrNoMemory if out of memory, or any of the other system wide errors.
68 void CEComCachedDriveInfo::ConstructL(RFs& aFs, TUint32 aDiscoveryDisabledMask)
75 iLastIndex = KInvalidIndex;
77 // Get list of installed drives. This info is not available from
78 // BSUL::CCachedDriveInfo API's.
80 User::LeaveIfError( aFs.DriveList(drvList) );
82 BSUL::CCachedDriveInfo* cachedDrvInfo = BSUL::CCachedDriveInfo::NewL(aFs);
83 CleanupStack::PushL(cachedDrvInfo);
85 // determine attributes of valid drives
86 for (TInt i = EDriveA; i <= EDriveZ; i++)
91 TInt j = ++iLastIndex;
93 iDriveAttr[j].iDrvNumber = i;
95 TDriveUnit drvUnit(i);
96 if (cachedDrvInfo->IsReadOnlyInternalL(drvUnit))
98 iDriveAttr[j].iFlags = EEComDrvAttrReadOnlyInternal;
99 // RO internal drive does not have any other attributes
103 iDriveAttr[j].iFlags = 0;
105 // Check if drive is removable
106 if (cachedDrvInfo->IsFlagSetOnDriveL(drvUnit, KDriveAttRemovable))
108 iDriveAttr[j].iFlags |= EEComDrvAttrRemovable;
111 // Check if drive is on ReadWrite drive
112 if (! cachedDrvInfo->IsFlagSetOnDriveL(drvUnit, KDriveAttRom))
114 iDriveAttr[j].iFlags |= EEComDrvAttrWritable;
117 TUint32 drvBitMask = 1;
119 // Three conditions for discovery disable: disabled by licensees,
120 // remote drives and substituted drives
121 if ( (drvBitMask & aDiscoveryDisabledMask) ||
122 cachedDrvInfo->IsFlagSetOnDriveL(drvUnit, KDriveAttSubsted) ||
123 cachedDrvInfo->IsFlagSetOnDriveL(drvUnit, KDriveAttRemote) )
125 iDriveAttr[j].iFlags |= EEComDrvAttrNoDiscovery;
130 CleanupStack::PopAndDestroy(cachedDrvInfo);
131 __ASSERT_DEBUG(iLastIndex >= 0, User::Invariant());
133 for (TInt i = iLastIndex + 1; i < KMaxDrives; i++)
135 iDriveAttr[i].iDrvNumber = KInvalidDrvNumber;
138 iInitialized = ETrue;
141 /** Is EEComDrvAttrReadOnlyInternal attribute set on the given drive?
142 @param aDrive the drive number
143 @return ETrue if drive is RO internal. EFalse means either no such drive or
145 @leave KEComErrDriveNotFound if aDrive is not supposed to be scanned,
146 i.e. drive absent or disabled by licensees or subst or remote.
147 Use TEComCachedDriveInfoIterator::SetPos instead if want to test drive
150 TBool CEComCachedDriveInfo::DriveIsReadOnlyInternalL(const TInt aDrive) const
152 TEComCachedDriveInfoIterator iter(*this);
154 if (! iter.SetPos(aDrive))
156 // This method is intended to be used on drives that are known
157 // to be valid, e.g. drive extracted from the path of a discovered
159 User::Leave(KEComErrDriveNotFound);
161 return iter.DriveIsReadOnlyInternal();
164 /** Test if the EEComDrvAttrRemovable attribute for the given drive is set.
165 @param aDrive the drive number
166 @return ETrue if drive is removable. EFalse means either no such drive or
168 @leave KEComErrDriveNotFound if aDrive is not supposed to be scanned,
169 i.e. drive absent or disabled by licensees or subst or remote.
170 Use TEComCachedDriveInfoIterator::SetPos instead if want to test drive
173 TBool CEComCachedDriveInfo::DriveIsRemovableL(const TInt aDrive) const
175 TEComCachedDriveInfoIterator iter(*this);
177 if (! iter.SetPos(aDrive))
179 // This method is intended to be used on drives that are known
180 // to be valid, e.g. drive extracted from the path of a discovered
182 User::Leave(KEComErrDriveNotFound);
184 return iter.DriveIsRemovable();
187 /** Test if the EEComDrvAttrWritable attribute for the given drive is set.
188 @param aDrive the drive number
189 @return ETrue if drive is writable. EFalse means either no such drive or
191 @leave KEComErrDriveNotFound if aDrive is not supposed to be scanned,
192 i.e. drive absent or disabled by licensees or subst or remote.
193 Use TEComCachedDriveInfoIterator::SetPos instead if want to test drive
196 TBool CEComCachedDriveInfo::DriveIsWritableL(const TInt aDrive) const
198 TEComCachedDriveInfoIterator iter(*this);
200 if (! iter.SetPos(aDrive))
202 // This method is intended to be used on drives that are known
203 // to be valid, e.g. drive extracted from the path of a discovered
205 User::Leave(KEComErrDriveNotFound);
207 return iter.DriveIsWritable();
210 // Implementation for TEComCachedDriveInfoIterator class
212 /** TEComCachedDriveInfoIterator Constructor
213 Note that the object is not yet in valid state. User must first call
216 TEComCachedDriveInfoIterator::TEComCachedDriveInfoIterator(const CEComCachedDriveInfo& aCachedDriveInfo)
217 : iDriveAttr(aCachedDriveInfo.iDriveAttr)
219 iIndex = KInvalidIndex;
222 /** Check if the drive is enabled for scanning and move index there if true.
223 @param aDrive the drive number of the drive to check.
224 @return ETrue the drive is enabled for scanning. Index is moved to that location.
225 If drive not to be scanned, index is moved out of bound.
227 TBool TEComCachedDriveInfoIterator::SetPos(const TInt aDrive)
229 for (iIndex = CEComCachedDriveInfo::iLastIndex; iIndex >= 0; iIndex--)
231 if (iDriveAttr[iIndex].iDrvNumber == aDrive)
233 if (0 == (iDriveAttr[iIndex].iFlags & EEComDrvAttrNoDiscovery))
237 iIndex = KInvalidIndex;
244 /** Position iterator at first valid drive so as to
245 iterate the drive list in increasing drive number order. */
246 void TEComCachedDriveInfoIterator::First(void)
248 for (iIndex = 0; iIndex <= CEComCachedDriveInfo::iLastIndex; iIndex++)
250 if (0 == (iDriveAttr[iIndex].iFlags & EEComDrvAttrNoDiscovery))
257 /** Position iterator at last valid drive so as to
258 iterate the drive list in decreasing drive number order. */
259 void TEComCachedDriveInfoIterator::Last(void)
261 for (iIndex = CEComCachedDriveInfo::iLastIndex; iIndex >=0; iIndex--)
263 if (0 == (iDriveAttr[iIndex].iFlags & EEComDrvAttrNoDiscovery))
270 /** To be used in for and while loops to check if iterator
271 has stepped through all posible drives. */
272 TBool TEComCachedDriveInfoIterator::InRange(void) const
274 return (iIndex >= 0 && iIndex <= CEComCachedDriveInfo::iLastIndex);
277 /** Increment iterator to next valid drive. */
278 void TEComCachedDriveInfoIterator::Next(void)
282 for (++iIndex; iIndex <= CEComCachedDriveInfo::iLastIndex; iIndex++)
284 if (0 == (iDriveAttr[iIndex].iFlags & EEComDrvAttrNoDiscovery))
292 /** Decrement iterator to next valid drive. */
293 void TEComCachedDriveInfoIterator::Prev(void)
297 for (--iIndex; iIndex >= 0; iIndex--)
299 if (0 == (iDriveAttr[iIndex].iFlags & EEComDrvAttrNoDiscovery))
308 @panic USER:133 from TFixedArray if iterator is out of bound.
310 TDriveNumber TEComCachedDriveInfoIterator::DriveNumber(void) const
312 return static_cast<TDriveNumber>( iDriveAttr.At(iIndex).iDrvNumber );
316 @panic USER:133 from TFixedArray if iterator is out of bound.
318 TDriveUnit TEComCachedDriveInfoIterator::DriveUnit(void) const
320 return TDriveUnit( DriveNumber() );
323 /** Test if the EEComDrvAttrReadOnlyInternal attribute for the current
325 @panic USER:133 from TFixedArray if iterator is out of bound.
327 TBool TEComCachedDriveInfoIterator::DriveIsReadOnlyInternal(void) const
329 if (EEComDrvAttrReadOnlyInternal & iDriveAttr.At(iIndex).iFlags)
336 /** Test if the EEComDrvAttrRemovable attribute for the current
338 @panic USER:133 from TFixedArray if iterator is out of bound.
340 TBool TEComCachedDriveInfoIterator::DriveIsRemovable(void) const
342 if (EEComDrvAttrRemovable & iDriveAttr.At(iIndex).iFlags)
349 /** Test if the EEComDrvAttrWritable attribute for the current drive is set.
350 @return ETrue if drive is writable. EFalse means drive is not writable.
351 @panic USER:133 from TFixedArray if iterator is out of bound.
353 TBool TEComCachedDriveInfoIterator::DriveIsWritable(void) const
355 if (EEComDrvAttrWritable & iDriveAttr.At(iIndex).iFlags)