os/ossrv/lowlevellibsandfws/apputils/bsul/src/ccacheddriveinfo.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Contains implementation of BSUL class to cache drive information
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20 */
    21 
    22 #include <bsul/ccacheddriveinfo.h>
    23 
    24 using namespace BSUL;
    25 
    26 /**
    27  Constructs CCachedDriveInfo object by retrieving the drive status using aFs
    28  @param aFs Reference to connected filesystem
    29  */
    30 EXPORT_C CCachedDriveInfo* CCachedDriveInfo::NewL(RFs& aFs)
    31 	{
    32 	CCachedDriveInfo *self = new(ELeave) CCachedDriveInfo();
    33 	CleanupStack::PushL(self);
    34 	self->ConstructL(aFs);
    35 	CleanupStack::Pop(self);
    36 	return self;
    37 	}
    38 
    39 /**
    40  Constructs CCachedDriveInfo object by retrieving the drive status using aFs
    41  @param aFs Reference to connected filesystem
    42  */
    43 EXPORT_C CCachedDriveInfo* CCachedDriveInfo::NewLC(RFs& aFs)
    44 	{
    45 	CCachedDriveInfo *self = new(ELeave) CCachedDriveInfo();
    46 	CleanupStack::PushL(self);
    47 	self->ConstructL(aFs);
    48 	return self;
    49 	}
    50 /**
    51  @internalComponent
    52  */
    53 CCachedDriveInfo::CCachedDriveInfo()
    54 	{}
    55 
    56 /**
    57  @internalComponent
    58  */
    59 void CCachedDriveInfo::ConstructL(RFs& aFs)
    60 	{
    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)
    64 		{
    65 		ASSERT(aFs.IsValidDrive(drive));
    66 		
    67 		TDriveInfo driveInfo;
    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;
    72 		}
    73 	}
    74 	
    75 /**
    76  Frees all allocated resources
    77  */
    78 EXPORT_C CCachedDriveInfo::~CCachedDriveInfo()
    79 	{
    80 	}
    81 
    82 /**
    83  @internalComponent
    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
    89  */
    90 TDriveUnit CCachedDriveInfo::PathToDriveUnitL(const TDesC& aFullName)
    91 	{
    92 	// check if the filename can be parsed
    93 	TParse checkParse;
    94 	TInt retcode = checkParse.Set(aFullName, NULL, NULL);
    95 	User::LeaveIfError(retcode);
    96 	
    97 	TParsePtrC parse(aFullName);
    98 	if (!parse.DrivePresent())
    99 		{
   100 		User::Leave(KErrBadName);
   101 		}
   102 	
   103 	TDriveUnit driveId(aFullName);
   104 	
   105 	return driveId;
   106 	}
   107 
   108 /**
   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.
   111 
   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
   116  */
   117 EXPORT_C TBool CCachedDriveInfo::IsReadOnlyInternalL(const TDesC& aFullName) const
   118 	{
   119 	TDriveUnit driveId = PathToDriveUnitL(aFullName);
   120 	
   121 	return IsReadOnlyInternalL(driveId);
   122 	}
   123 
   124 /**
   125  Checks if the specified drive is both read-only and internal by checking that the 
   126  KMediaAttWriteProtected and KDriveAttInternal flags are both set.
   127 
   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
   131  */
   132 EXPORT_C TBool CCachedDriveInfo::IsReadOnlyInternalL(TDriveUnit aDrive) const
   133 	{
   134 	if (aDrive < EDriveA || aDrive > EDriveZ)
   135 		{
   136 		User::Leave(KErrBadName);
   137 		}
   138 
   139 	if ( (iDriveAndMediaAttributes[aDrive].iDriveAttributes & KDriveAttInternal) &&
   140 		 (iDriveAndMediaAttributes[aDrive].iMediaAttributes & KMediaAttWriteProtected) )
   141 		{
   142 		return ETrue;
   143 		}
   144 	
   145 	return EFalse;
   146 	}
   147 
   148 /**
   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*
   153 
   154  @see TDriveInfo
   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
   159  */
   160 EXPORT_C TBool CCachedDriveInfo::IsFlagSetOnDriveL(TDriveUnit aDrive, TUint aFlags) const
   161 	{
   162 	if (aDrive < EDriveA || aDrive > EDriveZ)
   163 		{
   164 		User::Leave(KErrBadName);
   165 		}
   166 
   167 	return ((iDriveAndMediaAttributes[aDrive].iDriveAttributes & aFlags) == aFlags) ? ETrue : EFalse;
   168 	}
   169 		
   170 /**
   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.
   174   
   175  @see TDriveInfo
   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
   181  is needed.
   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
   184  */
   185 EXPORT_C TBool CCachedDriveInfo::MediaTypeL(TDriveUnit aDrive, TMediaType aTestValue, TMediaType* aActual) const
   186 	{
   187 	if (aDrive < EDriveA || aDrive > EDriveZ)
   188 		{
   189 		User::Leave(KErrBadName);
   190 		}
   191 	
   192 	if (aActual)
   193 		{
   194 		*aActual = iDriveAndMediaAttributes[aDrive].iMediaType;
   195 		}
   196 	
   197 	return (iDriveAndMediaAttributes[aDrive].iMediaType == aTestValue) ? ETrue : EFalse;
   198 	}
   199 
   200 /**
   201  This method fetches the default removable memory card (MMC card). To determine
   202  the MMC drive a default algorithm will be used.
   203 
   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
   208   
   209  @see TDriveInfo
   210  @return TDriveUnit The drive found by the algorithm
   211  @leave KErrNotFound if drive not found
   212  */
   213 EXPORT_C TDriveUnit CCachedDriveInfo::GetDefaultRemovableMemoryCardDriveL() const
   214 	{
   215 	for (TInt driveNum=EDriveA; driveNum<=EDriveZ; driveNum++)
   216 		{
   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))
   221 			{
   222 			// Found MMC drive.
   223 			return driveNum;
   224 			}
   225 	    }
   226 
   227 	// No valid MMC drive available.
   228 	User::Leave(KErrNotFound);
   229 	return -1; // to avoid warning
   230 	}
   231