os/kernelhwsrv/userlibandfileserver/fileserver/sfat/inc/sl_std.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1996-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 the License "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
// f32\sfat\inc\sl_std.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalTechnology
sl@0
    21
*/
sl@0
    22
sl@0
    23
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
sl@0
    24
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
sl@0
    25
//!!
sl@0
    26
//!! WARNING!! DO NOT edit this file !! '\sfat' component is obsolete and is not being used. '\sfat32'replaces it
sl@0
    27
//!!
sl@0
    28
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
sl@0
    29
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
sl@0
    30
sl@0
    31
sl@0
    32
#ifndef SL_STD_H
sl@0
    33
#define SL_STD_H
sl@0
    34
sl@0
    35
//
sl@0
    36
// #define _DEBUG_RELEASE
sl@0
    37
//
sl@0
    38
sl@0
    39
#include "common.h"
sl@0
    40
#include <f32ver.h>
sl@0
    41
#include <e32svr.h>
sl@0
    42
#include <kernel/localise.h>
sl@0
    43
#include "filesystem_fat.h"
sl@0
    44
sl@0
    45
#include "common_constants.h"
sl@0
    46
#include "sl_bpb.h"
sl@0
    47
#include "fat_config.h"
sl@0
    48
#include "fat_dir_entry.h"
sl@0
    49
sl@0
    50
using namespace FileSystem_FAT;
sl@0
    51
sl@0
    52
#ifdef _DEBUG
sl@0
    53
_LIT(KThisFsyName,"EFAT.FSY"); ///< This FSY name
sl@0
    54
#endif
sl@0
    55
sl@0
    56
class CFatMountCB;
sl@0
    57
class CFatFileSystem;
sl@0
    58
sl@0
    59
/**
sl@0
    60
Represents the position of a directory entery in terms of a cluster and off set into it
sl@0
    61
*/
sl@0
    62
class TEntryPos
sl@0
    63
    {
sl@0
    64
public:
sl@0
    65
    TEntryPos() {}
sl@0
    66
    TEntryPos(TInt aCluster,TUint aPos) : iCluster(aCluster), iPos(aPos) {}
sl@0
    67
sl@0
    68
    inline TUint32 Cluster() const;
sl@0
    69
    inline TUint32 Pos() const;
sl@0
    70
    inline TBool operator==(const TEntryPos& aRhs) const;
sl@0
    71
sl@0
    72
public:
sl@0
    73
    TInt iCluster;
sl@0
    74
    TUint iPos;
sl@0
    75
    };
sl@0
    76
sl@0
    77
sl@0
    78
/**
sl@0
    79
    Interface class between the file system and the local drive media interface,
sl@0
    80
    handles incomplete writes to media with the ability to notify the user.
sl@0
    81
    This class can't be instantinated by user; only CFatMountCB can do this; see CFatMountCB::DriveInterface()
sl@0
    82
sl@0
    83
*/
sl@0
    84
class TFatDriveInterface
sl@0
    85
    {
sl@0
    86
public:
sl@0
    87
    enum TAction {ERetry=1};
sl@0
    88
sl@0
    89
public:
sl@0
    90
sl@0
    91
    //-- public interface to the local drive. Provides media driver's error handling (critical and non-critical user notifiers)
sl@0
    92
    //-- and thread-safety if required.
sl@0
    93
    TInt ReadNonCritical(TInt64 aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2 &aMessage,TInt anOffset) const;
sl@0
    94
    TInt ReadNonCritical(TInt64 aPos,TInt aLength,TDes8& aTrg) const;
sl@0
    95
    TInt ReadCritical(TInt64 aPos,TInt aLength,TDes8& aTrg) const;
sl@0
    96
    
sl@0
    97
    TInt WriteCritical(TInt64 aPos,const TDesC8& aSrc);
sl@0
    98
    TInt WriteNonCritical(TInt64 aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2 &aMessage,TInt anOffset);
sl@0
    99
    
sl@0
   100
    TInt GetLastErrorInfo(TDes8& aErrorInfo) const;
sl@0
   101
sl@0
   102
    //-- lock the mutex guarding CProxyDrive interface in order to be sure that no other thread can access it.
sl@0
   103
    //-- The thread that calls this method may be suspended until another signals the mutex, i.e. leaves the critical section.
sl@0
   104
    inline void AcquireLock() const {} //-- dummy
sl@0
   105
    
sl@0
   106
    //-- release the mutex guarding CProxyDrive.
sl@0
   107
    inline void ReleaseLock() const {} //-- dummy
sl@0
   108
sl@0
   109
sl@0
   110
protected:
sl@0
   111
    TFatDriveInterface();
sl@0
   112
    TFatDriveInterface(const TFatDriveInterface&);
sl@0
   113
    TFatDriveInterface& operator=(const TFatDriveInterface&);
sl@0
   114
sl@0
   115
    TBool Init(CFatMountCB* aMount);
sl@0
   116
    void Close(); 
sl@0
   117
sl@0
   118
    inline TBool NotifyUser() const;
sl@0
   119
    TInt HandleRecoverableError(TInt aRes) const;
sl@0
   120
    TInt HandleCriticalError(TInt aRes) const;
sl@0
   121
    TInt UnlockAndReMount() const;
sl@0
   122
    TBool IsDriveWriteProtected() const;
sl@0
   123
    TBool IsRecoverableRemount() const;
sl@0
   124
sl@0
   125
private:
sl@0
   126
    
sl@0
   127
    /** 
sl@0
   128
        An internal class that represents a thread-safe wrapper around raw interface to the CProxyDrive 
sl@0
   129
        and restricts access to it.
sl@0
   130
    */
sl@0
   131
    class XProxyDriveWrapper
sl@0
   132
        {
sl@0
   133
        public:
sl@0
   134
       
sl@0
   135
        XProxyDriveWrapper();
sl@0
   136
       ~XProxyDriveWrapper();
sl@0
   137
sl@0
   138
        TBool Init(CProxyDrive* aProxyDrive);
sl@0
   139
            
sl@0
   140
        inline void EnterCriticalSection() const {} //-- dummy
sl@0
   141
        inline void LeaveCriticalSection() const {} //-- dummy
sl@0
   142
sl@0
   143
        //-- methods' wrappers that are used by TFatDriveInterface
sl@0
   144
        TInt Read(TInt64 aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2 &aMessage,TInt anOffset) const;
sl@0
   145
        TInt Read(TInt64 aPos,TInt aLength,TDes8& aTrg) const;
sl@0
   146
        TInt Write(TInt64 aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2 &aMessage,TInt anOffset);
sl@0
   147
        TInt Write(TInt64 aPos, const TDesC8& aSrc);
sl@0
   148
        TInt GetLastErrorInfo(TDes8& aErrorInfo) const;
sl@0
   149
        TInt Caps(TDes8& anInfo) const;
sl@0
   150
sl@0
   151
        private:
sl@0
   152
        
sl@0
   153
        CProxyDrive*    iLocalDrive; ///< raw interface to the media operations
sl@0
   154
        mutable RMutex  iLock;       ///< used for sorting out multithreaded access to the iLocalDrive
sl@0
   155
        };
sl@0
   156
    
sl@0
   157
    CFatMountCB*        iMount;      ///< Pointer to the owning file system mount
sl@0
   158
    XProxyDriveWrapper  iProxyDrive; ///< wrapper around raw interface to the media operations
sl@0
   159
    
sl@0
   160
    };
sl@0
   161
sl@0
   162
sl@0
   163
sl@0
   164
/**
sl@0
   165
    Class providing FAT table interface and basic functionality.
sl@0
   166
*/  
sl@0
   167
