os/kernelhwsrv/kernel/eka/include/drivers/locmedia.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1998-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 the License "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 // e32\include\drivers\locmedia.h
    15 // 
    16 //
    17 
    18 #ifndef LOCMEDIA_H
    19 #define LOCMEDIA_H
    20 #include <plat_priv.h>
    21 #include <d32locd.h>
    22 
    23 #if defined(_DEBUG) && defined(__DEMAND_PAGING__)
    24 #define __CONCURRENT_PAGING_INSTRUMENTATION__
    25 #endif
    26 #if defined(_DEBUG) && defined(__DEMAND_PAGING__)
    27 #define __DEMAND_PAGING_BENCHMARKS__
    28 #endif
    29 
    30 #ifdef __WINS__
    31 	#define __EMULATOR_DMA_SUMULATION__
    32 #endif
    33 
    34 /**
    35 @publishedPartner
    36 @released
    37 
    38 A media driver priority value.
    39 
    40 The value can be returned by a media driver's PDD factory Info() function,
    41 and allows Symbian OS to decide the order in which media drivers are to be opened.
    42 
    43 The value is relative to the other media driver priority values.
    44 
    45 @see DPhysicalDevice::Info()
    46 */
    47 const TInt KMediaDriverPriorityHigh=2;
    48 
    49 
    50 
    51 
    52 /**
    53 @publishedPartner
    54 @released
    55 
    56 A media driver priority value.
    57 
    58 The value can be returned by a media driver's PDD factory Info() function,
    59 and allows Symbian OS to decide the order in which media drivers are to be opened.
    60 
    61 The value is relative to the other media driver priority values, and is
    62 the one most commonly used.
    63 
    64 @see DPhysicalDevice::Info()
    65 */
    66 const TInt KMediaDriverPriorityNormal=1;
    67 
    68 
    69 
    70 
    71 /**
    72 @publishedPartner
    73 @released
    74 
    75 A media driver priority value.
    76 
    77 The value can be returned by a media driver's PDD factory Info() function,
    78 and allows Symbian OS to decide the order in which media drivers are to be opened.
    79 
    80 The value is relative to the other media driver priority values.
    81 
    82 @see DPhysicalDevice::Info()
    83 */
    84 const TInt KMediaDriverPriorityLow=0;
    85 
    86 
    87 
    88 
    89 /**
    90 @publishedPartner
    91 @released
    92 
    93 Media driver interface major version number.
    94 */
    95 const TInt KMediaDriverInterfaceMajorVersion=1;
    96 
    97 
    98 
    99 
   100 /**
   101 @publishedPartner
   102 @released
   103 
   104 Media driver interface minor version number.
   105 */
   106 const TInt KMediaDriverInterfaceMinorVersion=0;
   107 
   108 
   109 
   110 
   111 
   112 /**
   113 @publishedPartner
   114 @released
   115 
   116 Media driver interface build number.
   117 */
   118 const TInt KMediaDriverInterfaceBuildVersion=160;
   119 
   120 
   121 
   122 
   123 /**
   124 @publishedPartner
   125 @released
   126 */
   127 const TInt KMediaDriverDeferRequest=1;
   128 
   129 
   130 
   131 
   132 /**
   133 @internalTechnology
   134 */
   135 #define __TRACE_TIMING(x)
   136 //#define __TRACE_TIMING(x) *(TInt*)0x63000ff0=x
   137 
   138 /**
   139 @internalComponent
   140 */
   141 NONSHARABLE_CLASS(DLocalDriveFactory) : public DLogicalDevice
   142 	{
   143 public:
   144 	DLocalDriveFactory();
   145 	virtual TInt Install();
   146 	virtual void GetCaps(TDes8 &aDes) const;
   147 	virtual TInt Create(DLogicalChannelBase*& aChannel);
   148 	};
   149 
   150 class TLocDrv;
   151 class DLocalDrive;
   152 
   153 /**
   154 @internalComponent
   155 */
   156 NONSHARABLE_CLASS(TLocalDriveCleanup) : public TThreadCleanup
   157 	{
   158 public:
   159 	TLocalDriveCleanup();
   160 	virtual void Cleanup();
   161 	inline DLocalDrive& LocalDrive();
   162 	};
   163 
   164 
   165 
   166 class TLocDrvRequest;
   167 class DPrimaryMediaBase;
   168 
   169 /**
   170 @publishedPartner
   171 @released
   172 
   173 This class is strictly internal to Symbian; the only part of this class that
   174 is publicly exposed to partners is the TRequestId enum.
   175 
   176 @see DLocalDrive::TRequestId
   177 */
   178 NONSHARABLE_CLASS(DLocalDrive) : public DLogicalChannelBase
   179 	{
   180 public:
   181 	/**
   182 	Identifies the specific local drive operation.
   183 	*/
   184 	enum TRequestId
   185 		{
   186 		/**
   187 		Requests information about the size, type, and attributes of the media.
   188 		*/
   189 		ECaps=0,
   190 		
   191 		/**
   192 		Requests an asynchronous read from the media device.
   193 		*/
   194 		ERead=1,
   195 		
   196 		/**
   197 		Requests an asynchronous write to the media device.
   198 		*/
   199 		EWrite=2,
   200 		
   201 		/**
   202 		Requests the formatting of a section of the media
   203 		*/
   204 		EFormat=3,
   205 		
   206 		/**
   207 		A request to expand the total size of the media.
   208 		*/
   209 		EEnlarge=4,
   210 		
   211 		/**
   212 		A request to reduce the total size of the media.
   213 		*/
   214 		EReduce=5,
   215 		
   216 		/**
   217 		A request to force a remount of the media.
   218 		*/
   219 		EForceMediaChange=6,
   220 		
   221 		/**
   222 		Requests an attempt to lock the media with a password.
   223 		*/
   224 		EPasswordLock=7,
   225 		
   226 		/**
   227 		Requests an attempt to unlock the media.
   228 		*/
   229 		EPasswordUnlock=8,
   230 		
   231 		/**
   232 		Requests an attempt to remove the password from the media.
   233 		*/
   234 		EPasswordClear=9,
   235 		
   236 		/**
   237 		Requests an read of the password store.
   238 		*/
   239 		EReadPasswordStore=10,
   240 		
   241 		/**
   242 		Requests a write of the password store.
   243 		*/
   244 		EWritePasswordStore=11,
   245 		
   246 		/** 
   247 		A request to get the length of the password store.
   248 		*/
   249 		EPasswordStoreLengthInBytes=12,
   250 		/** 
   251 		A Control IO request
   252 		*/
   253 		EControlIO=13,
   254 		/** 
   255 		A request to force an erase of the password from the media
   256 		*/
   257 		EPasswordErase=14,
   258 
   259 		/** 
   260 		A delete notification from the file system
   261 		*/
   262 		EDeleteNotify=15,
   263 
   264 		/** 
   265 		A request for information on the last error
   266 		*/
   267 		EGetLastErrorInfo=16,
   268 
   269 		EFirstReqNumberReservedForPaging=17,
   270 		// DO NOT REUSE ANY OF THE REQUEST NUMBERS BETWEEN THIS AND THE LAST RESERVED REQ NUMBER
   271 		// ALSO DO NOT INSERT ANY REQUEST NUMBERS BEFORE THIS, AS THIS WILL BE A COMPATIBILITY BREEAK
   272 		ELastReqNumberReservedForPaging=31,
   273 
   274 		/**
   275 		Query device 
   276 		*/
   277 		EQueryDevice=32,
   278 
   279 		};
   280 public:
   281 	DLocalDrive(); 
   282 	~DLocalDrive();
   283 public:
   284 	virtual TInt DoCreate(TInt aUnit, const TDesC8* anInfo, const TVersion& aVer); /**< @internalComponent */
   285 	virtual TInt Request(TInt aFunction, TAny* a1, TAny* a2);                      /**< @internalComponent */
   286 public:
   287 	void NotifyChange(DPrimaryMediaBase& aPrimaryMedia, TBool aMediaChange);
   288 public:
   289 	inline void Deque();                 /**< @internalComponent */
   290 
   291 private:
   292 #ifdef __DEMAND_PAGING__
   293 	TInt LockMountInfo(DPrimaryMediaBase& aPrimaryMedia, TLocDrvRequest& aReq);
   294 	void UnlockMountInfo(DPrimaryMediaBase& aPrimaryMedia);
   295 #endif
   296 	TInt ReadPasswordData(TLocDrvRequest& aReq, TLocalDrivePasswordData& aPswData, TMediaPassword& aOldPasswd, TMediaPassword& aNewPasswd);
   297 
   298 public:
   299 	TLocDrv* iDrive;							/**< @internalComponent */
   300 	SDblQueLink iLink;							/**< @internalComponent */
   301 	TClientDataRequest<TBool>* iNotifyChangeRequest;	/**< @internalComponent */
   302 	TLocalDriveCleanup iCleanup;				 /**< @internalComponent */
   303 	};
   304 
   305 /**
   306 @internalComponent
   307 */
   308 inline DLocalDrive& TLocalDriveCleanup::LocalDrive()
   309 	{ return *_LOFF(this,DLocalDrive,iCleanup); }
   310 
   311 
   312 
   313 
   314 /**
   315 @publishedPartner
   316 @released
   317 
   318 A class that encapsulates the request information received from the client,
   319 and gives the media driver access to the request ID and other associated
   320 parameters, such as the request length, offset, the requesting thread,
   321 source and destination address etc.
   322 
   323 An object of this type is passed to DMediaDriver::Request().
   324 
   325 @see DMediaDriver::Request()
   326 */
   327 class TLocDrvRequest : public TThreadMessage
   328 	{
   329 public:
   330 
   331     /** 
   332 	@internalComponent
   333     */
   334 	enum TFlags
   335 		{
   336 		EWholeMedia=1,
   337 		EAdjusted=2,
   338 		EPhysAddr=0x04,
   339 		EPaging=0x08,				// a paging request
   340 		EBackgroundPaging=0x10,		// a background paging request. @see DMediaPagingDevice::Write()
   341 		ECodePaging=0x20,			// a code paging request
   342 		EDataPaging=0x40,			// a data paging request
   343 		ETClientBuffer=0x80,		// RemoteDes() points to a TClientBuffer
   344 		EKernelBuffer=0x100,		// RemoteDes() points to a kernel-side buffer
   345 		};
   346 public:
   347     
   348     /**
   349     Gets a reference to the object containing the request information.
   350     
   351     @return The request information.
   352     */
   353 	inline static TLocDrvRequest& Get()
   354 		{return (TLocDrvRequest&)Kern::Message();}
   355 	
   356 		
   357     /**
   358     Gets the request ID.
   359     
   360     For media drivers, this is one of the DLocalDrive::TRequestId enumerated values.
   361     
   362     @return The request ID.
   363     
   364     @see DLocalDrive::TRequestId
   365     */
   366 	inline TInt& Id()
   367 		{return *(TInt*)&iValue;}
   368 		
   369 		
   370     /**
   371     Gets the position on the media on which the request operates. 
   372     
   373     This applies to operations ERead, EWrite and EFormat.
   374 
   375     Note that the partition offset is taken into account by the underlying
   376     local media subsystem.
   377     
   378     @return The position on the media.
   379     
   380     @see TRequestId::ERead
   381     @see TRequestId::EWrite
   382     @see TRequestId::EFormat
   383     */		
   384 	inline Int64& Pos()
   385 		{return *(Int64*)&iArg[0];}
   386 	
   387 	
   388 	/**
   389 	Gets the length associated with the operation.
   390 	
   391 	This is the number of bytes associated with the media request.
   392 	It applies to operations ERead, EWrite and EFormat.
   393 	
   394 	@return The length, in bytes.
   395 	
   396     @see TRequestId::ERead
   397     @see TRequestId::EWrite
   398     @see TRequestId::EFormat
   399 	*/
   400 	inline Int64& Length()
   401 		{return *(Int64*)&iArg[2];}
   402 		
   403 	
   404 	/**
   405 	Gets a pointer to the remote thread that requested the operation.
   406 	
   407 	This may be used to access the data to be read from the remote thread's process,
   408 	or the area to which data is to be written in the remote thread's process.
   409 	However, it is recommended that	such operations be performed
   410 	using ReadRemote() and WriteRemote()
   411 	
   412 	@return A reference to a pointer to the remote thread.
   413 	
   414 	@see TLocDrvRequest::ReadRemote()
   415 	@see TLocDrvRequest::WriteRemote()
   416 	*/
   417 	inline DThread*& RemoteThread()
   418 		{return *(DThread**)&iArg[4];}
   419 		
   420 		
   421 	/**
   422 	Gets a pointer to the descriptor in the remote thread's process that
   423 	contains the data to be read, or is the target for data to be written.
   424 	
   425     However, it is recommended that such read or write operations be performed
   426     using ReadRemote() and WriteRemote().
   427     
   428     @return A reference to a pointer to the remote descriptor.
   429 
   430     @see TLocDrvRequest::ReadRemote()
   431 	@see TLocDrvRequest::WriteRemote()
   432 	*/	
   433 	inline TAny*& RemoteDes()
   434 		{return *(TAny**)&iArg[5];}
   435 		
   436 		
   437     /**
   438     Gets the offset within the descriptor in the remote thread's process.
   439     
   440     @return The offset within the descriptor.
   441     */
   442 	inline TInt& RemoteDesOffset()
   443 		{return *(TInt*)&iArg[6];}
   444 		
   445 		
   446 	/**
   447 	@internalComponent
   448 	*/
   449 	inline TInt& Flags()
   450 		{return *(TInt*)&iArg[7];}
   451 		
   452 		
   453 	/**
   454 	@internalComponent
   455 	*/
   456 	inline TLocDrv*& Drive()
   457 		{return *(TLocDrv**)&iArg[8];}
   458 		
   459 		
   460 	/**
   461 	@internalComponent
   462 	*/
   463 	inline TInt& DriverFlags()
   464 		{return *(TInt*)&iArg[9];}
   465 
   466 
   467 	/**
   468 	Returns true if Physical memory addresses are available for this TLocDrvRequest.
   469 	@return ETrue if a physical memory address is available.
   470 	*/
   471 	inline TBool IsPhysicalAddress()
   472 		{return Flags() & EPhysAddr;}
   473 public:
   474 	TInt ProcessMessageData(TAny* args);
   475 	void CloseRemoteThread();
   476 	IMPORT_C TInt ReadRemote(TDes8* aDes, TInt anOffset);
   477 	IMPORT_C TInt ReadRemote(const TAny* aSrc, TDes8* aDes);
   478 	IMPORT_C TInt ReadRemoteRaw(TAny* aDes, TInt aSize);
   479 	IMPORT_C TInt WriteRemote(const TDesC8* aDes, TInt anOffset);
   480 	IMPORT_C TInt WriteRemoteRaw(const TAny* aSrc, TInt aSize);
   481 	IMPORT_C TInt CheckAndAdjustForPartition();
   482 #if !defined(__WINS__)
   483 	IMPORT_C TInt WriteToPageHandler(const TAny* aSrc, TInt aSize, TInt anOffset);
   484 	IMPORT_C TInt ReadFromPageHandler(TAny* aDst, TInt aSize, TInt anOffset);
   485 #endif // __WINS__
   486 	IMPORT_C TInt GetNextPhysicalAddress(TPhysAddr& aPhysAddr, TInt& aLength);
   487 	};
   488 
   489 
   490 
   491 
   492 /**
   493 @internalComponent
   494 */
   495 inline void DLocalDrive::Deque()
   496 	{ iLink.Deque(); }
   497 
   498 
   499 
   500 
   501 /**
   502 @publishedPartner
   503 @released
   504 
   505 Defines a structure used to contain information that describes an individual
   506 partition. 
   507 
   508 There is one of these for each partition that exists on a media device.
   509 
   510 @see TPartitionInfo
   511 */
   512 class TPartitionEntry
   513 	{
   514 public:
   515      
   516     /**
   517     The start address of the partition, described as a relative offset,
   518     in bytes, from the start of the media.
   519     
   520     This value is used by the local media subsystem to calculate
   521     the absolute address on the media whenever an access such as a Read,
   522     Write or Format request is made.
   523     */
   524 	Int64 iPartitionBaseAddr;
   525  
   526  	
   527 	/**
   528 	The length of the partition, in bytes.
   529 	*/
   530 	Int64 iPartitionLen;
   531 
   532 	
   533 	/**
   534 	The Boot Indicator record, as described in the Master Boot Record on
   535 	FAT Partitioned devices.
   536 
   537 	This is currently unused by the local media subsystem.
   538 	*/
   539 	TUint16 iBootIndicator;
   540 	
   541 	
   542 	/**
   543 	Describes the type of partition.
   544 	
   545 	The File Server uses this to decide the type of filesystem to be mounted
   546 	on the partition. 
   547 	
   548 	Symbian OS supports many partition types, as defined in partitions.h.
   549 	You are, however, free to invent your own partition type, on which
   550 	you could, for example, mount your own filesystem. However, make sure 
   551 	that your partition type does not clash with an existing partition type.
   552 	
   553 	Note that a media driver does not does not have to verify that
   554 	the partition actually contains a file system of this type; it just sets
   555 	this value to indicate the intended use for this partition.
   556 	*/
   557 	TUint16 iPartitionType;
   558 	};
   559 
   560 
   561 
   562 
   563 /**
   564 @publishedPartner
   565 @released
   566 
   567 A constant that defines the maximum number of partitions that can exist on
   568 a media device.
   569 
   570 @see TPartitionInfo::iPartitionCount
   571 */
   572 const TInt KMaxPartitionEntries=0x10;
   573 
   574 
   575 
   576 
   577 /**
   578 @publishedPartner
   579 @released
   580 
   581 Contains partition information for a media device.
   582 
   583 An object of this type is passed to the media driver's implementation of
   584 DMediaDriver::PartitionInfo() to be filled in.
   585 
   586 @see DMediaDriver::PartitionInfo()
   587 */
   588 class TPartitionInfo
   589 	{
   590 public:
   591 
   592     /**
   593     Default constructor that clears this object's memory to binary zeroes.
   594     */
   595 	TPartitionInfo();
   596 public:
   597 
   598     /**
   599     The total size of the media, in bytes.
   600     */
   601 	Int64 iMediaSizeInBytes;
   602 	
   603 	
   604 	/**
   605 	The total number of partitions that exist on the media.
   606 	
   607 	This is always less than or equal to KMaxPartitionEntries.
   608 	
   609     @see KMaxPartitionEntries
   610 	*/
   611 	TInt iPartitionCount;
   612 	
   613 	
   614 	/**
   615 	Information that describes each individual partition on the device.
   616 	
   617 	Each partition is represented by an array of TPartitionEntry objects. 
   618 	Each entry must be created in the order of the start offset, so that 
   619 	iEntry[0] specifies the partition with
   620 	the smallest iPartitionBaseAddr value.
   621 	
   622 	@see TPartitionEntry::iPartitionBaseAddr
   623 	@see TPartitionEntry
   624 	*/
   625 	TPartitionEntry iEntry[KMaxPartitionEntries];
   626 	};
   627 
   628 
   629 
   630 
   631 class DMedia;
   632 class DPrimaryMediaBase;
   633 class DMediaDriver;
   634 #ifdef __DEMAND_PAGING__
   635 class DFragmentationPagingLock;
   636 #endif
   637 class DDmaHelper;
   638 
   639 /**
   640 @internalComponent
   641 */
   642 class TLocDrv : public TPartitionEntry
   643 	{
   644 public:
   645 	TLocDrv(TInt aDriveNumber);
   646 public:
   647 	inline TInt Connect(DLocalDrive* aLocalDrive);
   648 	inline void Disconnect(DLocalDrive* aLocalDrive);
   649 	inline TInt Request(TLocDrvRequest& aRequest);
   650 public:
   651 	TInt iDriveNumber;
   652 	DMedia* iMedia;
   653 	DPrimaryMediaBase* iPrimaryMedia;
   654 	TInt iPartitionNumber;
   655 	TErrorInfo iLastErrorInfo;
   656 #ifdef __DEMAND_PAGING__
   657 	TInt iSpare0;
   658 	TUint8 iPagingDrv;
   659 	TUint8 iSpare1;
   660 	TUint8 iSpare2;
   661 	TUint8 iSpare3;
   662 #endif
   663 	DDmaHelper* iDmaHelper;
   664 	};
   665 
   666 /**
   667 @publishedPartner
   668 @released
   669 
   670 Kernel-side representation of a media entity. A DMedia object instantiates a 
   671 media driver to provide access to the physical media.
   672 
   673 Multiple DMedia objects may be required by some devices, e.g. multi-media cards
   674 with combined SRAM and Flash or cards containing user and protected areas.
   675 */
   676 class DMedia : public DBase
   677 	{
   678 public:
   679 	/**
   680 	Declaration of all legal states for the media driver.
   681 	*/
   682 	enum TMediaState
   683 		{
   684 		/** 
   685 		Media is powered down and the media drivers are closed. This is the 
   686 		initial state when a media driver is created and the final state when
   687 		the driver is closed.
   688 		*/
   689 		EClosed=0,
   690 
   691 		/** Media driver has started powerup sequence. */
   692 		EPoweringUp1=1,
   693 
   694 		/** Media is being opened. */
   695 		EOpening=2,
   696 
   697 		/** Media is open and the partition information is being read. */
   698 		EReadPartitionInfo=3,
   699 		
   700 		/** The media driver is open and ready to accept commands. */
   701 		EReady=4,
   702 
   703 		/** Not used. */
   704 		EAborted=5,
   705 
   706 		/** Powering up with media drivers open. */
   707 		EPoweringUp2=6,
   708 
   709 		/** Not used. */
   710 		ERecovering=7,
   711 
   712 		/** The media is powered down, but the media driver still exists. */
   713 		EPoweredDown=8 // powered down with media drivers open
   714 		};
   715 
   716 public:
   717 	IMPORT_C virtual TInt Create(TMediaDevice aDevice, TInt aMediaId, TInt);
   718 	void Close();
   719 public:
   720 	inline Int64 MediaLenInBytes();
   721 	inline TMediaDevice DeviceType();
   722 	inline TInt PartitionCount();
   723 	inline Int64 PartitionBaseAddr(TInt aPartition);
   724 	inline Int64 PartitionLen(TInt aPartition);
   725 public:
   726     /** Not used. */
   727 	static TInt MediaCallBack(TAny *aPtr);
   728 public:
   729 	/**
   730 	The unique ID associated with this media entity. 
   731 	ID allocated when the media is first created.
   732 	
   733 	@see LocDrv::RegisterMediaDevice
   734 	*/
   735 	TInt iMediaId;
   736 
   737 	/**
   738 	The unique ID for the device.
   739 
   740 	@see TMediaDevice
   741 	*/
   742 	TMediaDevice iDevice;
   743 
   744 	/**
   745 	Partition information for the media device.
   746 
   747 	@see TPartitionInfo
   748 	*/
   749 	TPartitionInfo iPartitionInfo;
   750 
   751 	/**
   752 	The media's physical device driver.
   753 
   754 	@see DMediaDriver
   755 	*/
   756 	DMediaDriver *iDriver;
   757 
   758 	/**
   759 	Mount information for the media device.
   760 	
   761 	@see TMountInfoData
   762 	*/
   763 	TMountInfoData iMountInfo;
   764 	};
   765 
   766 #ifdef __DEMAND_PAGING__
   767 class DFragmentationPagingLock;
   768 class DMediaPagingDevice;
   769 #endif
   770 
   771 
   772 /**
   773 @publishedPartner
   774 @released
   775 The DPrimaryMedia base class which is derived from DMedia class is responsible for controlling the overall state of the media 
   776 (for example whether the power is applied or the partition information has been determined and so on). 
   777 Each media driver or extension that registers for a set of local drives also has to register for a set of DMedia objects at the same time.
   778 This media set must contain just one primary media object. 
   779 The driver that performs drive registration is responsible for creating the primary media object itself, 
   780 which it then passes over to the local media sub-system for ownership. 
   781 If further media objects are specified in the set, then the local media sub-system itself creates DMedia instances for these on behalf of the driver.
   782 */
   783 class DPrimaryMediaBase : public DMedia
   784 	{
   785 public:
   786 	enum TMsgId
   787 		{
   788 		EConnect=-1,
   789 		EDisconnect=-2,
   790 		};
   791 
   792 	enum TForceMediaChangeFlags
   793 		{
   794 		/**
   795 		Specifying zero as the flag for DPrimaryMediaBase::ForceMediaChange(), 
   796 		results in all media drivers associated with the primary media being 
   797 		closed and reopened.
   798 		All pending requests on all logical drives associated with the primary 
   799 		media will be cancelled.
   800 
   801 		@see DPrimaryMediaBase::ForceMediaChange()
   802 		@see RLocalDrive::ForceMediaChange()
   803 		*/
   804 		KForceMediaChangeReOpenAllMediaDrivers = 0,
   805 		/**
   806 		This flag is used to simulate ejecting and re-inserting the media.
   807 		All pending requests on all logical drives associated with the primary 
   808 		media will be cancelled.
   809 		N.B. This is asynchronous in behaviour i.e. the caller will need to wait 
   810 		for (two) media change notifications before the drive is ready for use
   811 
   812 		@see DPBusPrimaryMedia::ForceMediaChange()
   813 		@see RLocalDrive::ForceMediaChange()
   814 		*/
   815 		KMediaRemountForceMediaChange = 0x00000001,
   816 		/**
   817 		This flag is used to force the media driver for the specified logical 
   818 		drive to be closed and reopened.
   819 		It should not affect any pending requests on other logical drives 
   820 		associated with the primary media.
   821 
   822 		@see DPrimaryMediaBase::ForceMediaChange()
   823 		@see RLocalDrive::ForceMediaChange()
   824 		*/
   825 		KForceMediaChangeReOpenMediaDriver = 0x80000000
   826 		};
   827 
   828 public:
   829 	IMPORT_C DPrimaryMediaBase();
   830 public:
   831 	// provided by implementation
   832 	IMPORT_C virtual TInt Create(TMediaDevice aDevice, TInt aMediaId, TInt aLastMediaId);
   833 	IMPORT_C virtual TInt Connect(DLocalDrive* aLocalDrive);
   834 	IMPORT_C virtual void Disconnect(DLocalDrive* aLocalDrive);
   835 	IMPORT_C virtual TInt Request(TLocDrvRequest& aRequest);
   836 	IMPORT_C virtual TInt QuickCheckStatus();
   837 	IMPORT_C virtual TInt ForceMediaChange(TInt aMode);
   838 	IMPORT_C virtual TInt InitiatePowerUp();
   839 	IMPORT_C virtual TInt DoInCritical();
   840 	IMPORT_C virtual void DoEndInCritical();
   841 	IMPORT_C virtual void DeltaCurrentConsumption(TInt aCurrent);
   842 	IMPORT_C virtual void DefaultDriveCaps(TLocalDriveCapsV2& aCaps);
   843 	IMPORT_C virtual TBool IsRemovableDevice(TInt& aSocketNum);
   844 public:
   845 	// used by implementation
   846 	IMPORT_C void NotifyMediaChange();
   847 	IMPORT_C void NotifyPowerDown();
   848 	IMPORT_C void NotifyEmergencyPowerDown();
   849 	IMPORT_C void NotifyPsuFault(TInt anError);
   850 	IMPORT_C void NotifyMediaPresent();
   851 	IMPORT_C void PowerUpComplete(TInt anError);
   852 public:
   853 	IMPORT_C virtual void HandleMsg(TLocDrvRequest& aRequest);
   854 	IMPORT_C virtual TInt DoRequest(TLocDrvRequest& aRequest);
   855 	TInt OpenMediaDriver();
   856 	void CloseMediaDrivers(DMedia* aMedia = NULL);
   857 	void StartOpenMediaDrivers();
   858 	void OpenNextMediaDriver();
   859 	void DoOpenMediaDriverComplete(TInt anError);
   860 	void DoPartitionInfoComplete(TInt anError);
   861 	void CompleteCurrent(TInt anError);
   862 	void CompleteRequest(TLocDrvRequest& aMsg, TInt aResult);
   863 	IMPORT_C void RunDeferred();
   864 	void SetClosed(TInt anError);
   865 	void NotifyClients(TBool aMediaChange,TLocDrv* aLocDrv=NULL);
   866 	TInt InCritical();
   867 	void EndInCritical();
   868 	void UpdatePartitionInfo();
   869 	void MediaReadyHandleRequest();
   870 	TInt SendReceive(TLocDrvRequest& aReq, TLinAddr aLinAddress = NULL);
   871 
   872 #ifdef __DEMAND_PAGING__
   873 	TInt PinSendReceive(TLocDrvRequest& aReq, TLinAddr aStart = NULL);
   874 	TInt PinFragmentSendReceive(TLocDrvRequest& aReq, TLinAddr aLinAddress, TInt aLength);
   875 
   876 	TBool PagingMediaPinAddress(TLinAddr aLinAddress, TInt aSize);
   877 	void PagingMediaUnpinAddress();
   878 #endif
   879 
   880 #ifdef __DEMAND_PAGING__
   881 	void RequestCountInc();
   882 	void RequestCountDec();
   883 #endif
   884 
   885 public:
   886 	TInt iLastMediaId;					/**< @internalComponent */
   887 	TMessageQue iMsgQ;
   888 	TDfcQue* iDfcQ;
   889 	SDblQue iConnectionQ;				/**< @internalComponent */
   890 	TMessageQue iDeferred;				/**< @internalComponent */
   891 	TMessageQue iWaitMedChg;			/**< @internalComponent */
   892 	TInt iState;						/**< @internalComponent */
   893 	TInt iCritical;						/**< @internalComponent */
   894 	TLocDrvRequest* iCurrentReq;
   895 	TDfc iAsyncDfc;						/**< @internalComponent */
   896 	TInt iAsyncErrorCode;				/**< @internalComponent */
   897 	RPhysicalDeviceArray iPhysDevArray;	/**< @internalComponent */
   898 
   899 	class DBody;
   900 	DBody* iBody;						/**< @internalComponent */
   901 
   902 	TInt iNextMediaId;					/**< @internalComponent */
   903 	TInt iTotalPartitionsOpened;		/**< @internalComponent */
   904 	TInt iMediaDriversOpened;			/**< @internalComponent */
   905 	DMediaDriver* iNextMediaDriver;		/**< @internalComponent */
   906 
   907 
   908 #ifdef __DEMAND_PAGING__
   909 	// keep the size of class as it is used as base for PBus and may not want to bother building DP specific version.
   910 	TUint8 iPagingMedia;				/**< @internalComponent */
   911 	TUint8 iDataPagingMedia;			/**< @internalComponent */
   912 	TUint8 iRomPagingMedia;				/**< @internalComponent */
   913 	TUint8 iRunningDeferred;			/**< @internalComponent */
   914 #else
   915 	TInt iRunningDeferred;				/**< @internalComponent */
   916 #endif
   917 	};
   918 
   919 #ifdef __DEMAND_PAGING__
   920 
   921 /**
   922 @internalComponent
   923 @prototype
   924 */
   925 NONSHARABLE_CLASS(DMediaPagingDevice) : public DPagingDevice
   926 	{
   927 public:
   928 	enum TPagingRequestId
   929 		{
   930 		/** 
   931 		Identifies any middle fragment of a Write request on a partition of a media that supports paging.
   932 		@deprecated
   933 		*/
   934 		EWriteRequestFragment		=	DLocalDrive::EFirstReqNumberReservedForPaging,
   935 
   936 		/** 
   937 		Identifies the last fragment of a Write request on a partition of a media that supports paging.
   938 		@deprecated
   939 		*/
   940 		EWriteRequestFragmentLast	=	DLocalDrive::EFirstReqNumberReservedForPaging+1,
   941 
   942 		/** 
   943 		Request for paging in (read) data from the ROM store area.
   944 		*/
   945 		ERomPageInRequest			=	DLocalDrive::EFirstReqNumberReservedForPaging+2,
   946 
   947 		/** 
   948 		Request for paging in (read) data from the code store area.
   949 		*/
   950 		ECodePageInRequest			=	DLocalDrive::EFirstReqNumberReservedForPaging+3,
   951 
   952         /**
   953         Provided to allow the following compile time assert.
   954         */
   955 		EPagingRequestHighWaterMark
   956 		};
   957     __ASSERT_COMPILE(EPagingRequestHighWaterMark <= DLocalDrive::ELastReqNumberReservedForPaging + 1);
   958 
   959 	enum TQueue
   960 		{
   961 		EMainQ = 0x01,
   962 		EDeferredQ=0x02
   963 		};
   964 
   965 public:
   966 	DMediaPagingDevice(DPrimaryMediaBase* aPtr);
   967 	virtual ~DMediaPagingDevice();
   968 	
   969 	// from DPagingDevice
   970 	virtual TInt Read(TThreadMessage* aReq,TLinAddr aBuffer,TUint aOffset,TUint aSize,TInt aDrvNumber);
   971 	virtual TInt Write(TThreadMessage* aReq,TLinAddr aBuffer,TUint aOffset,TUint aSize, TBool aBackground);
   972 	virtual TInt DeleteNotify(TThreadMessage* aReq,TUint aOffset,TUint aSize);
   973 
   974 	void CompleteRequest(TThreadMessage* aMsg, TInt aResult);
   975 	void SendToMainQueueDfcAndBlock(TThreadMessage* aMsg);
   976 	void SendToDeferredQ(TThreadMessage* aMsg);
   977 	inline static TBool PageInRequest(TLocDrvRequest& aReq);
   978 	inline static TBool PageOutRequest(TLocDrvRequest& aReq);
   979 	inline static TBool PagingRequest(TLocDrvRequest& aReq);
   980 public:
   981 	TMessageQue iMainQ;
   982 	TMessageQue iDeferredQ;
   983 	DPrimaryMediaBase* iPrimaryMedia;
   984 
   985 	TUint8 iEmptyingQ;
   986 	TUint8 iDeleteNotifyNotSupported;
   987 	TUint8 iSpare1;
   988 	TUint8 iSpare2;
   989 
   990 	TAny* iMountInfoDataLock;
   991 	TAny* iMountInfoDescHdrLock;
   992 	TAny* iMountInfoDescLenLock;
   993 
   994 	TInt iFirstLocalDriveNumber;
   995 	TInt iRomPagingDriveNumber;
   996 	TInt iDataPagingDriveNumber;
   997 
   998 	NFastMutex iInstrumentationLock;			// To protect instrumentation data
   999 
  1000 #ifdef __CONCURRENT_PAGING_INSTRUMENTATION__
  1001 	TUint8 iServicingROM;
  1002 	TUint8 iServicingCode;
  1003 	TUint8 iServicingDataIn;
  1004 	TUint8 iServicingDataOut;
  1005 
  1006 	SMediaROMPagingConcurrencyInfo iROMStats;
  1007 	SMediaCodePagingConcurrencyInfo iCodeStats;
  1008 	SMediaDataPagingConcurrencyInfo iDataStats;
  1009 #endif
  1010 
  1011 #ifdef __DEMAND_PAGING_BENCHMARKS__
  1012 	SPagingBenchmarkInfo iROMBenchmarkData;
  1013 	SPagingBenchmarkInfo iCodeBenchmarkData;
  1014 	SPagingBenchmarkInfo iDataInBenchmarkData;
  1015 	SPagingBenchmarkInfo iDataOutBenchmarkData;
  1016 	SMediaPagingInfo iMediaPagingInfo;
  1017 #endif
  1018 	};
  1019 
  1020 inline TBool DMediaPagingDevice::PageInRequest(TLocDrvRequest& aReq)
  1021 	{
  1022 	return 
  1023 		(aReq.Flags() & TLocDrvRequest::EPaging) && 
  1024 		(aReq.Id() == ERomPageInRequest || 
  1025 		 aReq.Id() == ECodePageInRequest || 
  1026 		 aReq.Id() == DLocalDrive::ERead);}
  1027 
  1028 inline TBool DMediaPagingDevice::PageOutRequest(TLocDrvRequest& aReq)
  1029 	{
  1030 	return 
  1031 		(aReq.Flags() & TLocDrvRequest::EPaging) && 
  1032 		(aReq.Id() == DLocalDrive::EWrite);}
  1033 
  1034 inline TBool DMediaPagingDevice::PagingRequest(TLocDrvRequest& aReq)
  1035 	{
  1036 	return (aReq.Flags() & TLocDrvRequest::EPaging);
  1037 	}
  1038 
  1039 
  1040 /**
  1041 @internalComponent
  1042 @prototype
  1043 */
  1044 class DFragmentationPagingLock: public DDemandPagingLock
  1045 	{
  1046 public:
  1047 	TInt Construct(TUint aNumPages);
  1048 	void Cleanup();
  1049 	void LockFragmentation()
  1050 		{
  1051 		__ASSERT_CRITICAL;
  1052 		__ASSERT_DEBUG(iFragmentationMutex, Kern::Fault("LOCMEDIA_H",__LINE__));
  1053 		// called in CS
  1054 		Kern::MutexWait(*iFragmentationMutex);
  1055 		}
  1056 	void UnlockFragmentation()
  1057 		{
  1058 		__ASSERT_CRITICAL;
  1059 		__ASSERT_DEBUG(iFragmentationMutex, Kern::Fault("LOCMEDIA_H",__LINE__));
  1060 		// called in CS
  1061 		Kern::MutexSignal(*iFragmentationMutex);
  1062 		}
  1063 
  1064 
  1065 public:
  1066 	TUint iFragmentGranularity;
  1067 private:
  1068 	DMutex* iFragmentationMutex; // to protect Kernel memory locking
  1069 	};
  1070 #endif //__DEMAND_PAGING__
  1071 
  1072 /**
  1073 @publishedPartner
  1074 @released
  1075 
  1076 An abstract base class for all media drivers in the local drive system.
  1077 
  1078 All media drivers, whether associated with fixed media, such as the internal
  1079 drive, or removable media, such as a PC Card or MultiMediaCard, must define
  1080 and implement a class derived from this one.
  1081 
  1082 An instance of this class is created by the media driver's PDD factory,
  1083 an instance of a class derived from DPhysicalDevice. 
  1084 
  1085 @see DPhysicalDevice::Create()
  1086 @see DPhysicalDevice
  1087 */
  1088 class DMediaDriver : public DBase
  1089 	{
  1090 public:
  1091 	IMPORT_C DMediaDriver(TInt aMediaId);
  1092 	IMPORT_C virtual ~DMediaDriver();
  1093 	IMPORT_C virtual void Close();
  1094 // Pure virtual
  1095 	IMPORT_C virtual void Disconnect(DLocalDrive* aLocalDrive, TThreadMessage* aMsg);
  1096 	
  1097 	/**
  1098 	A function called by the local media subsystem to deal with a request, 
  1099 	and which must be implemented by the media driver.
  1100 	
  1101 	@param aRequest An object that encapsulates information about the request.
  1102 	
  1103 	@return A value indicating the result:
  1104 	        KErrNone, if the request has been sucessfully initiated;
  1105 	        KErrNotSupported, if the request cannot be handled by the device;
  1106 	        KMediaDriverDeferRequest, if the request cannot be handled
  1107 	        immediately because of an outstanding request (this request will be
  1108 	        deferred until the outstanding request has completed);
  1109 	        otherwise one of the other system-wide error codes.
  1110 	*/
  1111 	virtual TInt Request(TLocDrvRequest& aRequest)=0;
  1112 
  1113 	/**
  1114 	A function called by the local media subsystem to get partition information
  1115 	for the media device.
  1116 	
  1117 	It is called once the subsystem has been notified that the media driver
  1118 	is open and has been succesfully initialised.
  1119 	
  1120 	This function must be implemented by the media driver.
  1121 	
  1122 	@param anInfo An object that, on successful return, contains
  1123 	              the partition information.
  1124 	
  1125 	@return KErrNone, if retrieval of partition information is to be
  1126 	        done asynchronously;
  1127 	        KErrCompletion, if retrieval of partition information has been
  1128 	        done synchronously, and successfully;
  1129 	        one of the other system-wide error codes, if retrieval of partition
  1130 	        information has been done synchronously, but unsuccessfully.
  1131 	*/
  1132 	virtual TInt PartitionInfo(TPartitionInfo &anInfo)=0;
  1133 
  1134 	/**
  1135 	A function called by the local media subsystem to inform the media driver
  1136 	that the device should power down.
  1137 	
  1138 	This function must be implemented by the media driver.
  1139 	*/
  1140 	virtual void NotifyPowerDown()=0;
  1141 
  1142 	/**
  1143 	A function called by the local media subsystem to inform the media driver
  1144 	that the device is to be immediately powered down.
  1145 	
  1146     This function must be implemented by the media driver.
  1147 	*/
  1148 	virtual void NotifyEmergencyPowerDown()=0;
  1149 public:
  1150 	IMPORT_C void SetTotalSizeInBytes(Int64 aTotalSizeInBytes, TLocDrv* aLocDrv=NULL);
  1151 	IMPORT_C Int64 TotalSizeInBytes();
  1152 	IMPORT_C void SetCurrentConsumption(TInt aValue);
  1153 	IMPORT_C TInt InCritical();
  1154 	IMPORT_C void EndInCritical();
  1155 	IMPORT_C void Complete(TLocDrvRequest& aRequest, TInt aResult);
  1156 	IMPORT_C void OpenMediaDriverComplete(TInt anError);
  1157 	IMPORT_C void PartitionInfoComplete(TInt anError);
  1158 public:
  1159 	DPhysicalDevice* iPhysicalDevice;/**< @internalComponent */
  1160 	Int64 iTotalSizeInBytes;         /**< @internalComponent */
  1161     TInt iCurrentConsumption;        /**< @internalComponent */
  1162 	DPrimaryMediaBase* iPrimaryMedia;/**< @internalComponent */
  1163 	TBool iCritical;                 /**< @internalComponent */
  1164 	TMountInfoData* iMountInfo;      /**< @internalComponent */
  1165 	};
  1166 
  1167 
  1168 
  1169 
  1170 /**
  1171 @publishedPartner
  1172 @released
  1173 
  1174 A structure that a media driver may find useful in its implementation,
  1175 and is used to contain the information required when registering
  1176 the media driver with the Local Media Subsystem.
  1177 
  1178 @see LocDrv::RegisterMediaDevice()
  1179 */
  1180 struct SMediaDeviceInfo
  1181 	{
  1182 	
  1183 	/**
  1184 	The unique Media ID for a device.
  1185 	
  1186     This can take one of the enumerated values defined
  1187     by the TMediaDevice enum.
  1188 	*/
  1189 	TMediaDevice iDevice;
  1190 	
  1191 	
  1192 	/**
  1193 	Specifies the number of local drive objects to be assigned to the media driver.
  1194     
  1195     Drives that support more than one partition must specify a number greater than 1.
  1196 	*/
  1197 	TInt iDriveCount;
  1198 	
  1199 	
  1200 	/**
  1201     A pointer to an array of TInt values, which define the drive numbers that
  1202     are to be allocated to each partition.
  1203     
  1204     0 signifies Drive C, 1 signifies drive D, etc. For example, to allocate
  1205     drive letters J and K, specify an array containing the values [7,8].
  1206     Note that the size of this array must be the same as the value specified
  1207     by iDriveCount.
  1208 	*/
  1209 	const TInt* iDriveList;
  1210 	
  1211 	
  1212 	/**
  1213 	Specifies the total number of DMedia objects to be associated with
  1214 	the media driver.
  1215 	
  1216 	This number includes the primary DPrimaryMedia object, plus all of
  1217 	the DMedia objects that are created for each additional drive, and
  1218 	which hold basic information about partitions.
  1219 	*/
  1220 	TInt iNumMedia; 
  1221 	
  1222 	
  1223 	/**
  1224 	A pointer to a descriptor containing the name of the media driver,
  1225 	for example: PCCard
  1226 	*/
  1227 	const TDesC* iDeviceName;
  1228 	};
  1229 
  1230 
  1231 
  1232 
  1233 /**
  1234 @publishedPartner
  1235 @released
  1236 
  1237 A set of utility functions used in the management of local media drivers.
  1238 */
  1239 class LocDrv
  1240 	{
  1241 public:
  1242 	IMPORT_C static TInt RegisterMediaDevice(TMediaDevice aDevice, TInt aDriveCount, const TInt* aDriveList, DPrimaryMediaBase* aPrimaryMedia, TInt aNumMedia, const TDesC& aName);
  1243 	IMPORT_C static TInt RegisterPasswordStore(TPasswordStore* aStore);
  1244 	IMPORT_C static TPasswordStore* PasswordStore();
  1245 #if !defined(__WINS__)
  1246 	IMPORT_C static TInt RegisterPagingDevice(DPrimaryMediaBase* aPrimaryMedia, const TInt* aPagingDriveList, TInt aDriveCount, TUint aPagingType, TInt aReadShift, TUint aNumPages);
  1247 #endif // __WINS__
  1248 	IMPORT_C static TInt RegisterDmaDevice(DPrimaryMediaBase* aPrimaryMedia,
  1249 										   TInt aMediaBlockSize, 
  1250 										   TInt aDmaMaxAddressable,
  1251 										   TInt aDmaAlignment);
  1252 	};
  1253 
  1254 /**
  1255 @internalComponent
  1256 */
  1257 inline TInt TLocDrv::Connect(DLocalDrive* aLocalDrive)
  1258 	{ return iPrimaryMedia->Connect(aLocalDrive); }
  1259 
  1260 /**
  1261 @internalComponent
  1262 */
  1263 inline void TLocDrv::Disconnect(DLocalDrive* aLocalDrive)
  1264 	{ iPrimaryMedia->Disconnect(aLocalDrive); }
  1265 
  1266 /**
  1267 @internalComponent
  1268 */
  1269 inline TInt TLocDrv::Request(TLocDrvRequest& aRequest)
  1270 	{ return iPrimaryMedia->Request(aRequest); }
  1271 
  1272 /**
  1273 Returns the length of the media, in bytes, according to the partition information.
  1274 
  1275 @return Total length of the media, in bytes.
  1276 
  1277 @see	TPartitionInfo
  1278 */
  1279 inline Int64 DMedia::MediaLenInBytes()
  1280 	{return(iPartitionInfo.iMediaSizeInBytes);}
  1281 
  1282 /**
  1283 Returns the unique media ID for this device.
  1284 
  1285 @return	The device ID that was set in the call to DMedia::Create().
  1286 		The return value will be one of the enumerators declared in TMediaDevice
  1287 
  1288 @see	TMediaDevice
  1289 */
  1290 inline TMediaDevice DMedia::DeviceType()
  1291 	{return(iDevice);}
  1292 
  1293 /**
  1294 Returns the total number of partitions that exist on the media according to the
  1295 partition information.
  1296 
  1297 This will always be less than or equal to KMaxPartitionEntries.
  1298 
  1299 @return Number of partitions that exist on the media.
  1300 
  1301 @see	KMaxPartitionEntries
  1302 @see	TPartitionInfo
  1303 */
  1304 inline TInt DMedia::PartitionCount()
  1305 	{return(iPartitionInfo.iPartitionCount);}
  1306 
  1307 /**
  1308 The start address of the partition, described as a relative offset, in bytes,
  1309 from the start of the media.
  1310 
  1311 This value is used by the local media subsystem to calculate the absolute 
  1312 address on the media whenever an access such as a Read, Write or Format request
  1313 is made.
  1314 
  1315 @param	aPartition	The partition whose start address is to be returned.
  1316 
  1317 @return	The start address of the partition.
  1318 
  1319 @see	TPartitionEntry
  1320 @see	TPartitionInfo
  1321 */
  1322 inline Int64 DMedia::PartitionBaseAddr(TInt aPartition)
  1323 	{return(iPartitionInfo.iEntry[aPartition].iPartitionBaseAddr);}
  1324 
  1325 /**
  1326 Returns the length of the partition, in bytes.
  1327 
  1328 @param	aPartition	The partition whose length is to be returned.
  1329 
  1330 @return	The length of the partition.
  1331 
  1332 @see	TPartitionEntry
  1333 @see	TPartitionInfo
  1334 */
  1335 inline Int64 DMedia::PartitionLen(TInt aPartition)
  1336 	{return(iPartitionInfo.iEntry[aPartition].iPartitionLen);}
  1337 
  1338 
  1339 /**
  1340 @internalTechnology
  1341 
  1342 A utility class for scanning MBR/EBR partition tables.
  1343 */
  1344 class TPartitionTableScanner
  1345 	{
  1346 public:
  1347 	enum {ESectorShift=9, ESectorSize=512};
  1348 	enum {EMaxNest=4};
  1349 	struct SPart
  1350 		{
  1351 		SPart(const TUint8* a);
  1352 		TUint8 iBootInd;
  1353 		TUint8 iType;
  1354 		TUint32 iRSS;
  1355 		TUint32 iSectors;
  1356 		};
  1357 	struct SEBR
  1358 		{
  1359 		TInt64 iRSS;
  1360 		TInt64 iSectors;
  1361 		};
  1362 public:
  1363 	IMPORT_C void Set(TUint8* aSectorBuffer, TPartitionEntry* aEntry, TInt aMaxPartitions, TInt64 aMediaSize);
  1364 	IMPORT_C TInt64 NextLBA();
  1365 	IMPORT_C TInt NumberOfPartitionsFound() const;
  1366 	TInt MakeEntry(const SPart& aP);
  1367 public:
  1368 	TInt64 iMediaSize;				// Total media size in sectors
  1369 	TInt64 iLBA;					// LBA currently in sector buffer
  1370 	TInt64 iFirstEBR;				// LBA of first EBR if any
  1371 	SEBR iStack[EMaxNest];
  1372 	TInt iStackPointer;
  1373 	TUint8* iSectorBuffer;			// Pointer to 512 byte area where sector data is stored
  1374 	TPartitionEntry* iFirstEntry;	// Where first scanned partition is stored
  1375 	TPartitionEntry* iNextEntry;	// Where next scanned partition will be stored
  1376 	TPartitionEntry* iLimit;		// iFirstEntry + max partitions
  1377 	};
  1378 
  1379 
  1380 
  1381 #endif