os/ossrv/lowlevellibsandfws/apputils/bsul/src/ccacheddriveinfo.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-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
// Contains implementation of BSUL class to cache drive information
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include <bsul/ccacheddriveinfo.h>
sl@0
    23
sl@0
    24
using namespace BSUL;
sl@0
    25
sl@0
    26
/**
sl@0
    27
 Constructs CCachedDriveInfo object by retrieving the drive status using aFs
sl@0
    28
 @param aFs Reference to connected filesystem
sl@0
    29
 */
sl@0
    30
EXPORT_C CCachedDriveInfo* CCachedDriveInfo::NewL(RFs& aFs)
sl@0
    31
	{
sl@0
    32
	CCachedDriveInfo *self = new(ELeave) CCachedDriveInfo();
sl@0
    33
	CleanupStack::PushL(self);
sl@0
    34
	self->ConstructL(aFs);
sl@0
    35
	CleanupStack::Pop(self);
sl@0
    36
	return self;
sl@0
    37
	}
sl@0
    38
sl@0
    39
/**
sl@0
    40
 Constructs CCachedDriveInfo object by retrieving the drive status using aFs
sl@0
    41
 @param aFs Reference to connected filesystem
sl@0
    42
 */
sl@0
    43
EXPORT_C CCachedDriveInfo* CCachedDriveInfo::NewLC(RFs& aFs)
sl@0
    44
	{
sl@0
    45
	CCachedDriveInfo *self = new(ELeave) CCachedDriveInfo();
sl@0
    46
	CleanupStack::PushL(self);
sl@0
    47
	self->ConstructL(aFs);
sl@0
    48
	return self;
sl@0
    49
	}
sl@0
    50
/**
sl@0
    51
 @internalComponent
sl@0
    52
 */
sl@0
    53
CCachedDriveInfo::CCachedDriveInfo()
sl@0
    54
	{}
sl@0
    55
sl@0
    56
/**
sl@0
    57
 @internalComponent
sl@0
    58
 */
sl@0
    59
void CCachedDriveInfo::ConstructL(RFs& aFs)
sl@0
    60
	{
sl@0
    61
	// Goes through each drive, and stores whether or not it is available, 
sl@0
    62
	// the drive's attributes, and the drive's media attributes
sl@0
    63
	for (TDriveUnit drive(EDriveZ); drive >= EDriveA; drive = TInt(drive) - 1)
sl@0
    64
		{
sl@0
    65
		ASSERT(aFs.IsValidDrive(drive));
sl@0
    66
		
sl@0
    67
		TDriveInfo driveInfo;
sl@0
    68
		User::LeaveIfError(aFs.Drive(driveInfo, drive));
sl@0
    69
		iDriveAndMediaAttributes[drive].iDriveAttributes = driveInfo.iDriveAtt;
sl@0
    70
		iDriveAndMediaAttributes[drive].iMediaAttributes = driveInfo.iMediaAtt;
sl@0
    71
		iDriveAndMediaAttributes[drive].iMediaType = driveInfo.iType;
sl@0
    72
		}
sl@0
    73
	}
sl@0
    74
	
sl@0
    75
/**
sl@0
    76
 Frees all allocated resources
sl@0
    77
 */
sl@0
    78
EXPORT_C CCachedDriveInfo::~CCachedDriveInfo()
sl@0
    79
	{
sl@0
    80
	}
sl@0
    81
sl@0
    82
/**
sl@0
    83
 @internalComponent
sl@0
    84
 Returns the TDriveUnit associated with the given path
sl@0
    85
 @param aFullName File name that includes a drive
sl@0
    86
 @return The drive unit associated with aFullName
sl@0
    87
 @leave Leaves with a system-wide error code if the aFullName cannot be parsed,
sl@0
    88
 		or with KErrBadName if the supplied path does not contain a drive letter
sl@0
    89
 */
sl@0
    90