class CFatTable : public CBase
sl@0
   168
    {
sl@0
   169
public:
sl@0
   170
    static CFatTable* NewL(CFatMountCB& aOwner, const TLocalDriveCaps& aLocDrvCaps);
sl@0
   171
sl@0
   172
    virtual ~CFatTable();
sl@0
   173
sl@0
   174
    /** Empty and deallocate the cache*/
sl@0
   175
    virtual void Dismount(TBool /*aDiscardDirtyData*/) {}
sl@0
   176
    
sl@0
   177
    /** Flush data cahed data to the media */
sl@0
   178
    virtual void FlushL() {};
sl@0
   179
    
sl@0
   180
    /**
sl@0
   181
    Invalidate specified region of the FAT cache
sl@0
   182
    Depending of cache type this may just mark part of the cache invalid with reading on demand later
sl@0
   183
    or re-read whole cache from the media.
sl@0
   184
sl@0
   185
    @param aPos absolute media position where the region being invalidated starts.
sl@0
   186
    @param aLength length in bytes of region to invalidate / refresh
sl@0
   187
    */
sl@0
   188
    virtual void InvalidateCacheL(TInt64 /*aPos*/,TUint32 /*aLength*/) {};
sl@0
   189
sl@0
   190
    
sl@0
   191
    /**
sl@0
   192
    Invalidate whole FAT cache.
sl@0
   193
    Depending of cache type this may just mark cache invalid with reading on demand or re-read whole cache from the media
sl@0
   194
    */
sl@0
   195
    virtual void InvalidateCacheL() {};
sl@0
   196
    
sl@0
   197
sl@0
   198
    /**
sl@0
   199
    Gets the next cluster in a cluster chain
sl@0
   200
sl@0
   201
    @param aCluster Cluster number to start lookup. On return contains number of the next cluster.
sl@0
   202
    @return EFalse if cluster is at the end of a cluster chain
sl@0
   203
    */
sl@0
   204
    virtual TBool GetNextClusterL(TInt& aCluster) const;
sl@0
   205
    
sl@0
   206
    /**
sl@0
   207
    Writes end of cluster chain
sl@0
   208
    @param aFatIndex index in Fat table where EOF will be written to.
sl@0
   209
    */
sl@0
   210
    virtual void WriteFatEntryEofL(TUint32 aFatIndex);
sl@0
   211
sl@0
   212
    /** 
sl@0
   213
    Read an entry from the FAT.
sl@0
   214
sl@0
   215
    @param aFatIndex aFatIndex index in Fat table
sl@0
   216
    @return value of the FAT entry number aFatIndex
sl@0
   217
    */
sl@0
   218
    virtual TUint32 ReadL(TUint32 aFatIndex) const = 0;
sl@0
   219
    
sl@0
   220
    /**
sl@0
   221
    Write FAT entry to FAT by its index.
sl@0
   222
sl@0
   223
    @param aFatIndex index in FAT
sl@0
   224
    @param aValue value to write
sl@0
   225
    */
sl@0
   226
    virtual void WriteL(TUint32 aFatIndex, TUint32 aValue) = 0;
sl@0
   227
    
sl@0
   228
    /**
sl@0
   229
    return the byte position of a cluster in the fat table
sl@0
   230
sl@0
   231
    @param aCluster cluster to find position of
sl@0
   232
    @return byte position of the cluster
sl@0
   233
    */
sl@0
   234
    virtual TInt64 DataPositionInBytes(TUint32 aCluster) const = 0;
sl@0
   235
sl@0
   236
    virtual void FreeClusterListL(TUint32 aCluster);
sl@0
   237
    virtual void ExtendClusterListL(TUint32 aNumber,TInt& aCluster);
sl@0
   238
    virtual TUint32 AllocateSingleClusterL(TUint32 aNearestCluster);
sl@0
   239
    virtual TUint32 AllocateClusterListL(TUint32 aNumber,TUint32 aNearestCluster);
sl@0
   240
    virtual void CountFreeClustersL();
sl@0
   241
sl@0
   242
    virtual void RequestRawWriteAccess(TInt64 /*aPos*/, TUint32 /*aLen*/) const {};
sl@0
   243
    
sl@0
   244
sl@0
   245
public:
sl@0
   246
sl@0
   247
    void MarkAsBadClusterL(TUint32 aCluster);
sl@0
   248
    TInt CountContiguousClustersL(TUint32 aStartCluster,TInt& anEndCluster, TUint32 aMaxCount) const;
sl@0
   249
sl@0
   250
    virtual TUint32 FreeClusterHint() const;
sl@0
   251
    virtual void SetFreeClusterHint(TUint32 aCluster);
sl@0
   252
    
sl@0
   253
    virtual TUint32 NumberOfFreeClusters(TBool aSyncOperation=EFalse) const;
sl@0
   254
    virtual void SetFreeClusters(TUint32 aFreeClusters);
sl@0
   255
sl@0
   256
    virtual TBool RequestFreeClusters(TUint32 aClustersRequired) const; 
sl@0
   257
    
sl@0
   258
    inline TUint32 MaxEntries() const;
sl@0
   259
    virtual void InitializeL();
sl@0
   260
    virtual TBool ConsistentState() const {return ETrue;} //-- dummy
sl@0
   261
sl@0
   262
protected:
sl@0
   263
    CFatTable(CFatMountCB& aOwner);
sl@0
   264
    
sl@0
   265
    //-- outlawed
sl@0
   266
    CFatTable(); 
sl@0
   267
    CFatTable(const CFatTable&); 
sl@0
   268
    CFatTable& operator=(const CFatTable&);
sl@0
   269
sl@0
   270
    
sl@0
   271
sl@0
   272
    void DecrementFreeClusterCount(TUint32 aCount); 
sl@0
   273
    void IncrementFreeClusterCount(TUint32 aCount);
sl@0
   274
sl@0
   275
    inline TUint32 FreeClusters() const;
sl@0
   276
sl@0
   277
    inline TBool IsEof16Bit(TInt aCluster) const;
sl@0
   278
    inline TBool IsEof12Bit(TInt aCluster) const;
sl@0
   279
    inline TInt SectorSizeLog2() const;
sl@0
   280
    inline TFatType FatType() const;
sl@0
   281
sl@0
   282
    TUint32 PosInBytes(TUint32 aFatIndex) const;
sl@0
   283
    TUint32 FindClosestFreeClusterL(TUint32 aCluster);
sl@0
   284
sl@0
   285
    inline TBool IsFat12() const;
sl@0
   286
    inline TBool IsFat16() const;
sl@0
   287
sl@0
   288
    inline TBool ClusterNumberValid(TUint32 aClusterNo) const;
sl@0
   289
sl@0
   290
    typedef RArray<TUint> RClusterArray;
sl@0
   291
    void DoFreedClustersNotify(RClusterArray &aFreedClusters);
sl@0
   292
sl@0
   293
sl@0
   294
protected:
sl@0
   295
    
sl@0
   296
    CFatMountCB* iOwner;            ///< Owning file system mount
sl@0
   297
    TUint        iMediaAtt;         ///< Cached copy of TLocalDriveCaps::iMediaAtt
sl@0
   298
sl@0
   299
private:   
sl@0
   300
sl@0
   301
    TUint32  iFreeClusters;     ///< Number of free cluster in the fat table
sl@0
   302
    TUint32  iFreeClusterHint;  ///< Next free custer in the fat table, just for use in TFsInfo; This is just a hint, not required to contain exact information.
sl@0
   303
    TFatType iFatType;          ///< FAT type 12/16/32, cached from the iOwner
sl@0
   304
    TUint32  iMaxEntries;       ///< maximal number of FAT entries in the table. This value is taken from the CFatMount that calculates it
sl@0
   305
    
sl@0
   306
    };
sl@0
   307
sl@0
   308
sl@0
   309
class MWTCacheInterface;
sl@0
   310
sl@0
   311
sl@0
   312
//---------------------------------------------------------------------------------------------------------------------------------
sl@0
   313
sl@0
   314
/**
sl@0
   315
Base class abstraction of a raw media disk
sl@0
   316
*/
sl@0
   317
class CRawDisk : public CBase
sl@0
   318
    {
sl@0
   319
public:
sl@0
   320
sl@0
   321
    static CRawDisk* NewL(CFatMountCB& aOwner, const TLocalDriveCaps& aLocDrvCaps);
sl@0
   322
sl@0
   323
    virtual void InitializeL();
sl@0
   324
    
sl@0
   325
    virtual TInt GetLastErrorInfo(TDes8& aErrorInfo) const;
sl@0
   326
public:
sl@0
   327
    
sl@0
   328
    /**
sl@0
   329
    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
   330
    This method is mostly used to read UIDs of executable modules and store them in the cache.
sl@0
   331
sl@0
   332
    @param aPos     Media position in bytes
sl@0
   333
    @param aLength  Length in bytes of read
sl@0
   334
    @param aDes     Data from read
sl@0
   335
    */
sl@0
   336
    virtual void ReadCachedL(TInt64 aPos,TInt aLength,TDes8& aDes) const = 0;
sl@0
   337
    
sl@0
   338
    /**
sl@0
   339
    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
   340
    @param aPos     Media position in bytes
sl@0
   341
    @param aDes     Data to write
sl@0
   342
    */
sl@0
   343
    virtual void WriteCachedL(TInt64 aPos,const TDesC8& aDes) = 0;
sl@0
   344
    
sl@0
   345
    virtual void InvalidateUidCache() {}
sl@0
   346
    virtual void InvalidateUidCachePage(TUint64 /*aPos*/) {}
sl@0
   347
    
sl@0
   348
sl@0
   349
    /**
sl@0
   350
    Disk read function
sl@0
   351
    
sl@0
   352
    @param aPos     Media position in bytes
sl@0
   353
    @param aLength  Length in bytes of read
sl@0
   354
    @param aTrg     Pointer to the data descriptor, i.e. (const TAny*)(&TDes8)
sl@0
   355
    @param aMessage Refrence to server message from request
sl@0
   356
    @param anOffset Offset into read data to write
sl@0
   357
    */
sl@0
   358
    virtual void ReadL(TInt64 aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2 &aMessage,TInt anOffset) const = 0;
sl@0
   359
sl@0
   360
    /**
sl@0
   361
    Disk write function
sl@0
   362
sl@0
   363
    @param aPos     Media position in bytes
sl@0
   364
    @param aLength  Length in bytes of write
sl@0
   365
    @param aTrg     Pointer to the data descriptor, i.e. (const TAny*)(&TDes8)
sl@0
   366
    @param aMessage Refrence to server message from request, contains data
sl@0
   367
    @param anOffset Offset into write data to use in write
sl@0
   368
    */
sl@0
   369
    virtual void WriteL(TInt64 aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2 &aMessage,TInt anOffset) = 0;
sl@0
   370
sl@0
   371
    
sl@0
   372
    virtual inline MWTCacheInterface* DirCacheInterface();
sl@0
   373
sl@0
   374
sl@0
   375
sl@0
   376
sl@0
   377
protected:
sl@0
   378
sl@0
   379
    CRawDisk(CFatMountCB& aOwner);
sl@0
   380
sl@0
   381
    //-- outlawed
sl@0
   382
    CRawDisk(); 
sl@0
   383
    CRawDisk(const CRawDisk&); 
sl@0
   384
    CRawDisk& operator=(const CRawDisk&);
sl@0
   385
sl@0
   386
sl@0
   387
protected:
sl@0
   388
sl@0
   389
    CFatMountCB* iFatMount; ///< Owning file system mount
sl@0
   390
    
sl@0
   391
    
sl@0
   392
sl@0
   393
    };
