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\sfat\inc\fat_table.h
|
sl@0
|
15 |
// FAT12/16 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 |
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
sl@0
|
25 |
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
sl@0
|
26 |
//!!
|
sl@0
|
27 |
//!! WARNING!! DO NOT edit this file !! '\sfat' component is obsolete and is not being used. '\sfat32'replaces it
|
sl@0
|
28 |
//!!
|
sl@0
|
29 |
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
sl@0
|
30 |
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
sl@0
|
31 |
|
sl@0
|
32 |
|
sl@0
|
33 |
|
sl@0
|
34 |
#ifndef FAT_TABLE_H
|
sl@0
|
35 |
#define FAT_TABLE_H
|
sl@0
|
36 |
|
sl@0
|
37 |
|
sl@0
|
38 |
//---------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
39 |
|
sl@0
|
40 |
/**
|
sl@0
|
41 |
Fat table used for all media except RAM, manages the Fat table for all cluster requests.
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
class CAtaFatTable : public CFatTable
|
sl@0
|
44 |
{
|
sl@0
|
45 |
public:
|
sl@0
|
46 |
static CAtaFatTable* NewL(CFatMountCB& aOwner);
|
sl@0
|
47 |
|
sl@0
|
48 |
//-- overrides from the base class
|
sl@0
|
49 |
void FlushL();
|
sl@0
|
50 |
void Dismount(TBool aDiscardDirtyData);
|
sl@0
|
51 |
void ReMountL();
|
sl@0
|
52 |
void InvalidateCacheL(TInt64 aPos, TUint32 aLength);
|
sl@0
|
53 |
void InvalidateCacheL();
|
sl@0
|
54 |
|
sl@0
|
55 |
TUint32 ReadL(TUint32 aFatIndex) const;
|
sl@0
|
56 |
void WriteL(TUint32 aFatIndex, TUint32 aValue);
|
sl@0
|
57 |
|
sl@0
|
58 |
TInt64 DataPositionInBytes(TUint32 aCluster) const;
|
sl@0
|
59 |
|
sl@0
|
60 |
private:
|
sl@0
|
61 |
CAtaFatTable(CFatMountCB& aOwner);
|
sl@0
|
62 |
void InitializeL();
|
sl@0
|
63 |
void CreateCacheL();
|
sl@0
|
64 |
|
sl@0
|
65 |
private:
|
sl@0
|
66 |
CFatCacheBase* iCache; ///< FAT cache, fixed or LRU depending on the FAT type
|
sl@0
|
67 |
};
|
sl@0
|
68 |
|
sl@0
|
69 |
//---------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
70 |
|
sl@0
|
71 |
/**
|
sl@0
|
72 |
Fat table used for RAM media, manages the Fat table for all cluster requests.
|
sl@0
|
73 |
RAM media only supports Fat12/16.
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
class CRamFatTable : public CFatTable
|
sl@0
|
76 |
{
|
sl@0
|
77 |
public:
|
sl@0
|
78 |
static CRamFatTable* NewL(CFatMountCB& aOwner);
|
sl@0
|
79 |
|
sl@0
|
80 |
void ReMountL();
|
sl@0
|
81 |
TUint32 ReadL(TUint32 aFatIndex) const;
|
sl@0
|
82 |
void WriteL(TUint32 aFatIndex, TUint32 aValue);
|
sl@0
|
83 |
TInt64 DataPositionInBytes(TUint32 aCluster) const;
|
sl@0
|
84 |
void FreeClusterListL(TUint32 aCluster);
|
sl@0
|
85 |
TUint32 AllocateSingleClusterL(TUint32 aNearestCluster);
|
sl@0
|
86 |
void ExtendClusterListL(TUint32 aNumber,TInt& aCluster);
|
sl@0
|
87 |
|
sl@0
|
88 |
private:
|
sl@0
|
89 |
CRamFatTable(CFatMountCB& aOwner);
|
sl@0
|
90 |
|
sl@0
|
91 |
void InitializeL();
|
sl@0
|
92 |
|
sl@0
|
93 |
inline TUint8 *RamDiskBase() const;
|
sl@0
|
94 |
inline TInt AllocateClusterNumber();
|
sl@0
|
95 |
inline void WriteFatTable(TInt aFatIndex,TInt aValue);
|
sl@0
|
96 |
inline void WriteFatTable(TInt aFatIndex,TInt aFatValue,TInt anIndirectionTableValue);
|
sl@0
|
97 |
inline void ReadIndirectionTable(TUint32& aCluster) const;
|
sl@0
|
98 |
inline void WriteIndirectionTable(TInt aFatIndex,TInt aValue);
|
sl@0
|
99 |
inline TUint8* MemCopy(TAny* aTrg,const TAny* aSrc,TInt aLength);
|
sl@0
|
100 |
inline TUint8* MemCopyFillZ(TAny* aTrg, TAny* aSrc, TInt aLength);
|
sl@0
|
101 |
inline void ZeroFillCluster(TInt aCluster);
|
sl@0
|
102 |
|
sl@0
|
103 |
void UpdateIndirectionTable(TUint32 aStartCluster,TUint32 anEndCluster,TInt aNum);
|
sl@0
|
104 |
|
sl@0
|
105 |
protected:
|
sl@0
|
106 |
|
sl@0
|
107 |
TInt iFatTablePos; ///< Current position in the fat table
|
sl@0
|
108 |
TInt iIndirectionTablePos; ///< Current position in indirection table, second fat used for this
|
sl@0
|
109 |
TUint8* iRamDiskBase; ///< Pointer to the Ram disk base
|
sl@0
|
110 |
};
|
sl@0
|
111 |
|
sl@0
|
112 |
|
sl@0
|
113 |
|
sl@0
|
114 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
115 |
|
sl@0
|
116 |
|
sl@0
|
117 |
#endif //FAT_TABLE_H
|
sl@0
|
118 |
|
sl@0
|
119 |
|
sl@0
|
120 |
|
sl@0
|
121 |
|
sl@0
|
122 |
|
sl@0
|
123 |
|
sl@0
|
124 |
|
sl@0
|
125 |
|
sl@0
|
126 |
|
sl@0
|
127 |
|
sl@0
|
128 |
|
sl@0
|
129 |
|
sl@0
|
130 |
|
sl@0
|
131 |
|
sl@0
|
132 |
|
sl@0
|
133 |
|
sl@0
|
134 |
|
sl@0
|
135 |
|
sl@0
|
136 |
|
sl@0
|
137 |
|
sl@0
|
138 |
|
sl@0
|
139 |
|
sl@0
|
140 |
|