TDriveUnit CCachedDriveInfo::PathToDriveUnitL(const TDesC& aFullName)
sl@0
    91
	{
sl@0
    92
	// check if the filename can be parsed
sl@0
    93
	TParse checkParse;
sl@0
    94
	TInt retcode = checkParse.Set(aFullName, NULL, NULL);
sl@0
    95
	User::LeaveIfError(retcode);
sl@0
    96
	
sl@0
    97
	TParsePtrC parse(aFullName);
sl@0
    98
	if (!parse.DrivePresent())
sl@0
    99
		{
sl@0
   100
		User::Leave(KErrBadName);
sl@0
   101
		}
sl@0
   102
	
sl@0
   103
	TDriveUnit driveId(aFullName);
sl@0
   104
	
sl@0
   105
	return driveId;
sl@0
   106
	}
sl@0
   107
sl@0
   108
/**
sl@0
   109
 Checks if the drive associated with aFullName is both read-only and internal by 
sl@0
   110
 checking that the KMediaAttWriteProtected and KDriveAttInternal flags are both set.
sl@0
   111
sl@0
   112
 @param aFullName File name that includes a drive
sl@0
   113
 @return Returns ETrue if the drive is read-only and internal, EFalse otherwise (including when the drive is not mounted)
sl@0
   114
 @leave Leaves with a system-wide error code if the aFullName cannot be parsed,
sl@0
   115
 		or with KErrBadName if the supplied path does not contain a drive letter
sl@0
   116
 */
sl@0
   117
EXPORT_C TBool CCachedDriveInfo::IsReadOnlyInternalL(const TDesC& aFullName) const
sl@0
   118
	{
sl@0
   119
	TDriveUnit driveId = PathToDriveUnitL(aFullName);
sl@0
   120
	
sl@0
   121
	return IsReadOnlyInternalL(driveId);
sl@0
   122
	}
sl@0
   123
sl@0
   124
/**
sl@0
   125
 Checks if the specified drive is both read-only and internal by checking that the 
sl@0
   126
 KMediaAttWriteProtected and KDriveAttInternal flags are both set.
sl@0
   127
sl@0
   128
 @param aDrive The drive whose read-only status is being retrieved
sl@0
   129
 @return Returns ETrue if the drive is read-only and internal, EFalse otherwise (including when the drive is not mounted)
sl@0
   130
 @leave Leaves with KErrBadName if aDrive is not a valid drive between EDriveA and EDriveZ
sl@0
   131
 */
sl@0
   132
EXPORT_C TBool CCachedDriveInfo::IsReadOnlyInternalL(TDriveUnit aDrive) const
sl@0
   133
	{
sl@0
   134
	if (aDrive < EDriveA || aDrive > EDriveZ)
sl@0
   135
		{
sl@0
   136
		User::Leave(KErrBadName);
sl@0
   137
		}
sl@0
   138
sl@0
   139
	if ( (iDriveAndMediaAttributes[aDrive].iDriveAttributes & KDriveAttInternal) &&
sl@0
   140
		 (iDriveAndMediaAttributes[aDrive].iMediaAttributes & KMediaAttWriteProtected) )
sl@0
   141
		{
sl@0
   142
		return ETrue;
sl@0
   143
		}
sl@0
   144
	
sl@0
   145
	return EFalse;
sl@0
   146
	}
sl@0
   147
sl@0
   148
/**
sl@0
   149
 This method allows the caller to test the attributes of a drive to see if 
sl@0
   150
 they are set. For example, a drive can be check whether it is remote by 
sl@0
   151
 checking the flag KDriveAttRemote is set.
sl@0
   152
 Valid flags are those defined in e32const.h starting KDriveAtt*
sl@0
   153
sl@0
   154
 @see TDriveInfo
sl@0
   155
 @param aDrive The drive whose attribute information is being tested
sl@0
   156
 @param aFlags The attributes to be checked for the drive
sl@0
   157
 @return ETrue if attributes in the drive are set, EFalse otherwise 
sl@0
   158
 @leave KErrBadName if aDrive is not a valid drive between EDriveA and EDriveZ
sl@0
   159
 */
sl@0
   160