sl@0
   394
sl@0
   395
class CFatFileCB;
sl@0
   396
class RBitVector;
sl@0
   397
sl@0
   398
/** 
sl@0
   399
    A helper class. Holds the FAT volume parameters, which in turn are obtained from the Boot Sector
sl@0
   400
*/
sl@0
   401
class TFatVolParam
sl@0
   402
    {
sl@0
   403
    public:   
sl@0
   404
    
sl@0
   405
    TFatVolParam();
sl@0
   406
    void Populate(const TFatBootSector& aBootSector);
sl@0
   407
    TBool operator==(const TFatVolParam& aRhs) const;
sl@0
   408
sl@0
   409
    //-- simple getters
sl@0
   410
    TUint32 ClusterSizeLog2() const     {return iClusterSizeLog2;    }        
sl@0
   411
    TUint32 SectorSizeLog2() const      {return iSectorSizeLog2;     }        
sl@0
   412
    TUint32 RootDirEnd() const          {return iRootDirEnd;         }        
sl@0
   413
    TUint32 SectorsPerCluster() const   {return iSectorsPerCluster;  }        
sl@0
   414
    TUint32 RootDirectorySector() const {return iRootDirectorySector;}        
sl@0
   415
    TUint32 FirstFatSector() const      {return iFirstFatSector;     }        
sl@0
   416
    TUint32 TotalSectors() const        {return iTotalSectors;       }        
sl@0
   417
    TUint32 NumberOfFats() const        {return iNumberOfFats;       }        
sl@0
   418
    TUint32 FatSizeInBytes() const      {return iFatSizeInBytes;     }        
sl@0
   419
    TUint32 RootClusterNum() const      {return iRootClusterNum;     }        
sl@0
   420
    TUint32 FSInfoSectorNum() const     {return iFSInfoSectorNum;    }        
sl@0
   421
    TUint32 BkFSInfoSectorNum() const   {return iBkFSInfoSectorNum;  }        
sl@0
   422
    
sl@0
   423
    protected:
sl@0
   424
     TUint32 iClusterSizeLog2;      ///< Log2 of fat file system cluster size
sl@0
   425
     TUint32 iSectorSizeLog2;       ///< Log2 of media sector size
sl@0
   426
     TUint32 iRootDirEnd;           ///< End position of the root directory for Fat12/16
sl@0
   427
     TUint32 iSectorsPerCluster;    ///< Sector per cluster ratio for mounted Fat file system volume 
sl@0
   428
     TUint32 iRootDirectorySector;  ///< Start sector of the root directory for Fat12/16
sl@0
   429
     TUint32 iFirstFatSector;       ///< Start sector of the first Fat table in volume
sl@0
   430
     TUint32 iTotalSectors;         ///< Total sectors on media partition
sl@0
   431
     TUint32 iNumberOfFats;         ///< Number of Fats the volume has
sl@0
   432
     TUint32 iFatSizeInBytes;       ///< Size of a single Fat table in volume
sl@0
   433
     TUint32 iRootClusterNum;       ///< Cluster number for Root directory, for Fat32
sl@0
   434
     TUint32 iFSInfoSectorNum;      ///< FSInfo Sector number. If 0, this means that corresponding value isn't set in BPB
sl@0
   435
     TUint32 iBkFSInfoSectorNum;    ///< backup FSInfo Sector number
sl@0
   436
    };
sl@0
   437
sl@0
   438
TUint32 CalculatePageOffsetInCluster(TUint32 aPos, TUint aPageSzLog2);
sl@0
   439
class CLruCache;
sl@0
   440
class TLeafDirData;
sl@0
   441
class CLeafDirCache;
sl@0
   442
/**
sl@0
   443
Fat file system mount implmentation, provides all that is required of a plug in
sl@0
   444
file system mount as well as Fat mount specific functionality
sl@0
   445
*/
sl@0
   446
class CFatMountCB : public CLocDrvMountCB, 
sl@0
   447
                    public MFileSystemSubType,
sl@0
   448
                    public MFileSystemClusterSize,
sl@0
   449
                    public CMountCB::MFileAccessor
