sl@0: // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of the License "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // fileserver\sfat32\inc\sl_std.h sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalTechnology sl@0: */ sl@0: sl@0: #ifndef SL_STD_H sl@0: #define SL_STD_H sl@0: sl@0: sl@0: // sl@0: // #define _DEBUG_RELEASE sl@0: // sl@0: sl@0: #include "common.h" sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include "filesystem_fat.h" sl@0: using namespace FileSystem_FAT; sl@0: sl@0: #include "common_constants.h" sl@0: #include "sl_bpb.h" sl@0: #include "fat_config.h" sl@0: #include "fat_dir_entry.h" sl@0: #include "bit_vector.h" sl@0: sl@0: sl@0: sl@0: #ifdef _DEBUG sl@0: _LIT(KThisFsyName,"EFAT32.FSY"); ///< This FSY name sl@0: #endif sl@0: sl@0: //----------------------------------------------------------------------------- sl@0: //-- FAT32 specific declarations sl@0: sl@0: const TUint32 KFat32EntryMask = 0x0FFFFFFF; sl@0: sl@0: //----------------------------------------------------------------------------- sl@0: sl@0: class CFatMountCB; sl@0: class CFatFileSystem; sl@0: sl@0: /** sl@0: Represents the position of a directory entery in terms of a cluster and off set into it sl@0: */ sl@0: class TEntryPos sl@0: { sl@0: public: sl@0: TEntryPos() {} sl@0: TEntryPos(TInt aCluster,TUint aPos) : iCluster(aCluster), iPos(aPos) {} sl@0: sl@0: inline TUint32 Cluster() const; sl@0: inline TUint32 Pos() const; sl@0: inline TBool operator==(const TEntryPos& aRhs) const; sl@0: sl@0: public: sl@0: TInt iCluster; sl@0: TUint iPos; sl@0: }; sl@0: sl@0: sl@0: /** sl@0: Interface class between the file system and the local drive media interface, sl@0: handles incomplete writes to media with the ability to notify the user. sl@0: This class can't be instantinated by user; only CFatMountCB can do this; see CFatMountCB::DriveInterface() sl@0: sl@0: */ sl@0: class TDriveInterface sl@0: { sl@0: public: sl@0: enum TAction {ERetry=1}; sl@0: sl@0: public: sl@0: sl@0: //-- public interface to the local drive. Provides media driver's error handling (critical and non-critical user notifiers) sl@0: //-- and thread-safety if required. sl@0: TInt ReadNonCritical(TInt64 aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2 &aMessage,TInt anOffset) const; sl@0: TInt ReadNonCritical(TInt64 aPos,TInt aLength,TDes8& aTrg) const; sl@0: TInt ReadCritical(TInt64 aPos,TInt aLength,TDes8& aTrg) const; sl@0: sl@0: TInt WriteCritical(TInt64 aPos,const TDesC8& aSrc); sl@0: TInt WriteNonCritical(TInt64 aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2 &aMessage,TInt anOffset); sl@0: sl@0: TInt GetLastErrorInfo(TDes8& aErrorInfo) const; sl@0: sl@0: //-- lock the mutex guarding CProxyDrive interface in order to be sure that no other thread can access it. sl@0: //-- The thread that calls this method may be suspended until another signals the mutex, i.e. leaves the critical section. sl@0: inline void AcquireLock() const {iProxyDrive.EnterCriticalSection();} sl@0: sl@0: //-- release the mutex guarding CProxyDrive. sl@0: inline void ReleaseLock() const {iProxyDrive.LeaveCriticalSection();} sl@0: sl@0: sl@0: protected: sl@0: TDriveInterface(); sl@0: TDriveInterface(const TDriveInterface&); sl@0: TDriveInterface& operator=(const TDriveInterface&); sl@0: sl@0: TBool Init(CFatMountCB* aMount); sl@0: void Close(); sl@0: sl@0: inline TBool NotifyUser() const; sl@0: TInt HandleRecoverableError(TInt aRes) const; sl@0: TInt HandleCriticalError(TInt aRes) const; sl@0: TInt UnlockAndReMount() const; sl@0: TBool IsDriveWriteProtected() const; sl@0: TBool IsRecoverableRemount() const; sl@0: sl@0: private: sl@0: sl@0: /** sl@0: An internal class that represents a thread-safe wrapper around raw interface to the CProxyDrive sl@0: and restricts access to it. sl@0: */ sl@0: class XProxyDriveWrapper sl@0: { sl@0: public: sl@0: sl@0: XProxyDriveWrapper(); sl@0: ~XProxyDriveWrapper(); sl@0: sl@0: TBool Init(CProxyDrive* aProxyDrive); sl@0: sl@0: inline void EnterCriticalSection() const {iLock.Wait();} sl@0: inline void LeaveCriticalSection() const {iLock.Signal();} sl@0: sl@0: //-- methods' wrappers that are used by TDriveInterface sl@0: TInt Read(TInt64 aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2 &aMessage,TInt anOffset) const; sl@0: TInt Read(TInt64 aPos,TInt aLength,TDes8& aTrg) const; sl@0: TInt Write(TInt64 aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2 &aMessage,TInt anOffset); sl@0: TInt Write(TInt64 aPos, const TDesC8& aSrc); sl@0: TInt GetLastErrorInfo(TDes8& aErrorInfo) const; sl@0: TInt Caps(TDes8& anInfo) const; sl@0: sl@0: private: sl@0: CProxyDrive* iLocalDrive; ///< raw interface to the media operations sl@0: mutable RMutex iLock; ///< used for sorting out multithreaded access to the iLocalDrive sl@0: }; sl@0: sl@0: CFatMountCB* iMount; ///< Pointer to the owning file system mount sl@0: XProxyDriveWrapper iProxyDrive; ///< wrapper around raw interface to the media operations sl@0: sl@0: }; sl@0: sl@0: sl@0: /** sl@0: Class providing FAT table interface and basic functionality. sl@0: */ sl@0: class CFatTable : public CBase sl@0: { sl@0: sl@0: public: sl@0: sl@0: virtual ~CFatTable(); sl@0: sl@0: static CFatTable* NewL(CFatMountCB& aOwner, const TLocalDriveCaps& aLocDrvCaps); sl@0: sl@0: /** FAT table mounting parameters */ sl@0: struct TMountParams sl@0: { sl@0: TMountParams() :iFreeClusters(0), iFirstFreeCluster(0), iFsInfoValid(0) {}; sl@0: sl@0: TUint32 iFreeClusters; ///< Free clusters count, obtained from FSInfo sl@0: TUint32 iFirstFreeCluster; ///< First free cluster, obtained from FSInfo sl@0: TUint32 iFsInfoValid : 1; ///< ETrue if the information in iFreeClusters & iFirstFreeCluster is valid sl@0: }; sl@0: sl@0: //----------------------------------------------------------------- sl@0: //-- pure virtual interface sl@0: virtual TUint32 ReadL(TUint32 aFatIndex) const = 0; sl@0: virtual void WriteL(TUint32 aFatIndex, TUint32 aValue) = 0; sl@0: virtual TInt64 DataPositionInBytes(TUint32 aCluster) const = 0; sl@0: virtual void MountL(const TMountParams& aMountParam) = 0; sl@0: //----------------------------------------------------------------- sl@0: //-- just virtual interface sl@0: sl@0: virtual void Dismount(TBool /*aDiscardDirtyData*/) {} sl@0: virtual void FlushL() {}; sl@0: sl@0: virtual void InvalidateCacheL() {}; sl@0: virtual void InvalidateCacheL(TInt64 /*aPos*/,TUint32 /*aLength*/) {}; sl@0: sl@0: virtual void FreeClusterListL(TUint32 aCluster); sl@0: virtual void ExtendClusterListL(TUint32 aNumber,TInt& aCluster); sl@0: sl@0: virtual TUint32 AllocateSingleClusterL(TUint32 aNearestCluster); sl@0: virtual TUint32 AllocateClusterListL(TUint32 aNumber,TUint32 aNearestCluster); sl@0: sl@0: virtual void RequestRawWriteAccess(TInt64 /*aPos*/, TUint32 /*aLen*/) const {}; sl@0: sl@0: virtual TUint32 FreeClusterHint() const; sl@0: virtual TUint32 NumberOfFreeClusters(TBool aSyncOperation=EFalse) const; sl@0: virtual TBool RequestFreeClusters(TUint32 aClustersRequired) const; sl@0: sl@0: virtual void InitializeL(); sl@0: virtual TBool ConsistentState() const {return ETrue;} //-- dummy sl@0: sl@0: //----------------------------------------------------------------- sl@0: //-- non-virtual interface sl@0: TBool GetNextClusterL(TInt& aCluster) const; sl@0: void WriteFatEntryEofL(TUint32 aFatIndex); sl@0: sl@0: void MarkAsBadClusterL(TUint32 aCluster); sl@0: TInt CountContiguousClustersL(TUint32 aStartCluster,TInt& anEndCluster, TUint32 aMaxCount) const; sl@0: sl@0: inline TUint32 MaxEntries() const; sl@0: sl@0: TUint32 PosInBytes(TUint32 aFatIndex) const; sl@0: sl@0: sl@0: protected: sl@0: CFatTable(CFatMountCB& aOwner); sl@0: sl@0: //-- outlawed sl@0: CFatTable(); sl@0: CFatTable(const CFatTable&); sl@0: CFatTable& operator=(const CFatTable&); sl@0: sl@0: virtual void SetFreeClusterHint(TUint32 aCluster); sl@0: sl@0: virtual void DecrementFreeClusterCount(TUint32 aCount); sl@0: virtual void IncrementFreeClusterCount(TUint32 aCount); sl@0: sl@0: virtual void SetFreeClusters(TUint32 aFreeClusters); sl@0: virtual void CountFreeClustersL(); sl@0: virtual TUint32 FindClosestFreeClusterL(TUint32 aCluster); sl@0: sl@0: sl@0: inline TInt SectorSizeLog2() const; sl@0: inline TUint32 FreeClusters() const; sl@0: sl@0: inline TBool IsEndOfClusterCh(TUint32 aCluster) const; sl@0: sl@0: sl@0: inline TFatType FatType() const; sl@0: inline TBool IsFat12() const; sl@0: inline TBool IsFat16() const; sl@0: inline TBool IsFat32() const; sl@0: sl@0: sl@0: inline TBool ClusterNumberValid(TUint32 aClusterNo) const; sl@0: sl@0: typedef RArray RClusterArray; sl@0: void DoFreedClustersNotify(RClusterArray &aFreedClusters); sl@0: sl@0: sl@0: protected: sl@0: sl@0: CFatMountCB* iOwner; ///< Owning file system mount sl@0: TUint iMediaAtt; ///< Cached copy of TLocalDriveCaps::iMediaAtt sl@0: sl@0: private: sl@0: sl@0: TUint32 iFreeClusters; ///< Number of free cluster in the fat table sl@0: TUint32 iFreeClusterHint; ///< this is just a hint to the free cluster number, not required to contain exact information. sl@0: TFatType iFatType; ///< FAT type 12/16/32, cached from the iOwner sl@0: TUint32 iFatEocCode; ///< End Of Cluster Chain code, 0xff8 for FAT12, 0xfff8 for FAT16, and 0xffffff8 for FAT32 sl@0: TUint32 iMaxEntries; ///< maximal number of FAT entries in the table. This value is taken from the CFatMount that calculates it sl@0: sl@0: }; sl@0: sl@0: sl@0: class MWTCacheInterface; sl@0: sl@0: sl@0: //--------------------------------------------------------------------------------------------------------------------------------- sl@0: sl@0: /** sl@0: Base class abstraction of a raw media disk sl@0: */ sl@0: sl@0: sl@0: class CRawDisk : public CBase sl@0: { sl@0: public: sl@0: sl@0: static CRawDisk* NewL(CFatMountCB& aOwner, const TLocalDriveCaps& aLocDrvCaps); sl@0: sl@0: virtual void InitializeL(); sl@0: sl@0: virtual TInt GetLastErrorInfo(TDes8& aErrorInfo) const; sl@0: public: sl@0: sl@0: /** sl@0: Read data from the media via simple WT data cache if it is present. Some media types, like RAM do not have caches. sl@0: This method is mostly used to read UIDs of executable modules and store them in the cache. sl@0: sl@0: @param aPos Media position in bytes sl@0: @param aLength Length in bytes of read sl@0: @param aDes Data from read sl@0: */ sl@0: virtual void ReadCachedL(TInt64 aPos,TInt aLength,TDes8& aDes) const = 0; sl@0: sl@0: /** sl@0: Write data to the media via simple WT data cache if it is present. Some media types, like RAM do not have caches. sl@0: @param aPos Media position in bytes sl@0: @param aDes Data to write sl@0: */ sl@0: virtual void WriteCachedL(TInt64 aPos,const TDesC8& aDes) = 0; sl@0: sl@0: virtual void InvalidateUidCache() {} sl@0: virtual void InvalidateUidCachePage(TUint64 /*aPos*/) {} sl@0: sl@0: sl@0: /** sl@0: Disk read function sl@0: sl@0: @param aPos Media position in bytes sl@0: @param aLength Length in bytes of read sl@0: @param aTrg Pointer to the data descriptor, i.e. (const TAny*)(&TDes8) sl@0: @param aMessage Refrence to server message from request sl@0: @param anOffset Offset into read data to write sl@0: */ sl@0: virtual void ReadL(TInt64 aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2 &aMessage,TInt anOffset) const = 0; sl@0: sl@0: /** sl@0: Disk write function sl@0: sl@0: @param aPos Media position in bytes sl@0: @param aLength Length in bytes of write sl@0: @param aTrg Pointer to the data descriptor, i.e. (const TAny*)(&TDes8) sl@0: @param aMessage Refrence to server message from request, contains data sl@0: @param anOffset Offset into write data to use in write sl@0: */ sl@0: virtual void WriteL(TInt64 aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2 &aMessage,TInt anOffset) = 0; sl@0: sl@0: sl@0: virtual inline MWTCacheInterface* DirCacheInterface(); sl@0: sl@0: sl@0: sl@0: sl@0: protected: sl@0: sl@0: CRawDisk(CFatMountCB& aOwner); sl@0: sl@0: //-- outlawed sl@0: CRawDisk(); sl@0: CRawDisk(const CRawDisk&); sl@0: CRawDisk& operator=(const CRawDisk&); sl@0: sl@0: sl@0: protected: sl@0: sl@0: CFatMountCB* iFatMount; ///< Owning file system mount sl@0: sl@0: sl@0: sl@0: }; sl@0: sl@0: class CFatFileCB; sl@0: class RBitVector; sl@0: sl@0: /** sl@0: A helper class. Holds the FAT volume parameters, which in turn are obtained from the Boot Sector sl@0: */ sl@0: class TFatVolParam sl@0: { sl@0: public: sl@0: sl@0: TFatVolParam(); sl@0: void Populate(const TFatBootSector& aBootSector); sl@0: TBool operator==(const TFatVolParam& aRhs) const; sl@0: sl@0: //-- simple getters sl@0: TUint32 ClusterSizeLog2() const {return iClusterSizeLog2; } sl@0: TUint32 SectorSizeLog2() const {return iSectorSizeLog2; } sl@0: TUint32 RootDirEnd() const {return iRootDirEnd; } sl@0: TUint32 SectorsPerCluster() const {return iSectorsPerCluster; } sl@0: TUint32 RootDirectorySector() const {return iRootDirectorySector;} sl@0: TUint32 FirstFatSector() const {return iFirstFatSector; } sl@0: TUint32 TotalSectors() const {return iTotalSectors; } sl@0: TUint32 NumberOfFats() const {return iNumberOfFats; } sl@0: TUint32 FatSizeInBytes() const {return iFatSizeInBytes; } sl@0: TUint32 RootClusterNum() const {return iRootClusterNum; } sl@0: TUint32 FSInfoSectorNum() const {return iFSInfoSectorNum; } sl@0: TUint32 BkFSInfoSectorNum() const {return iBkFSInfoSectorNum; } sl@0: sl@0: protected: sl@0: TUint32 iClusterSizeLog2; ///< Log2 of fat file system cluster size sl@0: TUint32 iSectorSizeLog2; ///< Log2 of media sector size sl@0: TUint32 iRootDirEnd; ///< End position of the root directory for Fat12/16 sl@0: TUint32 iSectorsPerCluster; ///< Sector per cluster ratio for mounted Fat file system volume sl@0: TUint32 iRootDirectorySector; ///< Start sector of the root directory for Fat12/16 sl@0: TUint32 iFirstFatSector; ///< Start sector of the first Fat table in volume sl@0: TUint32 iTotalSectors; ///< Total sectors on media partition sl@0: TUint32 iNumberOfFats; ///< Number of Fats the volume has sl@0: TUint32 iFatSizeInBytes; ///< Size of a single Fat table in volume sl@0: TUint32 iRootClusterNum; ///< Cluster number for Root directory, for Fat32 sl@0: TUint32 iFSInfoSectorNum; ///< FSInfo Sector number. If 0, this means that corresponding value isn't set in BPB sl@0: TUint32 iBkFSInfoSectorNum; ///< backup FSInfo Sector number sl@0: }; sl@0: sl@0: sl@0: TBool IsLegalDosName(const TDesC& aName, TBool anAllowWildCards, TBool aUseExtendedChars, TBool aInScanDrive, TBool aAllowLowerCase, TBool aIsForFileCreation); sl@0: TBool IsLegalDOSNameChar(TChar aCharacter, TBool aUseExtendedChars); sl@0: sl@0: TUint32 CalculatePageOffsetInCluster(TUint32 aPos, TUint aPageSzLog2); sl@0: sl@0: class CLruCache; sl@0: class TLeafDirData; sl@0: class CLeafDirCache; sl@0: sl@0: sl@0: /** sl@0: Fat file system mount implmentation, provides all that is required of a plug in sl@0: file system mount as well as Fat mount specific functionality sl@0: */ sl@0: class CFatMountCB : public CLocDrvMountCB, sl@0: public MFileSystemSubType, sl@0: public MFileSystemClusterSize, sl@0: public CMountCB::MFileAccessor, sl@0: public CMountCB::MFileExtendedInterface sl@0: { sl@0: public: sl@0: static CFatMountCB* NewL(); sl@0: ~CFatMountCB(); sl@0: void ConstructL(); sl@0: sl@0: public: sl@0: sl@0: //-- overrides from the abstract CMountCB sl@0: void MountL(TBool aForceMount); sl@0: TInt ReMount(); sl@0: void Dismounted(); sl@0: void VolumeL(TVolumeInfo& aVolume) const; sl@0: void SetVolumeL(TDes& aName); sl@0: void MkDirL(const TDesC& aName); sl@0: void RmDirL(const TDesC& aName); sl@0: void DeleteL(const TDesC& aName); sl@0: void RenameL(const TDesC& anOldName,const TDesC& anNewName); sl@0: void ReplaceL(const TDesC& anOldName,const TDesC& anNewName); sl@0: void EntryL(const TDesC& aName,TEntry& anEntry) const; sl@0: void SetEntryL(const TDesC& aName,const TTime& aTime,TUint aMask,TUint aVal); sl@0: void FileOpenL(const TDesC& aName,TUint aMode,TFileOpen anOpen,CFileCB* aFile); sl@0: void DirOpenL(const TDesC& aName,CDirCB* aDir); sl@0: void RawReadL(TInt64 aPos,TInt aLength,const TAny* aTrg,TInt anOffset,const RMessagePtr2& aMessage) const; sl@0: void RawWriteL(TInt64 aPos,TInt aLength,const TAny* aSrc,TInt anOffset,const RMessagePtr2& aMessage); sl@0: void GetShortNameL(const TDesC& aLongName,TDes& aShortName); sl@0: void GetLongNameL(const TDesC& aShortName,TDes& aLongName); sl@0: void ReadSectionL(const TDesC& aName,TInt aPos,TAny* aTrg,TInt aLength,const RMessagePtr2& aMessage); sl@0: TInt CheckDisk(); sl@0: TInt ScanDrive(); sl@0: TInt ControlIO(const RMessagePtr2& aMessage,TInt aCommand,TAny* aParam1,TAny* aParam2); sl@0: TInt Lock(TMediaPassword& aOld,TMediaPassword& aNew,TBool aStore); sl@0: TInt Unlock(TMediaPassword& aPassword,TBool aStore); sl@0: TInt ClearPassword(TMediaPassword& aPassword); sl@0: TInt ErasePassword(); sl@0: TInt ForceRemountDrive(const TDesC8* aMountInfo,TInt aMountInfoMessageHandle,TUint aFlags); sl@0: sl@0: void FinaliseMountL(); sl@0: void FinaliseMountL(TInt aOperation, TAny* aParam1=NULL, TAny* aParam2=NULL); sl@0: TInt MountControl(TInt aLevel, TInt aOption, TAny* aParam); sl@0: TTimeIntervalSeconds TimeOffset() const; sl@0: sl@0: protected: sl@0: sl@0: /** CFatMountCB states */ sl@0: enum TFatMntState sl@0: { sl@0: ENotMounted = 0, ///< 0, initial state, not mounted (mount state is inconsistent) sl@0: EMounting, ///< 1, Mounting started (mount state is inconsistent) sl@0: EInit_R, ///< 2, Initialised and not written (mount state is Consistent) sl@0: EInit_W, ///< 3, Initialised and written (mount state is Consistent) sl@0: EFinalised, ///< 4, Finalised (mount state is Consistent) sl@0: EDismounted, ///< 5, Dismounted (mount state is inconsistent) sl@0: EInit_Forced, ///< 6, forcedly mounted, special case (mount state is inconsistent) sl@0: }; sl@0: sl@0: inline TFatMntState State() const; sl@0: inline void SetState(TFatMntState aState); sl@0: TInt OpenMountForWrite(); sl@0: TInt IsFinalised(TBool& aFinalised); sl@0: sl@0: /** sl@0: A wrapper around TDriveInterface providing its instantination and destruction. sl@0: You must not create objects of this class, use DriveInterface() instead. sl@0: */ sl@0: class XDriveInterface: public TDriveInterface sl@0: { sl@0: public: sl@0: XDriveInterface() : TDriveInterface() {} sl@0: ~XDriveInterface() {Close();} sl@0: TBool Init(CFatMountCB* aMount) {return TDriveInterface::Init(aMount);} sl@0: }; sl@0: sl@0: sl@0: public: sl@0: sl@0: enum TRenMode {EModeReplace,EModeRename}; sl@0: sl@0: TBool ConsistentState() const; sl@0: void CheckWritableL() const; sl@0: void CheckStateConsistentL() const; sl@0: sl@0: inline TBool ReadOnly(void) const; sl@0: inline void SetReadOnly(TBool aReadOnlyMode); sl@0: inline TInt StartCluster(const TFatDirEntry & anEntry) const; sl@0: inline CRawDisk& RawDisk() const; sl@0: inline CFatFileSystem& FatFileSystem() const; sl@0: inline CFatTable& FAT() const; sl@0: inline TInt ClusterSizeLog2() const; sl@0: inline TInt SectorSizeLog2() const; sl@0: inline TInt TotalSectors() const; sl@0: inline TInt SectorsPerCluster() const; sl@0: inline TInt ClusterBasePosition() const; sl@0: inline TInt RootDirectorySector() const; sl@0: inline TUint RootDirEnd() const; sl@0: inline TUint32 RootClusterNum() const; sl@0: sl@0: inline TFatType FatType() const; sl@0: inline TBool Is16BitFat() const; sl@0: inline TBool Is32BitFat() const; sl@0: sl@0: inline TUint32 MaxClusterNumber() const; sl@0: inline TInt StartOfFatInBytes() const; sl@0: inline TUint32 FirstFatSector() const; sl@0: sl@0: inline TInt NumberOfFats() const; sl@0: inline TInt FatSizeInBytes() const; sl@0: inline TInt ClusterRelativePos(TInt aPos) const; sl@0: inline TUint StartOfRootDirInBytes() const; sl@0: inline TUint32 UsableClusters() const; sl@0: inline TBool IsBadCluster(TInt aCluster) const; sl@0: inline TBool IsRuggedFSys() const; sl@0: inline void SetRuggedFSys(TBool aVal); sl@0: sl@0: inline TInt RootIndicator() const; sl@0: sl@0: inline TBool IsRootDir(const TEntryPos &aEntry) const; sl@0: inline CAsyncNotifier* Notifier() const; sl@0: inline TDriveInterface& DriveInterface() const; sl@0: sl@0: inline TBool IsEndOfClusterCh(TInt aCluster) const; sl@0: inline void SetEndOfClusterCh(TInt &aCluster) const; sl@0: sl@0: sl@0: void ReadUidL(TInt aCluster,TEntry& anEntry) const; sl@0: sl@0: void ReadDirEntryL(const TEntryPos& aPos,TFatDirEntry& aDirEntry) const; sl@0: void WriteDirEntryL(const TEntryPos& aPos,const TFatDirEntry& aDirEntry); sl@0: sl@0: void DirReadL(const TEntryPos& aPos,TInt aLength,TDes8& aDes) const; sl@0: void DirWriteL(const TEntryPos& aPos,const TDesC8& aDes); sl@0: sl@0: void ReadFromClusterListL(TEntryPos& aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2& aMessage,TInt anOffset) const; sl@0: void WriteToClusterListL(TEntryPos& aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2& aMessage,TInt anOffset, TInt& aBadcluster, TInt &aGoodcluster); sl@0: void MoveToNextEntryL(TEntryPos& aPos) const; sl@0: void MoveToDosEntryL(TEntryPos& aPos,TFatDirEntry& anEntry) const; sl@0: void EnlargeL(TInt aSize); sl@0: void ReduceSizeL(TInt aPos,TInt aLength); sl@0: void DoDismount(); sl@0: TBool ProcessFSInfoSectors(CFatTable::TMountParams& aFatInitParams) const; sl@0: sl@0: sl@0: void DoRenameOrReplaceL(const TDesC& anOldName,const TDesC& aNewName,TRenMode aMode,TEntryPos& aNewPos); sl@0: void FindDosNameL(const TDesC& aName,TUint anAtt,TEntryPos& aDosEntryPos,TFatDirEntry& aDosEntry,TDes& aFileName,TInt anError) const; sl@0: sl@0: void Dismount(); sl@0: sl@0: void InitializeRootEntry(TFatDirEntry & anEntry) const; sl@0: sl@0: TInt64 MakeLinAddrL(const TEntryPos& aPos) const; sl@0: sl@0: inline const TFatConfig& FatConfig() const; sl@0: TBool CheckVolumeTheSame(); sl@0: sl@0: void InvalidateLeafDirCache(); sl@0: sl@0: void BlockMapReadFromClusterListL(TEntryPos& aPos, TInt aLength, SBlockMapInfo& aInfo); sl@0: virtual TInt GetInterface(TInt aInterfaceId,TAny*& aInterface,TAny* aInput); sl@0: virtual TInt GetFileUniqueId(const TDesC& aName, TInt64& aUniqueId); sl@0: virtual TInt Spare3(TInt aVal, TAny* aPtr1, TAny* aPtr2); sl@0: virtual TInt Spare2(TInt aVal, TAny* aPtr1, TAny* aPtr2); sl@0: virtual TInt Spare1(TInt aVal, TAny* aPtr1, TAny* aPtr2); sl@0: sl@0: public: sl@0: sl@0: // interface extension implementation sl@0: virtual TInt SubType(TDes& aName) const; sl@0: virtual TInt ClusterSize() const; sl@0: virtual void ReadSection64L(const TDesC& aName, TInt64 aPos, TAny* aTrg, TInt aLength, const RMessagePtr2& aMessage); sl@0: sl@0: private: sl@0: sl@0: /** An ad hoc internal helper object for using in DoFindL() method and its derivatives */ sl@0: class TFindHelper sl@0: { sl@0: public: sl@0: TFindHelper() {isInitialised = EFalse;} sl@0: void InitialiseL(const TDesC& aTargetName); sl@0: TBool MatchDosEntryName(const TUint8* apDosEntryName) const; sl@0: TBool TrgtNameIsLegalDos() const {ASSERT (isInitialised) ;return isLegalDosName;} sl@0: sl@0: private: sl@0: TFindHelper(const TFindHelper&); sl@0: TFindHelper& operator=(const TFindHelper&); sl@0: public: sl@0: TPtrC iTargetName; ///< pointer to the aTargetName, used in DoRummageDirCacheL() as a parameter sl@0: private: sl@0: TBool isInitialised :1; ///< ETrue if the object is initialised. It can be done only once. sl@0: TBool isLegalDosName :1; ///< ETrue if iTargetName is a legal DOS name sl@0: TShortName iShortName; ///< a short DOS name in XXXXXXXXYYY format generated from aTargetName sl@0: }; sl@0: sl@0: sl@0: /** sl@0: An ad hoc internal helper object for entry creations sl@0: */ sl@0: class XFileCreationHelper sl@0: { sl@0: public: sl@0: XFileCreationHelper(); sl@0: ~XFileCreationHelper(); sl@0: void Close(); sl@0: void InitialiseL(const TDesC& aTargetName); sl@0: TInt GetValidatedShortName(TShortName& aShortName) const; sl@0: void CheckShortNameCandidates(const TUint8* apDosEntryName); sl@0: sl@0: // inline functions for sets and gets sl@0: // note all the get functions have been checked against initialisation status sl@0: inline TBool IsInitialised() const; sl@0: inline TUint16 NumOfAddingEntries() const; sl@0: inline TEntryPos EntryAddingPos()const; sl@0: inline TBool IsNewEntryPosFound() const; sl@0: inline TBool IsTrgNameLegalDosName() const; sl@0: sl@0: inline void SetEntryAddingPos(const TEntryPos& aEntryPos); sl@0: inline void SetIsNewEntryPosFound(TBool aFound); sl@0: sl@0: private: sl@0: XFileCreationHelper(const XFileCreationHelper&); sl@0: XFileCreationHelper& operator=(const TFindHelper&); sl@0: sl@0: private: sl@0: TPtrC iTargetName; ///< pointer to hold the long file name of the target file sl@0: TUint16 iNumOfAddingEntries;///< calculated number of entries to add sl@0: TEntryPos iEntryAddingPos; ///< contains new entry position for adding if found any sl@0: TBool isNewEntryPosFound; ///< flags whether the position for new entries is found sl@0: TBool isInitialised :1; ///< flags whether the object is initialised sl@0: TBool isTrgNameLegalDosName :1; ///< flags whether the target file name is a valid Dos name sl@0: /** sl@0: an array that holds short name candidates, prepared on initialisation. sl@0: */ sl@0: RArray iShortNameCandidates; sl@0: }; sl@0: sl@0: sl@0: sl@0: TBool DoRummageDirCacheL(TUint anAtt,TEntryPos& aStartEntryPos,TFatDirEntry& aStartEntry,TEntryPos& aDosEntryPos,TFatDirEntry& aDosEntry,TDes& aFileName, const TFindHelper& aAuxParam, XFileCreationHelper* aFileCreationHelper, const TLeafDirData& aLeafDir) const; sl@0: TBool DoFindL(const TDesC& aName,TUint anAtt,TEntryPos& aStartEntryPos,TFatDirEntry& aStartEntry,TEntryPos& aDosEntryPos,TFatDirEntry& aDosEntry,TDes& aFileName,TInt anError, XFileCreationHelper* aFileCreationHelper, const TLeafDirData& aLeafDirData) const; sl@0: void FindEntryStartL(const TDesC& aName,TUint anAtt,TFatDirEntry& anEntry,TEntryPos& aPos, XFileCreationHelper* aFileCreationHelper) const; sl@0: sl@0: void FindEntryStartL(const TDesC& aName,TUint anAtt,TFatDirEntry& anEntry,TEntryPos& aPos) const; sl@0: sl@0: void CheckFatForLoopsL(const TFatDirEntry& anEntry) const; sl@0: void DoCheckFatForLoopsL(TInt aCluster,TInt& aPreviousCluster,TInt& aChangePreviousCluster,TInt& aCount) const; sl@0: void InitializeL(const TLocalDriveCaps& aLocDrvCaps, TBool aIgnoreFSInfo=EFalse); sl@0: void DoReadFromClusterListL(TEntryPos& aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2& aMessage,TInt anOffset) const; sl@0: void DoWriteToClusterListL(TEntryPos& aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2& aMessage,TInt anOffset, TInt aLastcluster, TInt& aBadcluster, TInt& aGoodcluster); sl@0: TBool IsUniqueNameL(const TShortName& aName,TInt aDirCluster); sl@0: TBool FindShortNameL(const TShortName& aName,TEntryPos& anEntryPos); sl@0: void ReplaceClashingNameL(const TShortName& aNewName,const TEntryPos& anEntryPos); sl@0: TBool GenerateShortNameL(TInt aDirCluster,const TDesC& aLongName,TShortName& aShortName, TBool aForceRandomize=EFalse); sl@0: TInt FindLeafDirL(const TDesC& aName, TLeafDirData& aLeafDir) const; sl@0: sl@0: TInt GetDirEntry(TEntryPos& aPos,TFatDirEntry& aDosEntry,TFatDirEntry& aStartEntry,TDes& aLongFileName) const; sl@0: TBool DoGetDirEntryL(TEntryPos& aPos,TFatDirEntry& aDosEntry,TFatDirEntry& aStartEntry,TDes& aLongFileName) const; sl@0: sl@0: void WriteDirEntryL(TEntryPos& aPos,const TFatDirEntry& aFatDirEntry,const TDesC& aLongFileName); sl@0: void EraseDirEntryL(TEntryPos aPos,const TFatDirEntry& anEntry); sl@0: void EraseDirEntryL(const TEntryPos& aPos); sl@0: void InitializeFirstDirClusterL(TInt aCluster,TInt aParentCluster); sl@0: void AddDirEntryL(TEntryPos& aPos,TInt aNameLength); sl@0: void ZeroDirClusterL(TInt aCluster); sl@0: sl@0: TInt DoWriteBootSector(TInt64 aMediaPos, const TFatBootSector& aBootSector) const; sl@0: TInt DoReadBootSector(TInt64 aMediaPos, TFatBootSector& aBootSector) const; sl@0: TInt ReadBootSector(TFatBootSector& aBootSector, TBool aDoNotReadBkBootSec=EFalse); sl@0: sl@0: TInt WriteFSInfoSector(TInt64 aMediaPos, const TFSInfo& aFSInfo) const; sl@0: TInt ReadFSInfoSector(TInt64 aMediaPos, TFSInfo& aFSInfo) const; sl@0: sl@0: TBool IsDirectoryEmptyL(TInt aCluster); sl@0: void ExtendClusterListZeroedL(TInt aNumber,TInt& aCluster); sl@0: void WritePasswordData(); sl@0: sl@0: void WriteVolumeLabelL(const TDesC8& aVolumeLabel) const; sl@0: TInt ReadVolumeLabelFile(TDes8& aLabel); sl@0: void WriteVolumeLabelFileL(const TDesC8& aNewName); sl@0: void FindVolumeLabelFileL(TDes8& aLabel, TEntryPos& aDosEntryPos, TFatDirEntry& aDosEntry); sl@0: void GetVolumeLabelFromDiskL(const TFatBootSector& aBootSector); sl@0: void TrimVolumeLabel(TDes8& aLabel) const; sl@0: sl@0: TInt DoRunScanDrive(); sl@0: TBool VolumeCleanL(); sl@0: void SetVolumeCleanL(TBool aClean); sl@0: TBool VolCleanFlagSupported() const; sl@0: sl@0: void DoUpdateFSInfoSectorsL(TBool aInvalidateFSInfo); sl@0: void UnFinaliseMountL(); sl@0: void DoReMountL(); sl@0: void SetFatType(TFatType aFatType); sl@0: sl@0: sl@0: private: sl@0: sl@0: sl@0: CFatMountCB(); sl@0: sl@0: TInt GetDosEntryFromNameL(const TDesC& aName, TEntryPos& aDosEntryPos, TFatDirEntry& aDosEntry); sl@0: sl@0: TInt MntCtl_DoCheckFileSystemMountable(); sl@0: sl@0: sl@0: private: sl@0: sl@0: TBool iReadOnly : 1;///< if true, the drive is in read-only mode sl@0: TBool iRamDrive : 1;///< true if this is a RAM drive sl@0: TBool iMainBootSecValid : 1;///< true if the main boot sector is valid, if false, a backup boot sector may be in use. sl@0: sl@0: TFatMntState iState; ///< this mounnt internal state sl@0: sl@0: TFatType iFatType; ///< FAT type, FAT12,16 or 32 sl@0: TUint32 iFatEocCode; ///< End Of Cluster Chain code, 0xff8 for FAT12, 0xfff8 for FAT16, and 0xffffff8 for FAT32 sl@0: sl@0: CLeafDirCache* iLeafDirCache; ///< A cache for most recently visited directories, only valid when limit is set bigger than 1 sl@0: HBufC* iLastLeafDir; ///< The last visited directory, only valid when limit of iLeafDirCache is less than 1 sl@0: TInt iLastLeafDirCluster; ///< Cluster number of the last visited cluster, only valid when limit of iLeafDirCache is less than 1 sl@0: sl@0: TFatVolParam iVolParam; ///< FAT volume parameters, populated form the boot sector values. sl@0: sl@0: TInt iFirstFreeByte; ///< First free byte in media (start of the data area on the volume) sl@0: TUint32 iUsableClusters; ///< Number of usable cluster on the volume sl@0: sl@0: CFatTable* iFatTable; ///< Pointer to the volume Fat sl@0: CRawDisk* iRawDisk; ///< Pointer to the raw data interface class sl@0: sl@0: CAsyncNotifier* iNotifier; ///< Async notifier for notifying user of Fat error conditions sl@0: sl@0: XDriveInterface iDriverInterface; ///< the object representing interface to the drive, provides read/write access and notifiers sl@0: TInt iChkDiscRecLevel; ///< Check disk recursion level counter. A temporary measure. sl@0: TFatConfig iFatConfig; ///< FAT parametrers from estart.txt sl@0: sl@0: XFileCreationHelper iFileCreationHelper; sl@0: sl@0: sl@0: #ifdef _DEBUG sl@0: private: sl@0: //-- debug odds and ends sl@0: inline TBool IsWriteFail()const; sl@0: inline void SetWriteFail(TBool aIsWriteFail); sl@0: inline TInt WriteFailCount()const; sl@0: inline void SetWriteFailCount(TInt aFailCount); sl@0: inline void DecWriteFailCount(); sl@0: inline TInt WriteFailError()const; sl@0: inline void SetWriteFailError(TInt aErrorValue); sl@0: sl@0: sl@0: TBool iIsWriteFail : 1; ///< Flag to indicate if write failed used for debugging sl@0: TBool iCBRecFlag : 1; ///< in debug mode used for checking unwanted recursion sl@0: sl@0: TInt iWriteFailCount; ///< Write fail count for debug sl@0: TInt iWriteFailError; ///< Write fail error to use for debug sl@0: sl@0: #endif sl@0: sl@0: friend class CFatFormatCB; sl@0: friend class CScanDrive; sl@0: friend class TDriveInterface; sl@0: }; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: Fat file system file subsession implmentation, provides all that is required of a plug in sl@0: file system file as well as Fat specific functionality sl@0: */ sl@0: class CFatFileCB : public CFileCB, public CFileCB::MBlockMapInterface, public CFileCB::MExtendedFileInterface sl@0: { sl@0: public: sl@0: CFatFileCB(); sl@0: ~CFatFileCB(); sl@0: public: sl@0: void RenameL(const TDesC& aNewName); sl@0: void ReadL(TInt aPos,TInt& aLength,const TAny* aDes,const RMessagePtr2& aMessage); sl@0: void WriteL(TInt aPos,TInt& aLength,const TAny* aDes,const RMessagePtr2& aMessage); sl@0: void SetSizeL(TInt aSize); sl@0: void SetEntryL(const TTime& aTime,TUint aMask,TUint aVal); sl@0: void FlushDataL(); sl@0: void FlushAllL(); sl@0: public: sl@0: void CheckPosL(TUint aPos); sl@0: void SetL(const TFatDirEntry& aFatDirEntry,TShare aShare,const TEntryPos& aPos); sl@0: void CreateSeekIndex(); sl@0: sl@0: inline TBool IsSeekIndex() const; sl@0: sl@0: // from MBlockMapInterface sl@0: TInt BlockMap(SBlockMapInfo& aInfo, TInt64& aStartPos, TInt64 aEndPos); sl@0: sl@0: // from CFileCB sl@0: virtual TInt GetInterface(TInt aInterfaceId,TAny*& aInterface,TAny* aInput); sl@0: sl@0: // from CFileCB::MExtendedFileInterface sl@0: virtual void ReadL(TInt64 aPos,TInt& aLength,TDes8* aDes,const RMessagePtr2& aMessage, TInt aOffset); sl@0: virtual void WriteL(TInt64 aPos,TInt& aLength,const TDesC8* aDes,const RMessagePtr2& aMessage, TInt aOffset); sl@0: virtual void SetSizeL(TInt64 aSize); sl@0: sl@0: private: sl@0: inline CFatMountCB& FatMount() const; sl@0: inline CFatTable& FAT(); sl@0: inline TInt ClusterSizeLog2(); sl@0: inline TInt ClusterRelativePos(TInt aPos); sl@0: sl@0: sl@0: void FlushStartClusterL(); sl@0: TInt SeekToPosition(TInt aNewCluster,TInt aClusterOffset); sl@0: void SetSeekIndexValueL(TInt aFileCluster,TInt aStoredCluster); sl@0: void ResizeIndex(TInt aNewMult,TUint aNewSize); sl@0: TInt CalcSeekIndexSize(TUint aSize); sl@0: TBool IsSeekBackwards(TUint aPos); sl@0: void ClearIndex(TUint aNewSize); sl@0: void DoSetSizeL(TUint aSize,TBool aIsSizeWrite); sl@0: void WriteFileSizeL(TUint aSize); sl@0: sl@0: private: sl@0: sl@0: TUint32* iSeekIndex; ///< Seek index into file sl@0: TInt iSeekIndexSize; ///< size of seek index sl@0: TInt iStartCluster; ///< Start cluster number of file sl@0: TEntryPos iCurrentPos; ///< Current position in file data sl@0: TEntryPos iFileDirPos; ///< File directory entry position sl@0: TBool iFileSizeModified; sl@0: }; sl@0: sl@0: sl@0: /** sl@0: Fat file system directory subsession implmentation, provides all that is required of a plug in sl@0: file system directory as well as Fat specific functionality sl@0: */ sl@0: class CFatDirCB : public CDirCB sl@0: { sl@0: public: sl@0: static CFatDirCB* NewL(); sl@0: ~CFatDirCB(); sl@0: public: sl@0: void ReadL(TEntry& anEntry); sl@0: void StoreLongEntryNameL(const TDesC& aName); sl@0: public: sl@0: void SetDirL(const TFatDirEntry& anEntry,const TDesC& aMatchName); sl@0: inline CFatMountCB& FatMount(); sl@0: private: sl@0: CFatDirCB(); sl@0: private: sl@0: TFatDirEntry iEntry; ///< Current directory entry in this directory sl@0: TEntryPos iCurrentPos; ///< Current position in directory sl@0: HBufC* iMatch; ///< Current name being searched in directory (Dos Name) sl@0: HBufC* iLongNameBuf; ///< Long name storage sl@0: TBool iMatchUid; ///< Flag to indicate if UID matches sl@0: }; sl@0: sl@0: /** sl@0: Fat file system Format subsession implmentation, provides all that is required of a plug in sl@0: file system format as well as Fat specific functionality sl@0: */ sl@0: class CFatFormatCB : public CFormatCB sl@0: { sl@0: public: sl@0: CFatFormatCB(); sl@0: ~CFatFormatCB(); sl@0: public: sl@0: sl@0: //-- overrides from CFormatCB sl@0: void DoFormatStepL(); sl@0: sl@0: private: sl@0: //-- overrides from CFormatCB sl@0: TInt GetInterface(TInt aInterfaceId,TAny*& aInterface,TAny* aInput); sl@0: sl@0: private: sl@0: sl@0: TInt DoProcessTVolFormatParam(const TVolFormatParam_FAT* apVolFormatParam); sl@0: sl@0: void CreateBootSectorL(); sl@0: void CreateFSInfoSectorL(); sl@0: void CreateReservedBootSectorL(); sl@0: void InitializeFormatDataL(); sl@0: void DoZeroFillMediaL(TInt64 aStartPos, TInt64 aEndPos); sl@0: sl@0: TInt InitFormatDataForVariableSizeDisk(TInt aDiskSizeInSectors); sl@0: TInt InitFormatDataForFixedSizeDiskNormal(TInt aDiskSizeInSectors, const TLocalDriveCapsV6& aCaps); sl@0: TInt InitFormatDataForFixedSizeDiskCustom(const TLDFormatInfo& aFormatInfo); sl@0: TInt InitFormatDataForFixedSizeDiskUser(TInt aDiskSizeInSectors); sl@0: void AdjustClusterSize(TInt aRecommendedSectorsPerCluster); sl@0: TInt AdjustFirstDataSectorAlignment(TInt aBlockSize); sl@0: TInt FirstDataSector() const; sl@0: sl@0: TInt HandleCorrupt(TInt aError); sl@0: TInt BadSectorToCluster(); sl@0: void TranslateL(); sl@0: TInt DoTranslate(TPtr8& aBuf, RArray& aArray); sl@0: void RecordOldInfoL(); sl@0: TInt MaxFat12Sectors() const; sl@0: TInt MaxFat16Sectors() const; sl@0: TUint32 MaxFat32Sectors() const; sl@0: inline TBool Is16BitFat() const; sl@0: inline TBool Is32BitFat() const; sl@0: inline CFatMountCB& FatMount(); sl@0: inline CProxyDrive* LocalDrive(); sl@0: TFatType SuggestFatType() const; sl@0: sl@0: private: sl@0: sl@0: TBool iVariableSize; ///< Flag to indicat if we are dealing with a variable size volume sl@0: TInt iBytesPerSector; ///< Byte per sector of media sl@0: TInt iSectorSizeLog2; ///< Sector size in log2 sl@0: TInt iNumberOfFats; ///< Number of Fats the volume will contain sl@0: TInt iReservedSectors; ///< Number of reserved sectors in the volume sl@0: TInt iRootDirEntries; ///< Nummer of root directory entries the root dir will have, specific to Fat12/16 volumes sl@0: TInt iSectorsPerCluster; ///< Sector per cluster ration the volume will be formatted with sl@0: TInt iSectorsPerFat; ///< Number of sectors the Fat uses sl@0: TInt iMaxDiskSectors; ///< number of sectors the volume has sl@0: TFormatInfo iFormatInfo; ///< format information for a custom format sl@0: TBuf8<16> iFileSystemName;///< Buffer to contain the volume name sl@0: TInt iHiddenSectors; ///< Number of hidden sectors in the volume sl@0: TInt iNumberOfHeads; ///< Number of heads the media device has, not used so far as only used on solid state media. sl@0: TInt iSectorsPerTrack; ///< Number of sectors the media device has, not used so far as only used on solid state media. sl@0: TUint32 iRootClusterNum; ///< cluster number used for root directory, Fat32 specific sl@0: TUint32 iCountOfClusters; ///< Count of clusters on the media sl@0: RArray iBadClusters; ///< Array of bad cluster numbers sl@0: RArray iBadSectors; ///< Array of bad sector numbers sl@0: TBool iDiskCorrupt; ///< Disk is corrupt when format or not sl@0: TInt iOldFirstFreeSector; sl@0: TInt iOldSectorsPerCluster; sl@0: }; sl@0: sl@0: /** sl@0: Required file system class used by file server to create the file system objects sl@0: */ sl@0: class CFatFileSystem : public CFileSystem sl@0: { sl@0: public: sl@0: static CFatFileSystem* New(); sl@0: ~CFatFileSystem(); sl@0: public: sl@0: TInt Install(); sl@0: CMountCB* NewMountL() const; sl@0: CFileCB* NewFileL() const; sl@0: CDirCB* NewDirL() const; sl@0: CFormatCB* NewFormatL() const; sl@0: TInt DefaultPath(TDes& aPath) const; sl@0: TBool IsExtensionSupported() const; sl@0: TBool GetUseLocalTime() const; sl@0: void SetUseLocalTime(TBool aFlag); sl@0: TInt GetInterface(TInt aInterfaceId, TAny*& aInterface,TAny* aInput); sl@0: protected: sl@0: CFatFileSystem(); sl@0: /** sl@0: If true, then local time will be used when writing timestamps to FS. When reading, sl@0: timestamps will be assumed local and converted back to UTC. sl@0: At present, this behaviour will also be conditional upon a particular drive being logically removable. sl@0: */ sl@0: TBool iUseLocalTimeIfRemovable; sl@0: }; sl@0: sl@0: sl@0: sl@0: /** sl@0: Locale utilities allows the file system to call into a specific locale for tasks sl@0: such as Dos name to unicode conversions and testing the legality of characters for sl@0: any given locale. sl@0: */ sl@0: class LocaleUtils sl@0: sl@0: { sl@0: public: sl@0: static void ConvertFromUnicodeL(TDes8& aForeign, const TDesC16& aUnicode, TFatUtilityFunctions::TOverflowAction aOverflowAction=TFatUtilityFunctions::EOverflowActionTruncate); sl@0: static void ConvertToUnicodeL(TDes16& aUnicode, const TDesC8& aForeign, TFatUtilityFunctions::TOverflowAction aOverflowAction=TFatUtilityFunctions::EOverflowActionTruncate); sl@0: static TBool IsLegalShortNameCharacter(TUint aCharacter,TBool aUseExtendedChars=EFalse); sl@0: }; sl@0: // sl@0: sl@0: /** sl@0: Converts Dos time (from a directory entry) to TTime format sl@0: sl@0: @param aDosTime Dos format time sl@0: @param aDosDate Dos format Date sl@0: @return TTime format of Dos time passed in sl@0: */ sl@0: TTime DosTimeToTTime(TInt aDosTime,TInt aDosDate); sl@0: /** sl@0: Converts TTime format to Dos time format sl@0: sl@0: @param aTime TTime to convert to Dos time sl@0: @return Dos time format sl@0: */ sl@0: TInt DosTimeFromTTime(const TTime& aTime); sl@0: /** sl@0: Converts TTime format to Dos time format sl@0: sl@0: @param aTime TTime to convert to Dos Date sl@0: @return Dos Date format sl@0: */ sl@0: TInt DosDateFromTTime(const TTime& aTime); sl@0: /** sl@0: Converts Dos Directory entry format to 8.3 format sl@0: sl@0: @param aDosName Directory entry format with space delimeter sl@0: @return 8.3 Dos filename format sl@0: */ sl@0: TBuf8<12> DosNameToStdFormat(const TDesC8& aDosName); sl@0: /** sl@0: Converts 8.3 format to Dos Directory entry format sl@0: sl@0: @param aStdFormatName 8.3 Dos filename format sl@0: @return Directory entry format with space delimeter sl@0: */ sl@0: TBuf8<12> DosNameFromStdFormat(const TDesC8& aStdFormatName); sl@0: /** sl@0: Fault function calls user panic with a fault reason sl@0: sl@0: @param Enumerated fault reason sl@0: */ sl@0: void Fault(TFault aFault); sl@0: /** sl@0: calculates the number of VFat directory entries for a given file/directory name length sl@0: sl@0: @param the length in characters of the name sl@0: @return the number of VFat entries required sl@0: */ sl@0: TInt NumberOfVFatEntries(TInt aNameLength); sl@0: /** sl@0: Calculates the check sum for a standard directory entry sl@0: sl@0: @param the Dos name for the directory entry sl@0: @return the checksum sl@0: */ sl@0: TUint8 CalculateShortNameCheckSum(const TDesC8& aShortName); sl@0: sl@0: TUint32 EocCodeByFatType(TFatType aFatType); sl@0: sl@0: sl@0: #include "sl_std.inl" sl@0: #include "sl_bpb.inl" sl@0: #include "fat_dir_entry.inl" sl@0: sl@0: #endif //SL_STD_H