os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/DriveInfo.h
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) 2006-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
// Declaration for CEcomCachedDriveInfo class
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalComponent
sl@0
    21
*/
sl@0
    22
sl@0
    23
#ifndef DRIVEINFO_H
sl@0
    24
#define DRIVEINFO_H
sl@0
    25
sl@0
    26
#include <e32std.h>
sl@0
    27
#include <f32file.h>
sl@0
    28
sl@0
    29
/** A set of bit flags representing drive attributes of interest
sl@0
    30
 to ECOM */
sl@0
    31
enum TEComDrvAttr
sl@0
    32
	{
sl@0
    33
	// No scanning performed on 3 kinds of drives
sl@0
    34
	// 1. discovery disabled by licensees, 2. remote (network) drive,
sl@0
    35
	//    and 3. substituted drive. 
sl@0
    36
	EEComDrvAttrNoDiscovery		= 0x1,
sl@0
    37
sl@0
    38
	// plug-ins on removable media needs extra validation
sl@0
    39
	EEComDrvAttrRemovable		= 0x2,
sl@0
    40
sl@0
    41
	EEComDrvAttrReadOnlyInternal= 0x4,
sl@0
    42
sl@0
    43
	// Custom resolver cache cares about this
sl@0
    44
	EEComDrvAttrWritable		= 0x8
sl@0
    45
	};
sl@0
    46
sl@0
    47
/** A struct to store the driveNumber and TEComDrvAttr of a drive. */
sl@0
    48
struct TEComDrvFlags
sl@0
    49
	{
sl@0
    50
	TUint32 iFlags;
sl@0
    51
	TInt32	iDrvNumber;
sl@0
    52
	};
sl@0
    53
sl@0
    54
/** class to keep track of drive attributes of interest to ECOM.
sl@0
    55
 */
sl@0
    56
class CEComCachedDriveInfo : public CBase
sl@0
    57
	{
sl@0
    58
public:
sl@0
    59
	static CEComCachedDriveInfo* NewL(RFs& aFs);
sl@0
    60
	TBool DriveIsReadOnlyInternalL(const TInt aDrive) const;
sl@0
    61
	TBool DriveIsRemovableL(const TInt aDrive) const;
sl@0
    62
	TBool DriveIsWritableL(const TInt aDrive) const;
sl@0
    63
sl@0
    64
private:
sl@0
    65
	CEComCachedDriveInfo();
sl@0
    66
	void ConstructL(RFs& aFs, TUint32 aDiscoveryDisabledMask);
sl@0
    67
sl@0
    68
private:
sl@0
    69
	static TFixedArray<TEComDrvFlags, KMaxDrives> iDriveAttr;
sl@0
    70
	static TInt  iLastIndex;
sl@0
    71
	static TBool iInitialized;
sl@0
    72
sl@0
    73
	friend class TEComCachedDriveInfoIterator;	// to access private data
sl@0
    74
	friend class TDriveInfo_StateAccessor; // for testing
sl@0
    75
	};
sl@0
    76
sl@0
    77
sl@0
    78
/** Iterator which return only valid drives.
sl@0
    79
sl@0
    80
After instantiation, user must call either First() or Last()
sl@0
    81
to set the initial position and check InRange() before calling
sl@0
    82
the methods to access the drive number and attributes.
sl@0
    83
*/
sl@0
    84
class TEComCachedDriveInfoIterator
sl@0
    85
	{
sl@0
    86
public:
sl@0
    87
	TEComCachedDriveInfoIterator(const CEComCachedDriveInfo& aCachedDriveInfo);
sl@0
    88
sl@0
    89
	void First(void);
sl@0
    90
	void Next(void);
sl@0
    91
	void Last(void);
sl@0
    92
	void Prev(void);
sl@0
    93
	TBool SetPos(const TInt aDrive);
sl@0
    94
	TBool InRange(void) const;
sl@0
    95
sl@0
    96
	TDriveNumber DriveNumber(void) const;
sl@0
    97
	TDriveUnit	DriveUnit(void) const;
sl@0
    98
	TBool DriveIsReadOnlyInternal(void) const;
sl@0
    99
	TBool DriveIsRemovable(void) const;
sl@0
   100
	TBool DriveIsWritable(void) const;
sl@0
   101
sl@0
   102
private:
sl@0
   103
	const TFixedArray<TEComDrvFlags, KMaxDrives>& iDriveAttr;
sl@0
   104
	TInt  iIndex;
sl@0
   105
	};
sl@0
   106
sl@0
   107
#endif // DRIVEINFO_H