os/kernelhwsrv/userlibandfileserver/fileserver/sfat32/inc/sl_fatcache32.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) 1998-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\sfat32\inc\sl_facache32.h
sl@0
    15
// FAT32 various cache classes definition
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file
sl@0
    21
 @internalTechnology
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef SL_FAT_CACHE_32_H
sl@0
    25
#define SL_FAT_CACHE_32_H
sl@0
    26
sl@0
    27
#include "sl_fatcache.h"
sl@0
    28
sl@0
    29
class CFat32LruCachePage;
sl@0
    30
sl@0
    31
sl@0
    32
//---------------------------------------------------------------------------------------------------------------------------------
sl@0
    33
sl@0
    34
/**
sl@0
    35
    FAT32 LRU paged cache. Used for FAT32 only.
sl@0
    36
sl@0
    37
    Consists of LRU list of cache pages; Each page is logically divided to page sectors. The number of pages depends on the
sl@0
    38
    maximal amount of memory this cache allowed to use.  Usually, whole FAT32 can not be cached fully because of its large size.
sl@0
    39
    So, this type caches the most receinlly used areas of the FAT32. This is the wriite-back cache.
sl@0
    40
 
sl@0
    41
    Read granularity: One page, which size is 2^aRdGranularityLog2
sl@0
    42
    Write granularity: cache's page sector; its size is 2^aWrGranularityLog2
sl@0
    43
*/
sl@0
    44
class CFat32LruCache : public CFatPagedCacheBase
sl@0
    45
{
sl@0
    46
 public:
sl@0
    47
sl@0
    48
    static CFat32LruCache* NewL(CFatMountCB* aOwner, TUint32 aMaxMemSize, TUint32 aRdGranularityLog2, TUint32 aWrGranularityLog2);
sl@0
    49
sl@0
    50
    //-- overrides from base class
sl@0
    51
    virtual void Close(TBool aDiscardDirtyData);
sl@0
    52
    virtual void FlushL();
sl@0
    53
sl@0
    54
    virtual TUint32 ReadEntryL(TUint32 aIndex);
sl@0
    55
    virtual void WriteEntryL(TUint32 aIndex, TUint32 aEntry);
sl@0
    56
sl@0
    57
    virtual TInt Invalidate();
sl@0
    58
    virtual TInt InvalidateRegion(TUint32 aStartEntry, TUint32 aNumEntries);
sl@0
    59
    
sl@0
    60
sl@0
    61
    virtual CFatBitCache* BitCacheInterface();
sl@0
    62
sl@0
    63
 public:     
sl@0
    64
     TBool FindFreeEntryInCacheSectorL(TUint32& aFatEntryIndex);
sl@0
    65
sl@0
    66
 private:
sl@0
    67
    
sl@0
    68
    void InitialiseL(CFatMountCB* aOwner, TUint32 aFatSize, TUint32 aRdGranularityLog2, TUint32 aWrGranularityLog2);
sl@0
    69
    
sl@0
    70
    CFat32LruCache();
sl@0
    71
    CFat32LruCache(const CFat32LruCache&);
sl@0
    72
    CFat32LruCache& operator=(const CFat32LruCache&);
sl@0
    73
    
sl@0
    74
    TBool ReadCachedEntryL(TUint32 aFatIndex, TFat32Entry& aResult);
sl@0
    75
    TBool WriteCachedEntryL(TUint32 aFatIndex, TFat32Entry aFatEntry);
sl@0
    76
sl@0
    77
    CFat32LruCachePage* DoGetSpareCachePageL();
sl@0
    78
sl@0
    79
    void AssertCacheReallyClean() ;
sl@0
    80
sl@0
    81
 private:
sl@0
    82
sl@0
    83
    typedef TDblQue<CFat32LruCachePage> TPageList;
sl@0
    84
    typedef TDblQueIter<CFat32LruCachePage> TPageIterator;
sl@0
    85
sl@0
    86
    TUint32   iMaxFatEntries;       ///< maximal number of FAT entries in FAT table
sl@0
    87
    TUint     iNumPagesAllocated;   ///< number of pages currently allocated
sl@0
    88
    TUint     iMaxPages;            ///< maximal pages allowed to allocate
sl@0
    89
    TPageList iPageList;            ///< LRU list of cache pages.
sl@0
    90
sl@0
    91
    
sl@0
    92
    CFatBitCache *iBitCache; ///< pointer to the FAT bit supercache
sl@0
    93
sl@0
    94
};
sl@0
    95
