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\fat_table32.h
|
sl@0
|
15 |
// FAT32 File Allocation Table classes definitions
|
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 FAT_TABLE_32_H
|
sl@0
|
25 |
#define FAT_TABLE_32_H
|
sl@0
|
26 |
|
sl@0
|
27 |
//---------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
28 |
|
sl@0
|
29 |
class CFatHelperThreadBase;
|
sl@0
|
30 |
class CFat32ScanThread;
|
sl@0
|
31 |
|
sl@0
|
32 |
TInt FAT32_ScanThread(TAny* apHostObject);
|
sl@0
|
33 |
|
sl@0
|
34 |
//---------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
Fat table abstraction for all media types except RAM.
|
sl@0
|
38 |
Supports FAT12/16/32
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
class CAtaFatTable : public CFatTable
|
sl@0
|
41 |
{
|
sl@0
|
42 |
|
sl@0
|
43 |
public:
|
sl@0
|
44 |
|
sl@0
|
45 |
static CAtaFatTable* NewL(CFatMountCB& aOwner);
|
sl@0
|
46 |
~CAtaFatTable();
|
sl@0
|
47 |
|
sl@0
|
48 |
//-- overrides from th ebase class
|
sl@0
|
49 |
TUint32 ReadL(TUint32 aFatIndex) const;
|
sl@0
|
50 |
void WriteL(TUint32 aFatIndex, TUint32 aValue);
|
sl@0
|
51 |
void MountL(const TMountParams& aMountParam);
|
sl@0
|
52 |
|
sl@0
|
53 |
TInt64 DataPositionInBytes(TUint32 aCluster) const;
|
sl@0
|
54 |
|
sl@0
|
55 |
void InitializeL();
|
sl@0
|
56 |
void Dismount(TBool aDiscardDirtyData);
|
sl@0
|
57 |
void FlushL();
|
sl@0
|
58 |
|
sl@0
|
59 |
void InvalidateCacheL();
|
sl@0
|
60 |
void InvalidateCacheL(TInt64 aPos, TUint32 aLength);
|
sl@0
|
61 |
|
sl@0
|
62 |
TUint32 FreeClusterHint() const;
|
sl@0
|
63 |
TUint32 NumberOfFreeClusters(TBool aSyncOperation=EFalse) const;
|
sl@0
|
64 |
|
sl@0
|
65 |
TBool ConsistentState() const;
|
sl@0
|
66 |
|
sl@0
|
67 |
inline void AcquireLock() const {iDriveInteface.AcquireLock();}
|
sl@0
|
68 |
inline void ReleaseLock() const {iDriveInteface.ReleaseLock();}
|
sl@0
|
69 |
|
sl@0
|
70 |
inline TDriveInterface& DriveInterface() const;
|
sl@0
|
71 |
inline CFatMountCB* OwnerMount() const;
|
sl@0
|
72 |
|
sl@0
|
73 |
|
sl@0
|
74 |
private:
|
sl@0
|
75 |
|
sl@0
|
76 |
/** internal states of this object */
|
sl@0
|
77 |
enum TState
|
sl@0
|
78 |
{
|
sl@0
|
79 |
ENotInitialised, ///< 0 initial invalid state
|
sl@0
|
80 |
EInitialised, ///< 1 initialised, i.e. internal objects created, but unusable becasue number of free entries isn't known
|
sl@0
|
81 |
EMounting, ///< 2 mounting started
|
sl@0
|
82 |
EMounted, ///< 3 successfully mounted; number of free entries is known. This is the only consistent state.
|
sl@0
|
83 |
EDismounted, ///< 4 FAT table object is dismounted
|
sl@0
|
84 |
EFreeClustersScan, ///< 5 FAT32 scan thread is currently scanning FAT table for free clusters
|
sl@0
|
85 |
EMountAborted ///< 6 Mounting failed, probably because of FAT32 free clusters scan thread failure.
|
sl@0
|
86 |
};
|
sl@0
|
87 |
|
sl@0
|
88 |
public:
|
sl@0
|
89 |
|
sl@0
|
90 |
/** A helper class used in FAT scanning for free clusters*/
|
sl@0
|
91 |
class TFatScanParam
|
sl@0
|
92 |
{
|
sl@0
|
93 |
public:
|
sl@0
|
94 |
inline TFatScanParam();
|
sl@0
|
95 |
|
sl@0
|
96 |
public:
|
sl@0
|
97 |
TUint32 iEntriesScanned; ///< total number of FAT entries scanned by DoParseFatBuf()
|
sl@0
|
98 |
TUint32 iFirstFree; ///< first free FAT entry found
|
sl@0
|
99 |
TUint32 iCurrFreeEntries; ///< current number of free FAT entries found by DoParseFatBuf()
|
sl@0
|
100 |
TUint32 iCurrOccupiedEntries; ///< current number of non-free FAT entries found by DoParseFatBuf()
|
sl@0
|
101 |
};
|
sl@0
|
102 |
|
sl@0
|
103 |
|
sl@0
|
104 |
private:
|
sl@0
|
105 |
CAtaFatTable(CFatMountCB& aOwner);
|
sl@0
|
106 |
|
sl@0
|
107 |
void RequestRawWriteAccess(TInt64 aPos, TUint32 aLen) const;
|
sl@0
|
108 |
|
sl@0
|
109 |
void SetFreeClusters(TUint32 aFreeClusters);
|
sl@0
|
110 |
void SetFreeClusterHint(TUint32 aCluster);
|
sl@0
|
111 |
void CountFreeClustersL();
|
sl@0
|
112 |
void CreateCacheL();
|
sl@0
|
113 |
|
sl@0
|
114 |
virtual void DecrementFreeClusterCount(TUint32 aCount);
|
sl@0
|
115 |
virtual void IncrementFreeClusterCount(TUint32 aCount);
|
sl@0
|
116 |
virtual TUint32 FindClosestFreeClusterL(TUint32 aCluster);
|
sl@0
|
117 |
|
sl@0
|
118 |
void DoCountFreeClustersL();
|
sl@0
|
119 |
void DoParseFatBuf(const TPtrC8& aBuf, TFatScanParam& aScanParam) const;
|
sl@0
|
120 |
|
sl@0
|
121 |
TBool RequestFreeClusters(TUint32 aClustersRequired) const;
|
sl@0
|
122 |
void DoLaunchFat32FreeSpaceScanThreadL();
|
sl@0
|
123 |
void DestroyHelperThread();
|
sl@0
|
124 |
|
sl@0
|
125 |
inline TState State() const;
|
sl@0
|
126 |
inline void SetState(TState aState);
|
sl@0
|
127 |
|
sl@0
|
128 |
private:
|
sl@0
|
129 |
|
sl@0
|
130 |
|
sl@0
|
131 |
CFatCacheBase* iCache; ///< FAT cache, fixed or LRU depending on the FAT type
|
sl@0
|
132 |
TDriveInterface& iDriveInteface; ///< reference to the drive interface
|
sl@0
|
133 |
CFatHelperThreadBase* ipHelperThread; ///< helper thread object pointer. NULL if it is not present
|
sl@0
|
134 |
TState iState; ///< state of this object
|
sl@0
|
135 |
|
sl@0
|
136 |
//-- friends
|
sl@0
|
137 |
friend TInt FAT32_ScanThread(TAny* apHostObject);
|
sl@0
|
138 |
friend class CFat32ScanThread;
|
sl@0
|
139 |
friend class CFat32FreeSpaceScanner;
|
sl@0
|
140 |
friend class CFat32BitCachePopulator;
|
sl@0
|
141 |
};
|
sl@0
|
142 |
|
sl@0
|
143 |
//---------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
144 |
|
sl@0
|
145 |
/**
|
sl@0
|
146 |
Fat table abstraction for RAM media type.
|
sl@0
|
147 |
Supports FAT16/32 only
|
sl@0
|
148 |
*/
|
sl@0
|
149 |
class CRamFatTable : public CFatTable
|
sl@0
|
150 |
{
|
sl@0
|
151 |
public:
|
sl@0
|
152 |
|
sl@0
|
153 |
static CRamFatTable* NewL(CFatMountCB& aOwner);
|
sl@0
|
154 |
void InitializeL();
|
sl@0
|
155 |
void MountL(const TMountParams& aMountParam);
|
sl@0
|
156 |
|
sl@0
|
157 |
|
sl@0
|
158 |
TUint32 ReadL(TUint32 aFatIndex) const;
|
sl@0
|
159 |
void WriteL(TUint32 aFatIndex, TUint32 aValue);
|
sl@0
|
160 |
TInt64 DataPositionInBytes(TUint32 aCluster) const;
|
sl@0
|
161 |
void FreeClusterListL(TUint32 aCluster);
|
sl@0
|
162 |
TUint32 AllocateSingleClusterL(TUint32 aNearestCluster);
|
sl@0
|
163 |
void ExtendClusterListL(TUint32 aNumber,TInt& aCluster);
|
sl@0
|
164 |
TUint32 AllocateClusterListL(TUint32 aNumber,TUint32 aNearestCluster);
|
sl@0
|
165 |
|
sl@0
|
166 |
private:
|
sl@0
|
167 |
CRamFatTable(CFatMountCB& aOwner);
|
sl@0
|
168 |
|
sl@0
|
169 |
inline TUint8 *RamDiskBase() const;
|
sl@0
|
170 |
inline TInt AllocateClusterNumber();
|
sl@0
|
171 |
inline void WriteFatTable(TInt aFatIndex,TInt aValue);
|
sl@0
|
172 |
inline void WriteFatTable(TInt aFatIndex,TInt aFatValue,TInt anIndirectionTableValue);
|
sl@0
|
173 |
inline void ReadIndirectionTable(TUint32& aCluster) const;
|
sl@0
|
174 |
inline void WriteIndirectionTable(TInt aFatIndex,TInt aValue);
|
sl@0
|
175 |
inline TUint8* MemCopy(TAny* aTrg,const TAny* aSrc,TInt aLength);
|
sl@0
|
176 |
inline TUint8* MemCopyFillZ(TAny* aTrg, TAny* aSrc, TInt aLength);
|
sl@0
|
177 |
inline void ZeroFillCluster(TInt aCluster);
|
sl@0
|
178 |
|
sl@0
|
179 |
void UpdateIndirectionTable(TUint32 aStartCluster,TUint32 anEndCluster,TInt aNum);
|
sl@0
|
180 |
|
sl@0
|
181 |
protected:
|
sl@0
|
182 |
|
sl@0
|
183 |
TInt iFatTablePos; ///< Current position in the fat table
|
sl@0
|
184 |
TInt iIndirectionTablePos; ///< Current position in indirection table, second fat used for this
|
sl@0
|
185 |
TUint8* iRamDiskBase; ///< Pointer to the Ram disk base
|
sl@0
|
186 |
};
|
sl@0
|
187 |
|
sl@0
|
188 |
|
sl@0
|
189 |
|
sl@0
|
190 |
//---------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
191 |
|
sl@0
|
192 |
/**
|
sl@0
|
193 |
Abstract base class for the FAT32 helper threads.
|
sl@0
|
194 |
Provides basic functionality of the helper threads and interface to the owher CAtaFatTable.
|
sl@0
|
195 |
*/
|
sl@0
|
196 |
class CFatHelperThreadBase : public CBase
|
sl@0
|
197 |
{
|
sl@0
|
198 |
public:
|
sl@0
|
199 |
|
sl@0
|
200 |
/** Possible types of the FAT32 helper threads */
|
sl@0
|
201 |
enum TFatHelperThreadType
|
sl@0
|
202 |
{
|
sl@0
|
203 |
EInvalidType, ///< invalid type
|
sl@0
|
204 |
EFreeSpaceScanner, ///< Free FAT32 entries counter, see CFat32FreeSpaceScanner
|
sl@0
|
205 |
EBitCachePopulator ///< FAT32 bit supercache populating thread.
|
sl@0
|
206 |
};
|
sl@0
|
207 |
|
sl@0
|
208 |
/** this object states, mostly related to the worker thread activity and results */
|
sl@0
|
209 |
enum TState
|
sl@0
|
210 |
{
|
sl@0
|
211 |
EInvalid, ///< invalid initial state
|
sl@0
|
212 |
ENotStarted, ///< the worker thread hasn't started yet
|
sl@0
|
213 |
EWorking, ///< worker thread is working
|
sl@0
|
214 |
EFinished_OK, ///< worker thread has successfully finished, everything is fine.
|
sl@0
|
215 |
EFailed ///< worker thread failed to finish its job for some reason; see the thread completion status
|
sl@0
|
216 |
};
|
sl@0
|
217 |
|
sl@0
|
218 |
public:
|
sl@0
|
219 |
~CFatHelperThreadBase();
|
sl@0
|
220 |
|
sl@0
|
221 |
//-- virtual interface
|
sl@0
|
222 |
virtual TFatHelperThreadType Type() const = 0;
|
sl@0
|
223 |
virtual TInt Launch()=0;
|
sl@0
|
224 |
virtual void RequestFatEntryWriteAccess(TUint32 aFatIndex) const=0;
|
sl@0
|
225 |
|
sl@0
|
226 |
//-- non-virtual interface for external user only
|
sl@0
|
227 |
void Close();
|
sl@0
|
228 |
void ForceStop();
|
sl@0
|
229 |
|
sl@0
|
230 |
inline TState State() const;
|
sl@0
|
231 |
|
sl@0
|
232 |
inline void Suspend() const;
|
sl@0
|
233 |
inline void Resume() const;
|
sl@0
|
234 |
|
sl@0
|
235 |
inline TInt ThreadCompletionCode() const;
|
sl@0
|
236 |
inline TBool ThreadWorking() const;
|
sl@0
|
237 |
|
sl@0
|
238 |
inline void BoostPriority(TBool aBoost) const;
|
sl@0
|
239 |
inline TBool IsPriorityBoosted() const;
|
sl@0
|
240 |
|
sl@0
|
241 |
inline TThreadId ThreadId() const;
|
sl@0
|
242 |
|
sl@0
|
243 |
TInt WaitToFinish() const;
|
sl@0
|
244 |
|
sl@0
|
245 |
protected:
|
sl@0
|
246 |
CFatHelperThreadBase(CAtaFatTable& aOwner);
|
sl@0
|
247 |
|
sl@0
|
248 |
//-- outlaws
|
sl@0
|
249 |
CFatHelperThreadBase();
|
sl@0
|
250 |
CFatHelperThreadBase(const CFatHelperThreadBase&);
|
sl@0
|
251 |
CFatHelperThreadBase& operator=(const CFatHelperThreadBase&);
|
sl@0
|
252 |
|
sl@0
|
253 |
/** the worker thread priorities values */
|
sl@0
|
254 |
enum
|
sl@0
|
255 |
{
|
sl@0
|
256 |
EHelperPriorityNormal = EPriorityMuchLess, ///< FAT32 Helper thread normal priority (assigned on start)
|
sl@0
|
257 |
EHelperPriorityBoosted = EPriorityNormal ///< FAT32 Helper thread bosted priority
|
sl@0
|
258 |
};
|
sl@0
|
259 |
|
sl@0
|
260 |
TInt DoLaunchThread(TThreadFunction aFunction, TAny* aThreadParameter);
|
sl@0
|
261 |
|
sl@0
|
262 |
inline void SetState(TState aState);
|
sl@0
|
263 |
inline TBool AllowedToLive() const;
|
sl@0
|
264 |
inline void AllowToLive(TBool aAllow);
|
sl@0
|
265 |
|
sl@0
|
266 |
protected:
|
sl@0
|
267 |
CAtaFatTable& iOwner; ///< owner, CAtaFatTable
|
sl@0
|
268 |
|
sl@0
|
269 |
private:
|
sl@0
|
270 |
TState iState; ///< internal state of this object
|
sl@0
|
271 |
RThread iThread; ///< FAT helper thread handle
|
sl@0
|
272 |
mutable TRequestStatus iThreadStatus; ///< helper thread logon status
|
sl@0
|
273 |
|
sl@0
|
274 |
TBool iAllowedToLive : 1; ///< if EFalse the worker thread must gracefully finish ASAP.
|
sl@0
|
275 |
mutable TBool iPriorityBoosted : 1; ///< ETrue when thread priority is boosted by BoostPriority() call
|
sl@0
|
276 |
|
sl@0
|
277 |
|
sl@0
|
278 |
};
|
sl@0
|
279 |
|
sl@0
|
280 |
//---------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
281 |
/**
|
sl@0
|
282 |
Abstract base class for the FAT32 helper threads that read FAT by big chunks of data and parse it.
|
sl@0
|
283 |
Provides basic functionality of the helper threads and interface to the owher CAtaFatTable.
|
sl@0
|
284 |
*/
|
sl@0
|
285 |
class CFat32ScanThread : public CFatHelperThreadBase
|
sl@0
|
286 |
{
|
sl@0
|
287 |
public:
|
sl@0
|
288 |
|
sl@0
|
289 |
virtual TInt Launch();
|
sl@0
|
290 |
|
sl@0
|
291 |
protected:
|
sl@0
|
292 |
CFat32ScanThread(CAtaFatTable& aOwner);
|
sl@0
|
293 |
|
sl@0
|
294 |
//-- virtual private interface for the thread function.
|
sl@0
|
295 |
virtual TInt Thread_Preamble();
|
sl@0
|
296 |
virtual TInt Thread_Postamble(TInt aResult);
|
sl@0
|
297 |
virtual TInt Thread_ProcessCollectedFreeEntries(const CAtaFatTable::TFatScanParam& aFatScanParam)=0;
|
sl@0
|
298 |
|
sl@0
|
299 |
friend TInt FAT32_ScanThread(TAny* apHostObject); ///< FAT32 scanner thread function, generic functionality for derived classes
|
sl@0
|
300 |
|
sl@0
|
301 |
protected:
|
sl@0
|
302 |
|
sl@0
|
303 |
RBuf8 iFatChunkBuf; ///< a buffer for reading FAT directly from the media
|
sl@0
|
304 |
|
sl@0
|
305 |
TTime iTimeStart; ///< thread start time, used to measure how long thread worked
|
sl@0
|
306 |
TTime iTimeEnd; ///< thread end time, used to measure how long thread worked
|
sl@0
|
307 |
|
sl@0
|
308 |
CFatBitCache *ipFatBitCache; ///< interface to the FAT bit supercache (if it is present)
|
sl@0
|
309 |
};
|
sl@0
|
310 |
|
sl@0
|
311 |
|
sl@0
|
312 |
//---------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
313 |
/**
|
sl@0
|
314 |
FAT32 free FAT entries scanner thread.
|
sl@0
|
315 |
Represents transient FAT32 helper thread that can be launched on FAT table object mounting stage and will be
|
sl@0
|
316 |
counting free FAT entries in order to find out free space on the volume.
|
sl@0
|
317 |
*/
|
sl@0
|
318 |
class CFat32FreeSpaceScanner : public CFat32ScanThread
|
sl@0
|
319 |
{
|
sl@0
|
320 |
public:
|
sl@0
|
321 |
|
sl@0
|
322 |
static CFat32FreeSpaceScanner* NewL(CAtaFatTable& aOwner);
|
sl@0
|
323 |
|
sl@0
|
324 |
virtual inline TFatHelperThreadType Type() const;
|
sl@0
|
325 |
|
sl@0
|
326 |
private:
|
sl@0
|
327 |
CFat32FreeSpaceScanner(CAtaFatTable& aOwner);
|
sl@0
|
328 |
|
sl@0
|
329 |
void RequestFatEntryWriteAccess(TUint32 aFatIndex) const;
|
sl@0
|
330 |
|
sl@0
|
331 |
//-- virtual private interface for the thread function.
|
sl@0
|
332 |
TInt Thread_Preamble();
|
sl@0
|
333 |
TInt Thread_Postamble(TInt aResult);
|
sl@0
|
334 |
TInt Thread_ProcessCollectedFreeEntries(const CAtaFatTable::TFatScanParam& aFatScanParam);
|
sl@0
|
335 |
//--
|
sl@0
|
336 |
|
sl@0
|
337 |
private:
|
sl@0
|
338 |
|
sl@0
|
339 |
void SetClustersScanned(TUint32 aClusters);
|
sl@0
|
340 |
TUint32 ClustersScanned() const;
|
sl@0
|
341 |
|
sl@0
|
342 |
friend TInt FAT32_ScanThread(TAny* apHostObject); ///< FAT32 scanner thread function, generic functionality for CFat32ScanThread derived classes
|
sl@0
|
343 |
|
sl@0
|
344 |
private:
|
sl@0
|
345 |
|
sl@0
|
346 |
enum
|
sl@0
|
347 |
{
|
sl@0
|
348 |
KFatChunkBufSize_Small = 16*K1KiloByte, //-- buffer size for reading small FAT tables
|
sl@0
|
349 |
KFatChunkBufSize_Big = 64*K1KiloByte, //-- buffer size for reading large FAT tables
|
sl@0
|
350 |
|
sl@0
|
351 |
KBigSzFat_Threshold = 2*K1MegaByte, //-- if FAT table size > this value, larger FAT read chunk (KFatChunkBufSize_Big) will be used
|
sl@0
|
352 |
};
|
sl@0
|
353 |
|
sl@0
|
354 |
TUint32 iClustersScanned; ///< Number of FAT entries already scanned by the thread. Counts from the beginning of the FAT
|
sl@0
|
355 |
|
sl@0
|
356 |
//-- volume space treshold in bytes that causes CMountCB::SetDiskSpaceChange() to be called by FAT32 free space scanner thread.
|
sl@0
|
357 |
//-- This thread will be calling CMountCB::SetDiskSpaceChange() after processing number of FAT32 entries corresponding to
|
sl@0
|
358 |
//-- this amount of space in FAT clusters. e.g. after processing amount of FAT32 entries comprising 256MB volume space
|
sl@0
|
359 |
enum {KVolSpaceNotifyThreshold = 256 * K1MegaByte};
|
sl@0
|
360 |
|
sl@0
|
361 |
TUint32 iEntriesNotifyThreshold; ///< the value of FAT32 entries need to be counted for CMountCB::SetDiskSpaceChange() call
|
sl@0
|
362 |
TUint32 iNfyThresholdInc; ///< Threshold increment in FAT32 entries.
|
sl@0
|
363 |
|
sl@0
|
364 |
|
sl@0
|
365 |
};
|
sl@0
|
366 |
|
sl@0
|
367 |
//---------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
368 |
/**
|
sl@0
|
369 |
FAT32 Bit supercache populating thread.
|
sl@0
|
370 |
Represents transient FAT32 helper thread that is populating bit supercache in backgroud.
|
sl@0
|
371 |
*/
|
sl@0
|
372 |
class CFat32BitCachePopulator : public CFat32ScanThread
|
sl@0
|
373 |
{
|
sl@0
|
374 |
public:
|
sl@0
|
375 |
|
sl@0
|
376 |
static CFat32BitCachePopulator* NewL(CAtaFatTable& aOwner);
|
sl@0
|
377 |
|
sl@0
|
378 |
virtual inline TFatHelperThreadType Type() const;
|
sl@0
|
379 |
|
sl@0
|
380 |
private:
|
sl@0
|
381 |
CFat32BitCachePopulator(CAtaFatTable& aOwner);
|
sl@0
|
382 |
|
sl@0
|
383 |
void RequestFatEntryWriteAccess(TUint32 aFatIndex) const;
|
sl@0
|
384 |
|
sl@0
|
385 |
//-- virtual private interface for the thread function.
|
sl@0
|
386 |
TInt Thread_Preamble();
|
sl@0
|
387 |
TInt Thread_Postamble(TInt aResult);
|
sl@0
|
388 |
TInt Thread_ProcessCollectedFreeEntries(const CAtaFatTable::TFatScanParam& aFatScanParam);
|
sl@0
|
389 |
//--
|
sl@0
|
390 |
|
sl@0
|
391 |
private:
|
sl@0
|
392 |
friend TInt FAT32_ScanThread(TAny* apHostObject); ///< FAT32 scanner thread function, generic functionality for CFat32ScanThread derived classes
|
sl@0
|
393 |
enum {KFatChunkBufSize = 16*K1KiloByte}; //-- buffer size for FAT reading
|
sl@0
|
394 |
|
sl@0
|
395 |
private:
|
sl@0
|
396 |
TUint32 iTotalOccupiedFatEntries; ///< total counted number of non-free FAT entries
|
sl@0
|
397 |
|
sl@0
|
398 |
};
|
sl@0
|
399 |
|
sl@0
|
400 |
|
sl@0
|
401 |
//---------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
402 |
|
sl@0
|
403 |
#include "fat_table32.inl"
|
sl@0
|
404 |
|
sl@0
|
405 |
#endif //FAT_TABLE_32_H
|
sl@0
|
406 |
|
sl@0
|
407 |
|
sl@0
|
408 |
|
sl@0
|
409 |
|
sl@0
|
410 |
|
sl@0
|
411 |
|
sl@0
|
412 |
|
sl@0
|
413 |
|
sl@0
|
414 |
|
sl@0
|
415 |
|
sl@0
|
416 |
|
sl@0
|
417 |
|
sl@0
|
418 |
|
sl@0
|
419 |
|
sl@0
|
420 |
|
sl@0
|
421 |
|
sl@0
|
422 |
|
sl@0
|
423 |
|
sl@0
|
424 |
|
sl@0
|
425 |
|
sl@0
|
426 |
|
sl@0
|
427 |
|
sl@0
|
428 |
|