sl@0
   450
    {
sl@0
   451
public:
sl@0
   452
    static CFatMountCB* NewL();
sl@0
   453
    ~CFatMountCB();
sl@0
   454
    void ConstructL();
sl@0
   455
sl@0
   456
public:
sl@0
   457
    
sl@0
   458
    //-- overrides from the abstract CMountCB
sl@0
   459
    void MountL(TBool aForceMount);
sl@0
   460
    TInt ReMount();
sl@0
   461
    void Dismounted();
sl@0
   462
    void VolumeL(TVolumeInfo& aVolume) const;
sl@0
   463
    void SetVolumeL(TDes& aName);
sl@0
   464
    void MkDirL(const TDesC& aName);
sl@0
   465
    void RmDirL(const TDesC& aName);
sl@0
   466
    void DeleteL(const TDesC& aName);
sl@0
   467
    void RenameL(const TDesC& anOldName,const TDesC& anNewName);
sl@0
   468
    void ReplaceL(const TDesC& anOldName,const TDesC& anNewName);
sl@0
   469
    void EntryL(const TDesC& aName,TEntry& anEntry) const;
sl@0
   470
    void SetEntryL(const TDesC& aName,const TTime& aTime,TUint aMask,TUint aVal);
sl@0
   471
    void FileOpenL(const TDesC& aName,TUint aMode,TFileOpen anOpen,CFileCB* aFile);
sl@0
   472
    void DirOpenL(const TDesC& aName,CDirCB* aDir);
sl@0
   473
    void RawReadL(TInt64 aPos,TInt aLength,const TAny* aTrg,TInt anOffset,const RMessagePtr2& aMessage) const;
sl@0
   474
    void RawWriteL(TInt64 aPos,TInt aLength,const TAny* aSrc,TInt anOffset,const RMessagePtr2& aMessage);
sl@0
   475
    void GetShortNameL(const TDesC& aLongName,TDes& aShortName);
sl@0
   476
    void GetLongNameL(const TDesC& aShortName,TDes& aLongName);
sl@0
   477
    void ReadSectionL(const TDesC& aName,TInt aPos,TAny* aTrg,TInt aLength,const RMessagePtr2& aMessage);
sl@0
   478
    TInt CheckDisk();
sl@0
   479
    TInt ScanDrive();
sl@0
   480
    TInt ControlIO(const RMessagePtr2& aMessage,TInt aCommand,TAny* aParam1,TAny* aParam2);
sl@0
   481
    TInt Lock(TMediaPassword& aOld,TMediaPassword& aNew,TBool aStore);
sl@0
   482
    TInt Unlock(TMediaPassword& aPassword,TBool aStore);
sl@0
   483
    TInt ClearPassword(TMediaPassword& aPassword);
sl@0
   484
    TInt ErasePassword();
sl@0
   485
    TInt ForceRemountDrive(const TDesC8* aMountInfo,TInt aMountInfoMessageHandle,TUint aFlags);
sl@0
   486
sl@0
   487
    void FinaliseMountL();
sl@0
   488
    void FinaliseMountL(TInt aOperation, TAny* aParam1=NULL, TAny* aParam2=NULL);
sl@0
   489
    TInt MountControl(TInt aLevel, TInt aOption, TAny* aParam);
sl@0
   490
    TTimeIntervalSeconds TimeOffset() const;
sl@0
   491
sl@0
   492
protected:
sl@0
   493
sl@0
   494
    /** CFatMountCB states */
sl@0
   495
    enum  TFatMntState
sl@0
   496
        {
sl@0
   497
        ENotMounted = 0, ///< 0, initial state, not mounted     (mount state is inconsistent)
sl@0
   498
        EMounting,       ///< 1, Mounting started               (mount state is inconsistent)
sl@0
   499
        EInit_R,         ///< 2, Initialised and not written    (mount state is Consistent)
sl@0
   500
        EInit_W,         ///< 3, Initialised and written        (mount state is Consistent)
sl@0
   501
        EFinalised,      ///< 4, Finalised                      (mount state is Consistent)
sl@0
   502
        EDismounted,     ///< 5, Dismounted                     (mount state is inconsistent)
sl@0
   503
        EInit_Forced,    ///< 6, forcedly mounted, special case (mount state is inconsistent)
sl@0
   504
        };
sl@0
   505
sl@0
   506
    inline TFatMntState State() const;
sl@0
   507
    inline void SetState(TFatMntState aState); 
sl@0
   508
    TInt OpenMountForWrite();
sl@0
   509
    TInt IsFinalised(TBool& aFinalised);
sl@0
   510
sl@0
   511
    /** 
sl@0
   512
        A wrapper around TFatDriveInterface providing its instantination and destruction.
sl@0
   513
        You must not create objects of this class, use DriveInterface() instead.
sl@0
   514
    */
sl@0
   515
    class XDriveInterface: public TFatDriveInterface
sl@0
   516
        {
sl@0
   517
        public:
sl@0
   518
        XDriveInterface() : TFatDriveInterface() {}
sl@0
   519
        ~XDriveInterface() {Close();}
sl@0
   520
        TBool Init(CFatMountCB* aMount) {return TFatDriveInterface::Init(aMount);}
sl@0
   521
        };
sl@0
   522
sl@0
   523
public:
sl@0
   524
sl@0
   525
    enum TRenMode {EModeReplace,EModeRename};
sl@0
   526
sl@0
   527
    TBool ConsistentState() const; 
sl@0
   528
    void CheckWritableL() const;
sl@0
   529
    void CheckStateConsistentL() const;
sl@0
   530
sl@0
   531
    inline TBool ReadOnly(void) const;
sl@0
   532
    inline void  SetReadOnly(TBool aReadOnlyMode);
sl@0
   533
    inline TInt StartCluster(const TFatDirEntry & anEntry) const;
sl@0
   534
    inline CRawDisk& RawDisk() const;
sl@0
   535
    inline CFatFileSystem& FatFileSystem() const;
sl@0
   536
    inline CFatTable& FAT() const;
sl@0
   537
    inline TInt ClusterSizeLog2() const;
sl@0
   538
    inline TInt SectorSizeLog2() const;
sl@0
   539
    inline TInt TotalSectors() const;
sl@0
   540
    inline TInt SectorsPerCluster() const;
sl@0
   541
    inline TInt ClusterBasePosition() const;
sl@0
   542
    inline TInt RootDirectorySector() const;
sl@0
   543
    inline TUint RootDirEnd() const;
sl@0
   544
    inline TUint32 RootClusterNum() const;
sl@0
   545
    
sl@0
   546
    inline TFatType FatType() const;
sl@0
   547
    inline TBool Is16BitFat() const;
sl@0
   548
    inline TBool Is32BitFat() const {return EFalse;} //-- dummy
sl@0
   549
sl@0
   550
    inline TUint32 MaxClusterNumber() const;
sl@0
   551
    inline TInt StartOfFatInBytes() const;
sl@0
   552
    inline TUint32 FirstFatSector() const;
sl@0
   553
sl@0
   554
    inline TInt NumberOfFats() const;
sl@0
   555
    inline TInt FatSizeInBytes() const;
sl@0
   556
    inline TInt ClusterRelativePos(TInt aPos) const;
sl@0
   557
    inline TUint StartOfRootDirInBytes() const;
sl@0
   558
    inline TUint32 UsableClusters() const;
sl@0
   559
    inline TBool IsBadCluster(TInt aCluster) const;
sl@0
   560
    inline TBool IsRuggedFSys() const;
sl@0
   561
    inline void SetRuggedFSys(TBool aVal);
sl@0
   562
    
sl@0
   563
    inline TInt RootIndicator() const;
sl@0
   564
    
sl@0
   565
    inline TBool IsRootDir(const TEntryPos &aEntry) const;
sl@0
   566
    inline CAsyncNotifier* Notifier() const;
sl@0
   567
    inline TFatDriveInterface& DriveInterface() const;
sl@0
   568
    
sl@0
   569
    void ReadUidL(TInt aCluster,TEntry& anEntry) const;
sl@0
   570
    
sl@0
   571
    void ReadDirEntryL(const TEntryPos& aPos,TFatDirEntry& aDirEntry) const;
sl@0
   572
    void WriteDirEntryL(const TEntryPos& aPos,const TFatDirEntry& aDirEntry);
sl@0
   573
    
sl@0
   574
    void DirReadL(const TEntryPos& aPos,TInt aLength,TDes8& aDes) const;
sl@0
   575
    void DirWriteL(const TEntryPos& aPos,const TDesC8& aDes);
sl@0
   576
sl@0
   577
    void ReadFromClusterListL(TEntryPos& aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2& aMessage,TInt anOffset) const;
sl@0
   578
    void WriteToClusterListL(TEntryPos& aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2& aMessage,TInt anOffset, TInt& aBadcluster, TInt& aGoodcluster);
sl@0
   579
    void MoveToNextEntryL(TEntryPos& aPos) const;
sl@0
   580
    void MoveToDosEntryL(TEntryPos& aPos,TFatDirEntry& anEntry) const;
sl@0
   581
    void EnlargeL(TInt aSize);
sl@0
   582
    void ReduceSizeL(TInt aPos,TInt aLength);
sl@0
   583
    void DoDismount();
sl@0
   584
sl@0
   585
    
sl@0
   586
    
sl@0
   587
    void CheckIndirectionTableL(TInt& anEndCluster) const;
sl@0
   588
    void DoRenameOrReplaceL(const TDesC& anOldName,const TDesC& aNewName,TRenMode aMode,TEntryPos& aNewPos);
sl@0
   589
    void FindDosNameL(const TDesC& aName,TUint anAtt,TEntryPos& aDosEntryPos,TFatDirEntry& aDosEntry,TDes& aFileName,TInt anError) const;
sl@0
   590
    
sl@0
   591
    void Dismount();
sl@0
   592
    TBool IsEndOfClusterCh(TInt aCluster) const;
sl@0
   593
    void SetEndOfClusterCh(TInt &aCluster) const; 
sl@0
   594
    void InitializeRootEntry(TFatDirEntry & anEntry) const;
sl@0
   595
sl@0
   596
    TInt64 MakeLinAddrL(const TEntryPos& aPos) const;
sl@0
   597
    
sl@0
   598
    inline const TFatConfig& FatConfig() const;
sl@0
   599
    TBool CheckVolumeTheSame();
sl@0
   600
    
sl@0
   601
    void InvalidateLeafDirCache();
sl@0
   602
    
sl@0
   603
    void BlockMapReadFromClusterListL(TEntryPos& aPos, TInt aLength, SBlockMapInfo& aInfo);
sl@0
   604
    virtual TInt GetInterface(TInt aInterfaceId,TAny*& aInterface,TAny* aInput);
sl@0
   605
    virtual TInt GetFileUniqueId(const TDesC& aName, TInt64& aUniqueId);
sl@0
   606
    virtual TInt Spare3(TInt aVal, TAny* aPtr1, TAny* aPtr2);
sl@0
   607
    virtual TInt Spare2(TInt aVal, TAny* aPtr1, TAny* aPtr2);
sl@0
   608
    virtual TInt Spare1(TInt aVal, TAny* aPtr1, TAny* aPtr2);
sl@0
   609
sl@0
   610
public:
sl@0
   611
    
sl@0
   612
    // interface extension implementation
sl@0
   613
    virtual TInt SubType(TDes& aName) const;
sl@0
   614
    virtual TInt ClusterSize() const;
sl@0
   615
sl@0
   616
private:
sl@0
   617
sl@0
   618
        /** An ad hoc internal helper object for using in DoFindL() method and its derivatives */
sl@0
   619
        class TFindHelper
sl@0
   620
        {
sl@0
   621
        public:
sl@0
   622
            TFindHelper() {isInitialised = EFalse;}
sl@0
   623
            void  InitialiseL(const TDesC&  aTargetName);
sl@0
   624
            TBool MatchDosEntryName(const TUint8* apDosEntryName) const;
sl@0
   625
            TBool TrgtNameIsLegalDos() const {ASSERT (isInitialised) ;return isLegalDosName;}   
sl@0
   626
sl@0
   627
        private:
sl@0
   628
            TFindHelper(const TFindHelper&);
sl@0
   629
            TFindHelper& operator=(const TFindHelper&);
sl@0
   630
        public:
sl@0
   631
            TPtrC       iTargetName;        ///< pointer to the aTargetName, used in DoRummageDirCacheL() as a parameter
sl@0
   632
        private:
sl@0
   633
            TBool       isInitialised  :1;  ///< ETrue if the object is initialised. It can be done only once.
sl@0
   634
            TBool       isLegalDosName :1;  ///< ETrue if iTargetName is a legal DOS name
sl@0
   635
            TShortName  iShortName;         ///< a short DOS name in XXXXXXXXYYY format generated from aTargetName
sl@0
   636
        };
sl@0
   637
sl@0
   638
sl@0
   639
        /** 
sl@0
   640
        An ad hoc internal helper object for entry creations  
sl@0
   641
        */
sl@0
   642
        class XFileCreationHelper
sl@0
   643
        {
sl@0
   644
        public:
sl@0
   645
            XFileCreationHelper();
sl@0
   646
            ~XFileCreationHelper();
sl@0
   647
            void Close();
sl@0
   648
            void InitialiseL(const TDesC&  aTargetName);
sl@0
   649
            TInt GetValidatedShortName(TShortName& aShortName) const;
sl@0
   650
            void CheckShortNameCandidates(const TUint8* apDosEntryName);
sl@0
   651
    
sl@0
   652
            // inline functions for sets and gets
sl@0
   653
            //  note all the get functions have been checked against initialisation status
sl@0
   654
            inline TBool    IsInitialised() const;
sl@0
   655
            inline TUint16  NumOfAddingEntries() const;
sl@0
   656
            inline TEntryPos EntryAddingPos()const;
sl@0
   657
            inline TBool    IsNewEntryPosFound() const;
sl@0
   658
            inline TBool    IsTrgNameLegalDosName() const;
sl@0
   659
    
sl@0
   660
            inline void SetEntryAddingPos(const TEntryPos& aEntryPos);
sl@0
   661
            inline void SetIsNewEntryPosFound(TBool aFound);
sl@0
   662
    
sl@0
   663
        private:
sl@0
   664
            XFileCreationHelper(const XFileCreationHelper&);
sl@0
   665
            XFileCreationHelper& operator=(const TFindHelper&);
sl@0
   666
    
sl@0
   667
        private:
sl@0
   668
            TPtrC       iTargetName;        ///< pointer to hold the long file name of the target file
sl@0
   669
            TUint16     iNumOfAddingEntries;///< calculated number of entries to add
sl@0
   670
            TEntryPos   iEntryAddingPos;    ///< contains new entry position for adding if found any
sl@0
   671
            TBool       isNewEntryPosFound; ///< flags whether the position for new entries is found
sl@0
   672
            TBool       isInitialised   :1; ///< flags whether the object is initialised
sl@0
   673
            TBool       isTrgNameLegalDosName   :1; ///< flags whether the target file name is a valid Dos name
sl@0
   674
            /**
sl@0
   675
            an array that holds short name candidates, prepared on initialisation.
sl@0
   676
            */
sl@0
   677
            RArray<TShortName>  iShortNameCandidates;
sl@0
   678
        };
sl@0
   679
sl@0
   680
sl@0
   681
    TBool DoRummageDirCacheL(TUint anAtt,TEntryPos& aStartEntryPos,TFatDirEntry& aStartEntry,TEntryPos& aDosEntryPos,TFatDirEntry& aDosEntry,TDes& aFileName, const TFindHelper& aAuxParam, XFileCreationHelper* aFileCreationHelper, const TLeafDirData& aLeafDirData) const;
sl@0
   682
    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
   683
    void FindEntryStartL(const TDesC& aName,TUint anAtt,TFatDirEntry& anEntry,TEntryPos& aPos, XFileCreationHelper* aFileCreationHelper) const;
sl@0
   684
sl@0
   685
    void FindEntryStartL(const TDesC& aName,TUint anAtt,TFatDirEntry& anEntry,TEntryPos& aPos) const;
sl@0
   686
sl@0
   687
    void CheckFatForLoopsL(const TFatDirEntry& anEntry) const;
sl@0
   688
    void DoCheckFatForLoopsL(TInt aCluster,TInt& aPreviousCluster,TInt& aChangePreviousCluster,TInt& aCount) const;
sl@0
   689
    void InitializeL(const TLocalDriveCaps& aLocDrvCaps, TBool aIgnoreFSInfo=EFalse);
sl@0
   690
    void DoReadFromClusterListL(TEntryPos& aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2& aMessage,TInt anOffset) const;
sl@0
   691
    void DoWriteToClusterListL(TEntryPos& aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2& aMessage,TInt anOffset, TInt aLastcluster, TInt& aBadcluster, TInt& aGoodcluster);
sl@0
   692
    TBool IsUniqueNameL(const TShortName& aName,TInt aDirCluster);
sl@0
   693
    TBool FindShortNameL(const TShortName& aName,TEntryPos& anEntryPos);
sl@0
   694
    void ReplaceClashingNameL(const TShortName& aNewName,const TEntryPos& anEntryPos);
sl@0
   695
    TBool GenerateShortNameL(TInt aDirCluster,const TDesC& aLongName,TShortName& aShortName, TBool aForceRandomize=EFalse);
sl@0
   696
    TInt FindLeafDirL(const TDesC& aName, TLeafDirData& aLeafDir) const;
sl@0
   697
    
sl@0
   698
    TInt GetDirEntry(TEntryPos& aPos,TFatDirEntry& aDosEntry,TFatDirEntry& aStartEntry,TDes& aLongFileName) const;
sl@0
   699
    TBool DoGetDirEntryL(TEntryPos& aPos,TFatDirEntry& aDosEntry,TFatDirEntry& aStartEntry,TDes& aLongFileName) const;
sl@0
   700
sl@0
   701
    void WriteDirEntryL(TEntryPos& aPos,const TFatDirEntry& aFatDirEntry,const TDesC& aLongFileName);
sl@0
   702
    void EraseDirEntryL(TEntryPos aPos,const TFatDirEntry& anEntry);
sl@0
   703
    void EraseDirEntryL(const TEntryPos& aPos);
sl@0
   704
    void InitializeFirstDirClusterL(TInt aCluster,TInt aParentCluster);
sl@0
   705
    void AddDirEntryL(TEntryPos& aPos,TInt aNameLength);
sl@0
   706
    void ZeroDirClusterL(TInt aCluster);
sl@0
   707
    
sl@0
   708
    TInt DoWriteBootSector(TInt64 aMediaPos, const TFatBootSector& aBootSector) const;
sl@0
   709
    TInt DoReadBootSector(TInt64 aMediaPos, TFatBootSector& aBootSector) const;
sl@0
   710
    TInt ReadBootSector(TFatBootSector& aBootSector, TBool aDoNotReadBkBootSec=EFalse);
sl@0
   711
sl@0
   712
    TBool IsDirectoryEmptyL(TInt aCluster);
sl@0
   713
    void ExtendClusterListZeroedL(TInt aNumber,TInt& aCluster);
sl@0
   714
    void WritePasswordData();
sl@0
   715
    
sl@0
   716
    void WriteVolumeLabelL(const TDesC8& aVolumeLabel) const;
sl@0
   717
    TInt ReadVolumeLabelFile(TDes8& aLabel);
sl@0
   718
    void WriteVolumeLabelFileL(const TDesC8& aNewName);
sl@0
   719
    void FindVolumeLabelFileL(TDes8& aLabel, TEntryPos& aDosEntryPos, TFatDirEntry& aDosEntry);
sl@0
   720
    void GetVolumeLabelFromDiskL(const TFatBootSector& aBootSector);
sl@0
   721
    void TrimVolumeLabel(TDes8& aLabel) const;
sl@0
   722
sl@0
   723
    TInt    DoRunScanDrive();
sl@0
   724
    TBool   VolumeCleanL();
sl@0
   725
    void    SetVolumeCleanL(TBool aClean);
sl@0
   726
    TBool   VolCleanFlagSupported() const;
sl@0
   727
sl@0
   728
    void    DoUpdateFSInfoSectorsL(TBool) {return;} //-- dummy, only FAT32 has FSInfo sector
sl@0
   729
    void    UnFinaliseMountL();
sl@0
   730
    void    DoReMountL();
sl@0
   731
sl@0
   732
private:
sl@0
   733
    
sl@0
   734
    TBool ValidClusterNumber(TUint32 aCluster) const;
sl@0
   735
    void  CheckUnvisitedClustersL(const RBitVector& aFatBitVec) const;
sl@0
   736
    TInt  WalkClusterListL(RBitVector& aFatBitVec, TInt aCluster);
sl@0
   737
    void  ChkEntryL(RBitVector& aFatBitVec, const TFatDirEntry& anEntry);
sl@0
   738
    void  ChkDirL(RBitVector& aFatBitVec, TInt aDirCluster);
sl@0
   739
sl@0
   740
    CFatMountCB();
sl@0
   741
sl@0
   742
    TInt GetDosEntryFromNameL(const TDesC& aName, TEntryPos& aDosEntryPos, TFatDirEntry& aDosEntry);
sl@0
   743
    
sl@0
   744
    TInt MntCtl_DoCheckFileSystemMountable();
sl@0
   745
sl@0
   746
private:
sl@0
   747
sl@0
   748
    TBool iReadOnly : 1;        ///< if true, the drive is in read-only mode 
sl@0
   749
    TBool iRamDrive : 1;        ///< true if this is a RAM drive    
sl@0
   750
sl@0
   751
    TFatMntState iState;        ///< this mounnt internal state
sl@0
   752
    TFatType iFatType;          ///< FAT type, FAT12,16 or 32
sl@0
   753
sl@0
   754
    CLeafDirCache* iLeafDirCache;   ///< A cache for most recently visited directories, only valid when limit is set bigger than 1
sl@0
   755
    HBufC* iLastLeafDir;            ///< The last visited directory, only valid when limit of iLeafDirCache is less than 1 
sl@0
   756
    TInt iLastLeafDirCluster;       ///< Cluster number of the last visited cluster, only valid when limit of iLeafDirCache is less than 1
sl@0
   757
sl@0
   758
    TFatVolParam iVolParam;     ///< FAT volume parameters, populated form the boot sector values.
sl@0
   759
    
sl@0
   760
    TInt iFirstFreeByte;        ///< First free byte in media (start of the data area on the volume)
sl@0
   761
    TUint32 iUsableClusters;    ///< Number of usable cluster on the volume 
sl@0
   762
sl@0
   763
    CFatTable* iFatTable;       ///< Pointer to the volume Fat 
sl@0
   764
    CRawDisk* iRawDisk;         ///< Pointer to the raw data interface class
sl@0
   765
    
sl@0
   766
    CAsyncNotifier* iNotifier;  ///< Async notifier for notifying user of Fat error conditions 
sl@0
   767
    CLruCache*      iLruUidCache;   ///< LRU Data cache used for dealing with executable files' UIDs
sl@0
   768
sl@0
   769
    XDriveInterface iDriverInterface; ///< the object representing interface to the drive, provides read/write access and notifiers
sl@0
   770
    TInt            iChkDiscRecLevel; ///< Check disk recursion level counter. A temporary measure. 
sl@0
   771
    TFatConfig      iFatConfig;       ///< FAT parametrers from estart.txt
sl@0
   772
sl@0
   773
    XFileCreationHelper iFileCreationHelper;
sl@0
   774
sl@0
   775
#ifdef  _DEBUG
sl@0
   776
    private:
sl@0
   777
    //-- debug odds and ends
sl@0
   778
    inline TBool IsWriteFail()const;
sl@0
   779
    inline void SetWriteFail(TBool aIsWriteFail);
sl@0
   780
    inline TInt WriteFailCount()const;
sl@0
   781
    inline void SetWriteFailCount(TInt aFailCount);
sl@0
   782
    inline void DecWriteFailCount();
sl@0
   783
    inline TInt WriteFailError()const;
sl@0
   784
    inline void SetWriteFailError(TInt aErrorValue);
sl@0
   785
sl@0
   786
sl@0
   787
    TBool   iIsWriteFail : 1; ///< Flag to indicate if write failed used for debugging
sl@0
   788
    TBool   iCBRecFlag   : 1; ///< in debug mode used for checking unwanted recursion
sl@0
   789
sl@0
   790
    TInt    iWriteFailCount;  ///< Write fail count for debug
sl@0
   791
    TInt    iWriteFailError;  ///< Write fail error to use for debug
sl@0
   792
sl@0
   793
#endif
sl@0
   794
sl@0
   795
friend class CFatFormatCB;
sl@0
   796
friend class CScanDrive;
sl@0
   797
friend class TFatDriveInterface;
sl@0
   798
    };