sl@0
    96
sl@0
    97
//---------------------------------------------------------------------------------------------------------------------------------
sl@0
    98
sl@0
    99
/**
sl@0
   100
    FAT32 LRU cache page. Used only by CFat32LruCache. 
sl@0
   101
*/
sl@0
   102
class CFat32LruCachePage : public CFatCachePageBase
sl@0
   103
{
sl@0
   104
 public:
sl@0
   105
sl@0
   106
    static CFat32LruCachePage* NewL(CFatPagedCacheBase& aCache);
sl@0
   107
sl@0
   108
    //-- overrides
sl@0
   109
    virtual TBool ReadCachedEntryL (TUint32 aFatIndex, TUint32& aResult);
sl@0
   110
    virtual TBool WriteCachedEntryL(TUint32 aFatIndex, TUint32 aFatEntry); 
sl@0
   111
    virtual TUint32 ReadFromMediaL(TUint32 aFatIndex);
sl@0
   112
    //----
sl@0
   113
sl@0
   114
 private:
sl@0
   115
    CFat32LruCachePage(CFatPagedCacheBase& aCache);
sl@0
   116
sl@0
   117
    //-- outlaws here
sl@0
   118
    CFat32LruCachePage();
sl@0
   119
    CFat32LruCachePage(const CFat32LruCachePage&);
sl@0
   120
    CFat32LruCachePage& operator=(const CFat32LruCachePage&);
sl@0
   121
sl@0
   122
    inline TFat32Entry* GetEntryPtr(TUint32 aFatIndex) const;
sl@0
   123
    virtual void DoWriteSectorL(TUint32 aSector);
sl@0
   124
sl@0
   125
 private: 
sl@0
   126
    enum {KFat32EntryMask = 0x0FFFFFFF}; ///< FAT32 entry mask 
sl@0
   127
sl@0
   128
 public:
sl@0
   129
    TDblQueLink iLink; ///< list link object. See TPageList
sl@0
   130
};
sl@0
   131
sl@0
   132
//---------------------------------------------------------------------------------------------------------------------------------
sl@0
   133
sl@0
   134
/**
sl@0
   135
    FAT32 bit supercache. This is a special cache above the CFat32LruCache.
sl@0
   136
    Used for quick lookup for the free entries in FAT32 table without accessing media and thrashing FAT32 LRU cache.
sl@0
   137
    
sl@0
   138
    Logically consists of a bit vector, where each bit represents one FAT sector (one unit of read granularity within CFat32LruCachePage)
sl@0
   139
    for the _whole_ FAT table.
sl@0
   140
    
sl@0
   141
    If some bit in the vector is set to '1' it means that the corresponding FAT cache sector (not necessarily currently cached) _may_ have
sl@0
   142
    a at least one free FAT entry. If the bit is '0' it means that there is no free fat entries in this part of the FAT.
sl@0
   143
sl@0
   144
    The situation when bit set to '1' corresponds to the FAT cache sector without free entries is quite possible, but it is resolved by this cache.
sl@0
   145
    The situation when '0' bit corresponds to the fat sector that _does_ contain free entries is extremely unlikely and can be
sl@0
   146
    caused by direct raw writes to the FAT, for example. Nothing terribly wrong with this situation, the search for free entry will fall back
sl@0
   147
    to the old algorithm CFatTable::FindClosestFreeClusterL() .
sl@0
   148
    
sl@0
   149
    The information in this cache is also updated on flushing dirty sectros by  CFat32LruCachePage.
sl@0
   150
sl@0
   151
sl@0
   152
*/
sl@0
   153
