Update contrib.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // f32\sfat32\inc\sl_facache32.h
15 // FAT32 various cache classes definition
24 #ifndef SL_FAT_CACHE_32_INL
25 #define SL_FAT_CACHE_32_INL
28 //-----------------------------------------------------------------------------
31 void CFatBitCache::SetState(CFatBitCache::TState aState)
37 Converts FAT index to the corresponding bit array bit number (or FAT cache sector number).
38 @param aFatIndex index in the FAT
39 @return corresponding index in the FAT bit array
41 TUint32 CFatBitCache::FatIndexToCacheSectorNumber(TUint32 aFatIndex) const
43 ASSERT(aFatIndex >= KFatFirstSearchCluster);
44 return (aFatIndex >> iFatIdxToSecCoeff);
48 Converts FAT32 cache sector number to the FAT32 entry index (in the beginning of this cache sector)
49 @param aCacheSecNum index in the FAT bit array (or FAT cache sector number)
50 @return corresponding index in the FAT
53 TUint32 CFatBitCache::CacheSectorNumberToFatIndex(TUint32 aCacheSecNum) const
55 ASSERT(aCacheSecNum < iBitCache.Size());
56 return (aCacheSecNum << iFatIdxToSecCoeff);
59 /** @return state of the cache*/
60 CFatBitCache::TState CFatBitCache::State() const
66 @return ETrue if the cache can be used, i.e. is fully populated
68 TBool CFatBitCache::UsableState() const
70 return State() == EPopulated;
75 @return ETrue if the FAT cache sector number "aFatSectorNum" is marked as having at least one free FAT entry.
76 N.B. The cache must be in consistent state, i.e. fully populated.
78 TBool CFatBitCache::FatSectorHasFreeEntry(TUint32 aFatSectorNum) const
80 ASSERT(UsableState());
81 return iBitCache[aFatSectorNum];
85 Mark FAT cache sector number "aFatSectorNum" is as having/not having free FAT entry.
86 N.B. The cache must be in consistent state, i.e. fully populated.
88 @param aFatSectorNum FAT32 cache sector number [index in a bit vector]
89 @param aHasFreeEntry ETrue if we want to mark this sector as having free FAT entries;
90 EFalse if we want to mark this sector as NOT having free FAT entries;
92 void CFatBitCache::SetFreeEntryInFatSector(TUint32 aFatSectorNum, TBool aHasFreeEntry)
94 ASSERT(UsableState());
95 iBitCache.SetBitVal(aFatSectorNum, aHasFreeEntry);
99 #endif //SL_FAT_CACHE_32_INL