sl@0
   799
sl@0
   800
sl@0
   801
sl@0
   802
sl@0
   803
/**
sl@0
   804
Fat file system file subsession implmentation, provides all that is required of a plug in
sl@0
   805
file system file as well as Fat specific functionality
sl@0
   806
*/
sl@0
   807
class CFatFileCB : public CFileCB, public CFileCB::MBlockMapInterface, public CFileCB::MExtendedFileInterface
sl@0
   808
    {
sl@0
   809
public:
sl@0
   810
    CFatFileCB();
sl@0
   811
    ~CFatFileCB();
sl@0
   812
public:
sl@0
   813
    void RenameL(const TDesC& aNewName);
sl@0
   814
    void ReadL(TInt aPos,TInt& aLength,const TAny* aDes,const RMessagePtr2& aMessage);
sl@0
   815
    void WriteL(TInt aPos,TInt& aLength,const TAny* aDes,const RMessagePtr2& aMessage);
sl@0
   816
    void SetSizeL(TInt aSize);
sl@0
   817
    void SetEntryL(const TTime& aTime,TUint aMask,TUint aVal);
sl@0
   818
    void FlushDataL();
sl@0
   819
    void FlushAllL();
sl@0
   820
public:
sl@0
   821
    void CheckPosL(TUint aPos);
sl@0
   822
    void SetL(const TFatDirEntry& aFatDirEntry,TShare aShare,const TEntryPos& aPos);
sl@0
   823
    void CreateSeekIndex();
sl@0
   824
    
sl@0
   825
    inline TBool IsSeekIndex() const;
sl@0
   826
sl@0
   827
    // from MBlockMapInterface
sl@0
   828
    TInt BlockMap(SBlockMapInfo& aInfo, TInt64& aStartPos, TInt64 aEndPos);
sl@0
   829
    
sl@0
   830
    // from CFileCB
sl@0
   831
    virtual TInt GetInterface(TInt aInterfaceId,TAny*& aInterface,TAny* aInput);
sl@0
   832
sl@0
   833
    // from CFileCB::MExtendedFileInterface
sl@0
   834
    virtual void ReadL(TInt64 aPos,TInt& aLength,TDes8* aDes,const RMessagePtr2& aMessage, TInt aOffset);
sl@0
   835
    virtual void WriteL(TInt64 aPos,TInt& aLength,const TDesC8* aDes,const RMessagePtr2& aMessage, TInt aOffset);
sl@0
   836
    virtual void SetSizeL(TInt64 aSize);
sl@0
   837
sl@0
   838
private:
sl@0
   839
    inline CFatMountCB& FatMount() const;
sl@0
   840
    inline CFatTable& FAT();
sl@0
   841
    inline TInt ClusterSizeLog2();
sl@0
   842
    inline TInt ClusterRelativePos(TInt aPos);
sl@0
   843
sl@0
   844
sl@0
   845
    void FlushStartClusterL();
sl@0
   846
    TInt SeekToPosition(TInt aNewCluster,TInt aClusterOffset);
sl@0
   847
    void SetSeekIndexValueL(TInt aFileCluster,TInt aStoredCluster);
sl@0
   848
    void ResizeIndex(TInt aNewMult,TUint aNewSize);
sl@0
   849
    TInt CalcSeekIndexSize(TUint aSize);
sl@0
   850
    TBool IsSeekBackwards(TUint aPos);
sl@0
   851
    void ClearIndex(TUint aNewSize);
sl@0
   852
    void DoSetSizeL(TUint aSize,TBool aIsSizeWrite);
sl@0
   853
    void WriteFileSizeL(TUint aSize);
sl@0
   854
sl@0
   855
private:
sl@0
   856
sl@0
   857
    TUint32* iSeekIndex;    ///< Seek index into file
sl@0
   858
    TInt iSeekIndexSize;    ///< size of seek index
sl@0
   859
    TBool iAttPending;      
sl@0
   860
    TInt iStartCluster;     ///< Start cluster number of file
sl@0
   861
    TEntryPos iCurrentPos;  ///< Current position in file data
sl@0
   862
    TEntryPos iFileDirPos;  ///< File directory entry position
sl@0
   863
    TBool iFileSizeModified; 
sl@0
   864
    };