class CFatBitCache : public CBase
sl@0
   154
{
sl@0
   155
 public:
sl@0
   156
sl@0
   157
    ~CFatBitCache();
sl@0
   158
 
sl@0
   159
    static CFatBitCache* New(CFat32LruCache& aOnwerFatCache);
sl@0
   160
sl@0
   161
    void Close();
sl@0
   162
   
sl@0
   163
    TBool StartPopulating();
sl@0
   164
    TBool FinishPopulating(TBool aSuccess);
sl@0
   165
sl@0
   166
    
sl@0
   167
    /** possible states of this cache */
sl@0
   168
    enum TState
sl@0
   169
        {
sl@0
   170
        EInvalid,       ///< initial, invalid
sl@0
   171
        ENotPopulated,  ///< initialised, but not populated yet
sl@0
   172
        EPopulating,    ///< in the process of populating
sl@0
   173
        EPopulated,     ///< successfully populated; the only consistent state.
sl@0
   174
        };
sl@0
   175
    
sl@0
   176
    inline TState State() const;
sl@0
   177
    inline TBool  UsableState() const;
sl@0
   178
    inline TBool  FatSectorHasFreeEntry(TUint32 aFatSectorNum) const;
sl@0
   179
    inline void   SetFreeEntryInFatSector(TUint32 aFatSectorNum, TBool aHasFreeEntry);
sl@0
   180
sl@0
   181
    TBool SetFreeFatEntry(TUint32 aFatIndex);
sl@0
   182
    TInt  FindClosestFreeFatEntry(TUint32& aFatIndex);
sl@0
   183
    void  MarkFatRange(TUint32 aStartFatIndex, TUint32 aEndFatIndex, TBool aAsFree);
sl@0
   184
sl@0
   185
sl@0
   186
    void Dump() const;
sl@0
   187
sl@0
   188
 private:
sl@0
   189
sl@0
   190
    //-- outlaws
sl@0
   191
    CFatBitCache();
sl@0
   192
    CFatBitCache(const CFatBitCache&);
sl@0
   193
    CFatBitCache& operator=(const CFatBitCache&);
sl@0
   194
sl@0
   195
    CFatBitCache(CFat32LruCache& aOnwerFatCache);
sl@0
   196
sl@0
   197
    TInt Initialise();
sl@0
   198
sl@0
   199
    inline void SetState(TState aState);
sl@0
   200
    inline TUint32 FatIndexToCacheSectorNumber(TUint32 aFatIndex) const;
sl@0
   201
    inline TUint32 CacheSectorNumberToFatIndex(TUint32 aCacheSecNum) const;
sl@0
   202
sl@0
   203
 private:
sl@0
   204
sl@0
   205
    TState          iState;             ///< internal state of the cache
sl@0
   206
    RBitVector      iBitCache;          ///< bit vector itself
sl@0
   207
    TUint32         iFatIdxToSecCoeff;  ///< Log2(FatCacheSectorSize/Sizeof(FAT32 entry)). Used to convert FAT32 index to FAT32 cache sector number and back.
sl@0
   208
    CFat32LruCache& iOwnerFatCache;     ///< reference to the owner FAT32 LRU cache
sl@0
   209
sl@0
   210
    DBG_STATEMENT(TUint  iPopulatingThreadId;)  ///< used in debug mode for checking multithreading issues
sl@0
   211
};
sl@0
   212
sl@0
   213
//---------------------------------------------------------------------------------------------------------------------------------
sl@0
   214
sl@0
   215
#include "sl_fatcache32.inl"
sl@0
   216
sl@0
   217
#endif //SL_FAT_CACHE_32_H
sl@0
   218
sl@0
   219
sl@0
   220
sl@0
   221
sl@0
   222
sl@0
   223
sl@0
   224
sl@0
   225
sl@0
   226
sl@0
   227
sl@0
   228
sl@0
   229
sl@0
   230
sl@0
   231
sl@0
   232
sl@0
   233
sl@0
   234
sl@0
   235
sl@0
   236
sl@0
   237
sl@0
   238
sl@0
   239
sl@0
   240