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 // Declaration for CEcomCachedDriveInfo class
29 /** A set of bit flags representing drive attributes of interest
33 // No scanning performed on 3 kinds of drives
34 // 1. discovery disabled by licensees, 2. remote (network) drive,
35 // and 3. substituted drive.
36 EEComDrvAttrNoDiscovery = 0x1,
38 // plug-ins on removable media needs extra validation
39 EEComDrvAttrRemovable = 0x2,
41 EEComDrvAttrReadOnlyInternal= 0x4,
43 // Custom resolver cache cares about this
44 EEComDrvAttrWritable = 0x8
47 /** A struct to store the driveNumber and TEComDrvAttr of a drive. */
54 /** class to keep track of drive attributes of interest to ECOM.
56 class CEComCachedDriveInfo : public CBase
59 static CEComCachedDriveInfo* NewL(RFs& aFs);
60 TBool DriveIsReadOnlyInternalL(const TInt aDrive) const;
61 TBool DriveIsRemovableL(const TInt aDrive) const;
62 TBool DriveIsWritableL(const TInt aDrive) const;
65 CEComCachedDriveInfo();
66 void ConstructL(RFs& aFs, TUint32 aDiscoveryDisabledMask);
69 static TFixedArray<TEComDrvFlags, KMaxDrives> iDriveAttr;
70 static TInt iLastIndex;
71 static TBool iInitialized;
73 friend class TEComCachedDriveInfoIterator; // to access private data
74 friend class TDriveInfo_StateAccessor; // for testing
78 /** Iterator which return only valid drives.
80 After instantiation, user must call either First() or Last()
81 to set the initial position and check InRange() before calling
82 the methods to access the drive number and attributes.
84 class TEComCachedDriveInfoIterator
87 TEComCachedDriveInfoIterator(const CEComCachedDriveInfo& aCachedDriveInfo);
93 TBool SetPos(const TInt aDrive);
94 TBool InRange(void) const;
96 TDriveNumber DriveNumber(void) const;
97 TDriveUnit DriveUnit(void) const;
98 TBool DriveIsReadOnlyInternal(void) const;
99 TBool DriveIsRemovable(void) const;
100 TBool DriveIsWritable(void) const;
103 const TFixedArray<TEComDrvFlags, KMaxDrives>& iDriveAttr;
107 #endif // DRIVEINFO_H