sl@0
   865
//
sl@0
   866
sl@0
   867
/**
sl@0
   868
Fat file system directory subsession implmentation, provides all that is required of a plug in
sl@0
   869
file system directory as well as Fat specific functionality
sl@0
   870
*/
sl@0
   871
class CFatDirCB : public CDirCB
sl@0
   872
    {
sl@0
   873
public:
sl@0
   874
    static CFatDirCB* NewL();
sl@0
   875
    ~CFatDirCB();
sl@0
   876
public:
sl@0
   877
    void ReadL(TEntry& anEntry);
sl@0
   878
    void StoreLongEntryNameL(const TDesC& aName);
sl@0
   879
public:
sl@0
   880
    void SetDirL(const TFatDirEntry& anEntry,const TDesC& aMatchName);
sl@0
   881
    inline CFatMountCB& FatMount();
sl@0
   882
private:
sl@0
   883
    CFatDirCB();
sl@0
   884
private:
sl@0
   885
    TFatDirEntry iEntry;       ///< Current directory entry in this directory
sl@0
   886
    TEntryPos    iCurrentPos;  ///< Current position in directory
sl@0
   887
    HBufC*       iMatch;       ///< Current name being searched in directory (Dos Name)
sl@0
   888
    HBufC*       iLongNameBuf; ///< Long name storage   
sl@0
   889
    TBool        iMatchUid;    ///< Flag to indicate if UID matches
sl@0
   890
    };
