os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/DriveInfo.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Declaration for CEcomCachedDriveInfo class
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20  @internalComponent
    21 */
    22 
    23 #ifndef DRIVEINFO_H
    24 #define DRIVEINFO_H
    25 
    26 #include <e32std.h>
    27 #include <f32file.h>
    28 
    29 /** A set of bit flags representing drive attributes of interest
    30  to ECOM */
    31 enum TEComDrvAttr
    32 	{
    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,
    37 
    38 	// plug-ins on removable media needs extra validation
    39 	EEComDrvAttrRemovable		= 0x2,
    40 
    41 	EEComDrvAttrReadOnlyInternal= 0x4,
    42 
    43 	// Custom resolver cache cares about this
    44 	EEComDrvAttrWritable		= 0x8
    45 	};
    46 
    47 /** A struct to store the driveNumber and TEComDrvAttr of a drive. */
    48 struct TEComDrvFlags
    49 	{
    50 	TUint32 iFlags;
    51 	TInt32	iDrvNumber;
    52 	};
    53 
    54 /** class to keep track of drive attributes of interest to ECOM.
    55  */
    56 class CEComCachedDriveInfo : public CBase
    57 	{
    58 public:
    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;
    63 
    64 private:
    65 	CEComCachedDriveInfo();
    66 	void ConstructL(RFs& aFs, TUint32 aDiscoveryDisabledMask);
    67 
    68 private:
    69 	static TFixedArray<TEComDrvFlags, KMaxDrives> iDriveAttr;
    70 	static TInt  iLastIndex;
    71 	static TBool iInitialized;
    72 
    73 	friend class TEComCachedDriveInfoIterator;	// to access private data
    74 	friend class TDriveInfo_StateAccessor; // for testing
    75 	};
    76 
    77 
    78 /** Iterator which return only valid drives.
    79 
    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.
    83 */
    84 class TEComCachedDriveInfoIterator
    85 	{
    86 public:
    87 	TEComCachedDriveInfoIterator(const CEComCachedDriveInfo& aCachedDriveInfo);
    88 
    89 	void First(void);
    90 	void Next(void);
    91 	void Last(void);
    92 	void Prev(void);
    93 	TBool SetPos(const TInt aDrive);
    94 	TBool InRange(void) const;
    95 
    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;
   101 
   102 private:
   103 	const TFixedArray<TEComDrvFlags, KMaxDrives>& iDriveAttr;
   104 	TInt  iIndex;
   105 	};
   106 
   107 #endif // DRIVEINFO_H