Update contrib.
1 // Copyright (c) 2007-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 // Contains implementation of BSUL class to cache drive information
22 #include <bsul/ccacheddriveinfo.h>
27 Constructs CCachedDriveInfo object by retrieving the drive status using aFs
28 @param aFs Reference to connected filesystem
30 EXPORT_C CCachedDriveInfo* CCachedDriveInfo::NewL(RFs& aFs)
32 CCachedDriveInfo *self = new(ELeave) CCachedDriveInfo();
33 CleanupStack::PushL(self);
34 self->ConstructL(aFs);
35 CleanupStack::Pop(self);
40 Constructs CCachedDriveInfo object by retrieving the drive status using aFs
41 @param aFs Reference to connected filesystem
43 EXPORT_C CCachedDriveInfo* CCachedDriveInfo::NewLC(RFs& aFs)
45 CCachedDriveInfo *self = new(ELeave) CCachedDriveInfo();
46 CleanupStack::PushL(self);
47 self->ConstructL(aFs);
53 CCachedDriveInfo::CCachedDriveInfo()
59 void CCachedDriveInfo::ConstructL(RFs& aFs)
61 // Goes through each drive, and stores whether or not it is available,
62 // the drive's attributes, and the drive's media attributes
63 for (TDriveUnit drive(EDriveZ); drive >= EDriveA; drive = TInt(drive) - 1)
65 ASSERT(aFs.IsValidDrive(drive));
68 User::LeaveIfError(aFs.Drive(driveInfo, drive));
69 iDriveAndMediaAttributes[drive].iDriveAttributes = driveInfo.iDriveAtt;
70 iDriveAndMediaAttributes[drive].iMediaAttributes = driveInfo.iMediaAtt;
71 iDriveAndMediaAttributes[drive].iMediaType = driveInfo.iType;
76 Frees all allocated resources
78 EXPORT_C CCachedDriveInfo::~CCachedDriveInfo()
84 Returns the TDriveUnit associated with the given path
85 @param aFullName File name that includes a drive
86 @return The drive unit associated with aFullName
87 @leave Leaves with a system-wide error code if the aFullName cannot be parsed,
88 or with KErrBadName if the supplied path does not contain a drive letter
90 TDriveUnit CCachedDriveInfo::PathToDriveUnitL(const TDesC& aFullName)
92 // check if the filename can be parsed
94 TInt retcode = checkParse.Set(aFullName, NULL, NULL);
95 User::LeaveIfError(retcode);
97 TParsePtrC parse(aFullName);
98 if (!parse.DrivePresent())
100 User::Leave(KErrBadName);
103 TDriveUnit driveId(aFullName);
109 Checks if the drive associated with aFullName is both read-only and internal by
110 checking that the KMediaAttWriteProtected and KDriveAttInternal flags are both set.
112 @param aFullName File name that includes a drive
113 @return Returns ETrue if the drive is read-only and internal, EFalse otherwise (including when the drive is not mounted)
114 @leave Leaves with a system-wide error code if the aFullName cannot be parsed,
115 or with KErrBadName if the supplied path does not contain a drive letter
117 EXPORT_C TBool CCachedDriveInfo::IsReadOnlyInternalL(const TDesC& aFullName) const
119 TDriveUnit driveId = PathToDriveUnitL(aFullName);
121 return IsReadOnlyInternalL(driveId);
125 Checks if the specified drive is both read-only and internal by checking that the
126 KMediaAttWriteProtected and KDriveAttInternal flags are both set.
128 @param aDrive The drive whose read-only status is being retrieved
129 @return Returns ETrue if the drive is read-only and internal, EFalse otherwise (including when the drive is not mounted)
130 @leave Leaves with KErrBadName if aDrive is not a valid drive between EDriveA and EDriveZ
132 EXPORT_C TBool CCachedDriveInfo::IsReadOnlyInternalL(TDriveUnit aDrive) const
134 if (aDrive < EDriveA || aDrive > EDriveZ)
136 User::Leave(KErrBadName);
139 if ( (iDriveAndMediaAttributes[aDrive].iDriveAttributes & KDriveAttInternal) &&
140 (iDriveAndMediaAttributes[aDrive].iMediaAttributes & KMediaAttWriteProtected) )
149 This method allows the caller to test the attributes of a drive to see if
150 they are set. For example, a drive can be check whether it is remote by
151 checking the flag KDriveAttRemote is set.
152 Valid flags are those defined in e32const.h starting KDriveAtt*
155 @param aDrive The drive whose attribute information is being tested
156 @param aFlags The attributes to be checked for the drive
157 @return ETrue if attributes in the drive are set, EFalse otherwise
158 @leave KErrBadName if aDrive is not a valid drive between EDriveA and EDriveZ
160 EXPORT_C TBool CCachedDriveInfo::IsFlagSetOnDriveL(TDriveUnit aDrive, TUint aFlags) const
162 if (aDrive < EDriveA || aDrive > EDriveZ)
164 User::Leave(KErrBadName);
167 return ((iDriveAndMediaAttributes[aDrive].iDriveAttributes & aFlags) == aFlags) ? ETrue : EFalse;
171 This method allows the caller to check the media type of a drive, to
172 see if a drive is of a particular media type. It also optionally
173 returns the media type of the drive.
176 @param aDrive The drive whose media type information is being checked.
177 @param aTestValue The media type to compare against the drive provided.
178 @param aActual return parameter - if the caller provides a pointer
179 for this parameter type, then it will be populated with the actual media type
180 of the drive. This is useful to avoid repeated queries if the media type
182 @return ETrue if the drive media type matches the media type provided
183 @leave KErrBadName if aDrive is not a valid drive between EDriveA and EDriveZ
185 EXPORT_C TBool CCachedDriveInfo::MediaTypeL(TDriveUnit aDrive, TMediaType aTestValue, TMediaType* aActual) const
187 if (aDrive < EDriveA || aDrive > EDriveZ)
189 User::Leave(KErrBadName);
194 *aActual = iDriveAndMediaAttributes[aDrive].iMediaType;
197 return (iDriveAndMediaAttributes[aDrive].iMediaType == aTestValue) ? ETrue : EFalse;
201 This method fetches the default removable memory card (MMC card). To determine
202 the MMC drive a default algorithm will be used.
204 The algorithm to be used will be to search through the drive list provided
205 by RFs for the first drive that has the following properties
206 1) Drive type is EMediaHardDisk
207 2) Drive attributes are KDriveAttRemovable and KDriveAttLocal
210 @return TDriveUnit The drive found by the algorithm
211 @leave KErrNotFound if drive not found
213 EXPORT_C TDriveUnit CCachedDriveInfo::GetDefaultRemovableMemoryCardDriveL() const
215 for (TInt driveNum=EDriveA; driveNum<=EDriveZ; driveNum++)
217 // Confirmed on H4 board that the properties below were present for an MMC card. Also
218 // E32 has a test PBASE-T_MMCDRV-0164 that also confirms this.
219 if (IsFlagSetOnDriveL(driveNum, KDriveAttRemovable|KDriveAttLocal) &&
220 MediaTypeL(driveNum, EMediaHardDisk))
227 // No valid MMC drive available.
228 User::Leave(KErrNotFound);
229 return -1; // to avoid warning