sl@0
   891
sl@0
   892
/**
sl@0
   893
Fat file system Format subsession implmentation, provides all that is required of a plug in
sl@0
   894
file system format as well as Fat specific functionality
sl@0
   895
*/
sl@0
   896
class CFatFormatCB : public CFormatCB
sl@0
   897
    {
sl@0
   898
public:
sl@0
   899
    CFatFormatCB();
sl@0
   900
    ~CFatFormatCB();
sl@0
   901
public:
sl@0
   902
    
sl@0
   903
    //-- overrides from CFormatCB
sl@0
   904
    void DoFormatStepL();
sl@0
   905
sl@0
   906
private:
sl@0
   907
    //-- overrides from CFormatCB
sl@0
   908
    TInt GetInterface(TInt aInterfaceId,TAny*& aInterface,TAny* aInput);
sl@0
   909
sl@0
   910
private:    
sl@0
   911
    
sl@0
   912
    TInt DoProcessTVolFormatParam(const TVolFormatParam_FAT* apVolFormatParam);
sl@0
   913
sl@0
   914
    void CreateBootSectorL();
sl@0
   915
    void InitializeFormatDataL();
sl@0
   916
    void DoZeroFillMediaL(TInt64 aStartPos, TInt64 aEndPos);
sl@0
   917
     
sl@0
   918
    TInt InitFormatDataForVariableSizeDisk(TInt aDiskSizeInSectors);
sl@0
   919
    TInt InitFormatDataForFixedSizeDiskNormal(TInt aDiskSizeInSectors, const TLocalDriveCapsV6& aCaps);
sl@0
   920
    TInt InitFormatDataForFixedSizeDiskCustom(const TLDFormatInfo& aFormatInfo);
sl@0
   921
    TInt InitFormatDataForFixedSizeDiskUser(TInt aDiskSizeInSectors);
sl@0
   922
    void AdjustClusterSize(TInt aRecommendedSectorsPerCluster);
sl@0
   923
    TInt AdjustFirstDataSectorAlignment(TInt aBlockSize);
sl@0
   924
    TInt FirstDataSector() const;
sl@0
   925
    
sl@0
   926
    TInt HandleCorrupt(TInt aError);
sl@0
   927
    TInt BadSectorToCluster();
sl@0
   928
    void TranslateL();
sl@0
   929
    TInt DoTranslate(TPtr8& aBuf, RArray<TInt>& aArray);
sl@0
   930
    void RecordOldInfoL();
sl@0
   931
    TInt MaxFat12Sectors() const;
sl@0
   932
    TInt MaxFat16Sectors() const;
sl@0
   933
    inline TBool Is16BitFat() const;
sl@0
   934
    inline CFatMountCB& FatMount();
sl@0
   935
    inline CProxyDrive* LocalDrive();
sl@0
   936
    TFatType SuggestFatType() const;
sl@0
   937
sl@0
   938
private:
sl@0
   939
    
sl@0
   940
    TBool   iVariableSize;      ///< Flag to indicat if we are dealing with a variable size volume
sl@0
   941
    TInt    iBytesPerSector;    ///< Byte per sector of media
sl@0
   942
    TInt    iSectorSizeLog2;    ///< Sector size in log2
sl@0
   943
    TInt    iNumberOfFats;      ///< Number of Fats the volume will contain
sl@0
   944
    TInt    iReservedSectors;   ///< Number of reserved sectors in the volume
sl@0
   945
    TInt    iRootDirEntries;    ///< Nummer of root directory entries the root dir will have, specific to Fat12/16 volumes
sl@0
   946
    TInt    iSectorsPerCluster; ///< Sector per cluster ration the volume will be formatted with
sl@0
   947
    TInt    iSectorsPerFat;     ///< Number of sectors the Fat uses
sl@0
   948
    TInt    iMaxDiskSectors;       ///< number of sectors the volume has
sl@0
   949
    TFormatInfo iFormatInfo;    ///< format information for a custom format
sl@0
   950
    TBuf8<16>   iFileSystemName;///< Buffer to contain the volume name 
sl@0
   951
    TInt    iHiddenSectors;     ///< Number of hidden sectors in the volume
sl@0
   952
    TInt    iNumberOfHeads;     ///< Number of heads the media device has, not used so far as only used on solid state media.
sl@0
   953
    TInt    iSectorsPerTrack;   ///< Number of sectors the media device has, not used so far as only used on solid state media.
sl@0
   954
    RArray<TInt> iBadClusters;  ///< Array of bad cluster numbers
sl@0
   955
    RArray<TInt> iBadSectors;   ///< Array of bad sector numbers
sl@0
   956
    TBool iDiskCorrupt;         ///< Disk is corrupt when format or not
sl@0
   957
    TInt iOldFirstFreeSector;
sl@0
   958
    TInt iOldSectorsPerCluster;
sl@0
   959
    };
sl@0
   960
sl@0
   961
sl@0
   962
/**
sl@0
   963
Required file system class used by file server to create the file system objects
sl@0
   964
*/
sl@0
   965
class CFatFileSystem : public CFileSystem
sl@0
   966
    {
sl@0
   967
public:
sl@0
   968
    static CFatFileSystem* New();
sl@0
   969
    ~CFatFileSystem();
sl@0
   970
public:
sl@0
   971
    TInt Install();
sl@0
   972
    CMountCB* NewMountL() const;
sl@0
   973
    CFileCB* NewFileL() const;
sl@0
   974
    CDirCB* NewDirL() const;
sl@0
   975
    CFormatCB* NewFormatL() const;
sl@0
   976
    void DriveInfo(TDriveInfo& anInfo,TInt aDriveNumber) const;
sl@0
   977
    TInt DefaultPath(TDes& aPath) const;
sl@0
   978
    TBool IsExtensionSupported() const;
sl@0
   979
    TBool GetUseLocalTime() const;
sl@0
   980
    void SetUseLocalTime(TBool aFlag);
sl@0
   981
    TInt GetInterface(TInt aInterfaceId, TAny*& aInterface,TAny* aInput);
sl@0
   982
protected:
sl@0
   983
    CFatFileSystem();
sl@0
   984
    /**
sl@0
   985
    If true, then local time will be used when writing timestamps to FS. When reading,
sl@0
   986
    timestamps will be assumed local and converted back to UTC.
sl@0
   987
    At present, this behaviour will also be conditional upon a particular drive being logically removable.
sl@0
   988
    */
sl@0
   989
    TBool iUseLocalTimeIfRemovable;
sl@0
   990
    };
sl@0
   991
sl@0
   992
sl@0
   993
sl@0
   994
/**
sl@0
   995
Locale utilities allows the file system to call into a specific locale for tasks
sl@0
   996
such as Dos name to unicode conversions and testing the legality of characters for
sl@0
   997
any given locale.
sl@0
   998
*/
sl@0
   999
class LocaleUtils
sl@0
  1000
sl@0
  1001
    {
sl@0
  1002
public:
sl@0
  1003
    static void ConvertFromUnicodeL(TDes8& aForeign, const TDesC16& aUnicode, TFatUtilityFunctions::TOverflowAction aOverflowAction=TFatUtilityFunctions::EOverflowActionTruncate);
sl@0
  1004
    static void ConvertToUnicodeL(TDes16& aUnicode, const TDesC8& aForeign, TFatUtilityFunctions::TOverflowAction aOverflowAction=TFatUtilityFunctions::EOverflowActionTruncate);
sl@0
  1005
    static TBool IsLegalShortNameCharacter(TUint aCharacter,TBool aUseExtendedChars=EFalse);
sl@0
  1006
    };
sl@0
  1007
sl@0
  1008
//
sl@0
  1009
sl@0
  1010
TPtrC RemoveTrailingDots(const TDesC& aName);
sl@0
  1011
sl@0
  1012
/**
sl@0
  1013
Indicates if a number passed in is a power of two
sl@0
  1014
@return ETrue if aVal is a power of 2 
sl@0
  1015
*/
sl@0
  1016
inline TBool IsPowerOf2(TUint32 aVal);
sl@0
  1017
sl@0
  1018
/**
sl@0
  1019
Calculates the log2 of a number
sl@0
  1020
sl@0
  1021
@param aNum Number to calulate the log two of
sl@0
  1022
@return The log two of the number passed in
sl@0
  1023
*/
sl@0
  1024
TUint32 Log2(TUint32 aVal);
sl@0
  1025
sl@0
  1026
/** @return 2^aVal*/
sl@0
  1027
inline TUint32 Pow2(TUint32 aVal);
sl@0
  1028
sl@0
  1029
sl@0
  1030
