author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
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_INL |
sl@0 | 25 |
#define SL_FAT_CACHE_32_INL |
sl@0 | 26 |
|
sl@0 | 27 |
|
sl@0 | 28 |
//----------------------------------------------------------------------------- |
sl@0 | 29 |
|
sl@0 | 30 |
|
sl@0 | 31 |
void CFatBitCache::SetState(CFatBitCache::TState aState) |
sl@0 | 32 |
{ |
sl@0 | 33 |
iState = aState; |
sl@0 | 34 |
} |
sl@0 | 35 |
|
sl@0 | 36 |
/** |
sl@0 | 37 |
Converts FAT index to the corresponding bit array bit number (or FAT cache sector number). |
sl@0 | 38 |
@param aFatIndex index in the FAT |
sl@0 | 39 |
@return corresponding index in the FAT bit array |
sl@0 | 40 |
*/ |
sl@0 | 41 |
TUint32 CFatBitCache::FatIndexToCacheSectorNumber(TUint32 aFatIndex) const |
sl@0 | 42 |
{ |
sl@0 | 43 |
ASSERT(aFatIndex >= KFatFirstSearchCluster); |
sl@0 | 44 |
return (aFatIndex >> iFatIdxToSecCoeff); |
sl@0 | 45 |
} |
sl@0 | 46 |
|
sl@0 | 47 |
/** |
sl@0 | 48 |
Converts FAT32 cache sector number to the FAT32 entry index (in the beginning of this cache sector) |
sl@0 | 49 |
@param aCacheSecNum index in the FAT bit array (or FAT cache sector number) |
sl@0 | 50 |
@return corresponding index in the FAT |
sl@0 | 51 |
|
sl@0 | 52 |
*/ |
sl@0 | 53 |
TUint32 CFatBitCache::CacheSectorNumberToFatIndex(TUint32 aCacheSecNum) const |
sl@0 | 54 |
{ |
sl@0 | 55 |
ASSERT(aCacheSecNum < iBitCache.Size()); |
sl@0 | 56 |
return (aCacheSecNum << iFatIdxToSecCoeff); |
sl@0 | 57 |
} |
sl@0 | 58 |
|
sl@0 | 59 |
/** @return state of the cache*/ |
sl@0 | 60 |
CFatBitCache::TState CFatBitCache::State() const |
sl@0 | 61 |
{ |
sl@0 | 62 |
return iState; |
sl@0 | 63 |
} |
sl@0 | 64 |
|
sl@0 | 65 |
/** |
sl@0 | 66 |
@return ETrue if the cache can be used, i.e. is fully populated |
sl@0 | 67 |
*/ |
sl@0 | 68 |
TBool CFatBitCache::UsableState() const |
sl@0 | 69 |
{ |
sl@0 | 70 |
return State() == EPopulated; |
sl@0 | 71 |
} |
sl@0 | 72 |
|
sl@0 | 73 |
|
sl@0 | 74 |
/** |
sl@0 | 75 |
@return ETrue if the FAT cache sector number "aFatSectorNum" is marked as having at least one free FAT entry. |
sl@0 | 76 |
N.B. The cache must be in consistent state, i.e. fully populated. |
sl@0 | 77 |
*/ |
sl@0 | 78 |
TBool CFatBitCache::FatSectorHasFreeEntry(TUint32 aFatSectorNum) const |
sl@0 | 79 |
{ |
sl@0 | 80 |
ASSERT(UsableState()); |
sl@0 | 81 |
return iBitCache[aFatSectorNum]; |
sl@0 | 82 |
} |
sl@0 | 83 |
|
sl@0 | 84 |
/** |
sl@0 | 85 |
Mark FAT cache sector number "aFatSectorNum" is as having/not having free FAT entry. |
sl@0 | 86 |
N.B. The cache must be in consistent state, i.e. fully populated. |
sl@0 | 87 |
|
sl@0 | 88 |
@param aFatSectorNum FAT32 cache sector number [index in a bit vector] |
sl@0 | 89 |
@param aHasFreeEntry ETrue if we want to mark this sector as having free FAT entries; |
sl@0 | 90 |
EFalse if we want to mark this sector as NOT having free FAT entries; |
sl@0 | 91 |
*/ |
sl@0 | 92 |
void CFatBitCache::SetFreeEntryInFatSector(TUint32 aFatSectorNum, TBool aHasFreeEntry) |
sl@0 | 93 |
{ |
sl@0 | 94 |
ASSERT(UsableState()); |
sl@0 | 95 |
iBitCache.SetBitVal(aFatSectorNum, aHasFreeEntry); |
sl@0 | 96 |
} |
sl@0 | 97 |
|
sl@0 | 98 |
|
sl@0 | 99 |
#endif //SL_FAT_CACHE_32_INL |
sl@0 | 100 |
|
sl@0 | 101 |
|
sl@0 | 102 |
|
sl@0 | 103 |
|
sl@0 | 104 |
|
sl@0 | 105 |
|
sl@0 | 106 |
|
sl@0 | 107 |
|
sl@0 | 108 |
|
sl@0 | 109 |
|
sl@0 | 110 |
|
sl@0 | 111 |
|
sl@0 | 112 |
|
sl@0 | 113 |
|
sl@0 | 114 |
|
sl@0 | 115 |
|
sl@0 | 116 |
|
sl@0 | 117 |
|
sl@0 | 118 |
|
sl@0 | 119 |
|
sl@0 | 120 |
|
sl@0 | 121 |
|
sl@0 | 122 |