EXPORT_C TBool CCachedDriveInfo::IsFlagSetOnDriveL(TDriveUnit aDrive, TUint aFlags) const
sl@0
   161
	{
sl@0
   162
	if (aDrive < EDriveA || aDrive > EDriveZ)
sl@0
   163
		{
sl@0
   164
		User::Leave(KErrBadName);
sl@0
   165
		}
sl@0
   166
sl@0
   167
	return ((iDriveAndMediaAttributes[aDrive].iDriveAttributes & aFlags) == aFlags) ? ETrue : EFalse;
sl@0
   168
	}
sl@0
   169
		
sl@0
   170
/**
sl@0
   171
 This method allows the caller to check the media type of a drive, to 
sl@0
   172
 see if a drive is of a particular media type. It also optionally
sl@0
   173
 returns the media type of the drive.
sl@0
   174
  
sl@0
   175
 @see TDriveInfo
sl@0
   176
 @param aDrive The drive whose media type information is being checked.
sl@0
   177
 @param aTestValue The media type to compare against the drive provided.
sl@0
   178
 @param aActual return parameter - if the caller provides a pointer
sl@0
   179
 for this parameter type, then it will be populated with the actual media type
sl@0
   180
 of the drive. This is useful to avoid repeated queries if the media type
sl@0
   181
 is needed.
sl@0
   182
 @return ETrue if the drive media type matches the media type provided
sl@0
   183
 @leave KErrBadName if aDrive is not a valid drive between EDriveA and EDriveZ
sl@0
   184
 */
sl@0
   185
EXPORT_C TBool CCachedDriveInfo::MediaTypeL(TDriveUnit aDrive, TMediaType aTestValue, TMediaType* aActual) const
sl@0
   186
	{
sl@0
   187
	if (aDrive < EDriveA || aDrive > EDriveZ)
sl@0
   188
		{
sl@0
   189
		User::Leave(KErrBadName);
sl@0
   190
		}
sl@0
   191
	
sl@0
   192
	if (aActual)
sl@0
   193
		{
sl@0
   194
		*aActual = iDriveAndMediaAttributes[aDrive].iMediaType;
sl@0
   195
		}
sl@0
   196
	
sl@0
   197
	return (iDriveAndMediaAttributes[aDrive].iMediaType == aTestValue) ? ETrue : EFalse;
sl@0
   198
	}
sl@0
   199
sl@0
   200
/**
sl@0
   201
 This method fetches the default removable memory card (MMC card). To determine
sl@0
   202
 the MMC drive a default algorithm will be used.
sl@0
   203
sl@0
   204
 The algorithm to be used will be to search through the drive list provided
sl@0
   205
 by RFs for the first drive that has the following properties 
sl@0
   206
 1) Drive type is EMediaHardDisk
sl@0
   207
 2) Drive attributes are KDriveAttRemovable and KDriveAttLocal
sl@0
   208
  
sl@0
   209
 @see TDriveInfo
sl@0
   210
 @return TDriveUnit The drive found by the algorithm
sl@0
   211
 @leave KErrNotFound if drive not found
sl@0
   212
 */
sl@0
   213
EXPORT_C TDriveUnit CCachedDriveInfo::GetDefaultRemovableMemoryCardDriveL() const
sl@0
   214
	{
sl@0
   215
	for (TInt driveNum=EDriveA; driveNum<=EDriveZ; driveNum++)
sl@0
   216
		{
sl@0
   217
	    // Confirmed on H4 board that the properties below were present for an MMC card. Also
sl@0
   218
		// E32 has a test PBASE-T_MMCDRV-0164 that also confirms this.
sl@0
   219
		if (IsFlagSetOnDriveL(driveNum, KDriveAttRemovable|KDriveAttLocal) &&
sl@0
   220
	        MediaTypeL(driveNum, EMediaHardDisk))
sl@0
   221
			{
sl@0
   222
			// Found MMC drive.
sl@0
   223
			return driveNum;
sl@0
   224
			}
sl@0
   225
	    }
sl@0
   226
sl@0
   227
	// No valid MMC drive available.
sl@0
   228
	User::Leave(KErrNotFound);
sl@0
   229
	return -1; // to avoid warning
sl@0
   230
	}
sl@0
   231