/**
sl@0
  1031
Converts Dos time (from a directory entry) to TTime format
sl@0
  1032
sl@0
  1033
@param aDosTime Dos format time
sl@0
  1034
@param aDosDate Dos format Date
sl@0
  1035
@return TTime format of Dos time passed in 
sl@0
  1036
*/
sl@0
  1037
TTime DosTimeToTTime(TInt aDosTime,TInt aDosDate);
sl@0
  1038
/**
sl@0
  1039
Converts TTime format to Dos time format
sl@0
  1040
sl@0
  1041
@param aTime TTime to convert to Dos time
sl@0
  1042
@return Dos time format
sl@0
  1043
*/
sl@0
  1044
TInt DosTimeFromTTime(const TTime& aTime);
sl@0
  1045
/**
sl@0
  1046
Converts TTime format to Dos time format
sl@0
  1047
sl@0
  1048
@param aTime TTime to convert to Dos Date
sl@0
  1049
@return Dos Date format
sl@0
  1050
*/
sl@0
  1051
TInt DosDateFromTTime(const TTime& aTime);
sl@0
  1052
/**
sl@0
  1053
Converts Dos Directory entry format to 8.3 format
sl@0
  1054
sl@0
  1055
@param aDosName Directory entry format with space delimeter
sl@0
  1056
@return 8.3 Dos filename format
sl@0
  1057
*/
sl@0
  1058
TBuf8<12> DosNameToStdFormat(const TDesC8& aDosName);
sl@0
  1059
/**
sl@0
  1060
Converts 8.3 format to Dos Directory entry format 
sl@0
  1061
sl@0
  1062
@param aStdFormatName 8.3 Dos filename format
sl@0
  1063
@return Directory entry format with space delimeter
sl@0
  1064
*/
sl@0
  1065
TBuf8<12> DosNameFromStdFormat(const TDesC8& aStdFormatName);
sl@0
  1066
/**
sl@0
  1067
Fault function calls user panic with a fault reason
sl@0
  1068
sl@0
  1069
@param Enumerated fault reason
sl@0
  1070
*/
sl@0
  1071
void Fault(TFault aFault);
sl@0
  1072
/**
sl@0
  1073
calculates the number of VFat directory entries for a given file/directory name length
sl@0
  1074
sl@0
  1075
@param the length in characters of the name
sl@0
  1076
@return the number of VFat entries required
sl@0
  1077
*/
sl@0
  1078
TInt NumberOfVFatEntries(TInt aNameLength);
sl@0
  1079
/**
sl@0
  1080
Calculates the check sum for a standard directory entry
sl@0
  1081
sl@0
  1082
@param the Dos name for the directory entry
sl@0
  1083
@return the checksum
sl@0
  1084
*/
sl@0
  1085
TUint8 CalculateShortNameCheckSum(const TDesC8& aShortName);
sl@0
  1086
sl@0
  1087
sl@0
  1088
TBool IsLegalDosName(const TDesC&  aName,TBool anAllowWildCards,TBool aUseExtendedChars, TBool aInScanDrive, TBool aAllowLowerCase, TBool aIsForFileCreation);
sl@0
  1089
TBool IsLegalDOSNameChar(TChar aCharacter, TBool aUseExtendedChars);
sl@0
  1090
sl@0
  1091
sl@0
  1092
sl@0
  1093
//-----------------------------------------------------------------------------
sl@0
  1094
sl@0
  1095
/**
sl@0
  1096
    This class represents a bit vector i.e. an array of bits. Vector size can be 1..2^32 bits.
sl@0
  1097
*/
sl@0
  1098
class RBitVector
sl@0
  1099
    {
sl@0
  1100
 public:
sl@0
  1101
    
sl@0
  1102
    RBitVector(); //-- Creates an empty vector. see Create() methods for memory allocation
sl@0
  1103
   ~RBitVector(); 
sl@0
  1104
    
sl@0
  1105
    void Close(); 
sl@0
  1106
    
sl@0
  1107
    TInt Create(TUint32 aNumBits);
sl@0
  1108
    void CreateL(TUint32 aNumBits);
sl@0
  1109
sl@0
  1110
    inline TUint32 Size() const;
sl@0
  1111
sl@0
  1112
    //-- single bit manipulation methods
sl@0
  1113
    inline TBool operator[](TUint32 aIndex) const;
sl@0
  1114
    inline void SetBit(TUint32 aIndex);
sl@0
  1115
    inline void ResetBit(TUint32 aIndex);
sl@0
  1116
    inline void InvertBit(TUint32 aIndex);
sl@0
  1117
    inline void SetBitVal(TUint32 aIndex, TBool aVal);
sl@0
  1118
    
sl@0
  1119
    void Fill(TBool aVal);
sl@0
  1120
    void Fill(TUint32 aIndexFrom, TUint32 aIndexTo, TBool aVal);
sl@0
  1121
    void Invert();
sl@0
  1122
   
sl@0
  1123
    TBool operator==(const RBitVector& aRhs) const; 
sl@0
  1124
    TBool operator!=(const RBitVector& aRhs) const;
sl@0
  1125
sl@0
  1126
    //-- logical operations between 2 vectors. 
sl@0
  1127
    void And(const RBitVector& aRhs);
sl@0
  1128
    void Or (const RBitVector& aRhs);
sl@0
  1129
    void Xor(const RBitVector& aRhs);
sl@0
  1130
sl@0
  1131
    TBool Diff(const RBitVector& aRhs, TUint32& aDiffIndex) const;
sl@0
  1132
sl@0
  1133
    /** Bit search specifiers */
sl@0
  1134
    enum TFindDirection
sl@0
  1135
        {
sl@0
  1136
        ELeft,      ///< Search from the given position to the left (towards lower index)
sl@0
  1137
        ERight,     ///< Search from the given position to the right (towards higher index)
sl@0
  1138
        ENearestL,  ///< Search in both directions starting from the given position; in the case of the equal distances return the position to the left
sl@0
  1139
        ENearestR   ///< Search in both directions starting from the given position; in the case of the equal distances return the position to the right
sl@0
  1140
sl@0
  1141
        //-- N.B the current position the search starts with isn't included to the search.
sl@0
  1142
        };
sl@0
  1143
sl@0
  1144
    TBool Find(TUint32& aStartPos, TBool aBitVal, TFindDirection aDir) const;
sl@0
  1145
sl@0
  1146
    /** panic codes */
sl@0
  1147
    enum TPanicCode
sl@0
  1148
        {
sl@0
  1149
        EIndexOutOfRange,       ///< index out of range
sl@0
  1150
        EWrondFindDirection,    ///< a value doesn't belong to TFindDirection
sl@0
  1151
        ESizeMismatch,          ///< Size mismatch for binary operators
sl@0
  1152
        ENotInitialised,        ///< No memory allocated for the array
sl@0
  1153
        ENotImplemented,        ///< functionality isn't implemented
sl@0
  1154
        };
sl@0
  1155
sl@0
  1156
 protected:
sl@0
  1157
    
sl@0
  1158
    //-- these are outlawed. Can't use them because memory allocator can leave and we don't have conthrol on it  in these methods. 
sl@0
  1159
    RBitVector(const RBitVector& aRhs);            
sl@0
  1160
    RBitVector& operator=(const RBitVector& aRhs); 
sl@0
  1161
  
sl@0
  1162
    void Panic(TPanicCode aPanicCode) const;
sl@0
  1163
sl@0
  1164
    inline TUint32 WordNum(TUint32 aBitPos) const;
sl@0
  1165
    inline TUint32 BitInWord(TUint32 aBitPos) const;
sl@0
  1166
sl@0
  1167
 private:
sl@0
  1168
    TBool FindToRight(TUint32& aStartPos, TBool aBitVal) const;
sl@0
  1169
    TBool FindToLeft (TUint32& aStartPos, TBool aBitVal) const;
sl@0
  1170
    TBool FindNearest(TUint32& aStartPos, TBool aBitVal, TBool aToLeft) const;
sl@0
  1171
   
sl@0
  1172
    inline TUint32 MaskLastWord(TUint32 aVal) const; 
sl@0
  1173
    inline TBool ItrLeft(TUint32& aIdx) const;
sl@0
  1174
    inline TBool ItrRight(TUint32& aIdx) const;
sl@0
  1175
sl@0
  1176
sl@0
  1177
 protected:
sl@0
  1178
sl@0
  1179
    TUint32   iNumBits; ///< number of bits in the vector
sl@0
  1180
    TUint32*  ipData;   ///< pointer to the data 
sl@0
  1181
    TUint32   iNumWords;///< number of 32-bit words that store bits
sl@0
  1182
    };
sl@0
  1183
sl@0
  1184
sl@0
  1185
//-----------------------------------------------------------------------------
sl@0
  1186
sl@0
  1187
sl@0
  1188
#include "sl_std.inl"
sl@0
  1189
#include "sl_bpb.inl"
sl@0
  1190
#include "fat_dir_entry.inl"
sl@0
  1191
sl@0
  1192
#endif //SL_STD_H