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\sl_scandrv.h
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@internalTechnology
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
#ifndef SL_SCANDRV_H
|
sl@0
|
24 |
#define SL_SCANDRV_H
|
sl@0
|
25 |
|
sl@0
|
26 |
#include "sl_std.h"
|
sl@0
|
27 |
|
sl@0
|
28 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
29 |
|
sl@0
|
30 |
const TUint KMaxMatchingEntries = 2; ///< Maximum number of matching directory entries scan drive can fix. Any more indicates a fault in the file system
|
sl@0
|
31 |
const TUint KMaxArrayDepth = 6; ///< Maximum array depth for cluster storage when KMaxScanDepth is reached
|
sl@0
|
32 |
|
sl@0
|
33 |
/** Data structure used to store the location of a partial VFat entry */
|
sl@0
|
34 |
struct TPartVFatEntry
|
sl@0
|
35 |
{
|
sl@0
|
36 |
TEntryPos iEntryPos; ///< The position of the partial VFat entry
|
sl@0
|
37 |
TFatDirEntry iEntry; ///< The Dos entry The VFat entries belong with
|
sl@0
|
38 |
};
|
sl@0
|
39 |
|
sl@0
|
40 |
|
sl@0
|
41 |
/** Data structure used to store the locations of entries with matching start cluster numbers. */
|
sl@0
|
42 |
struct TMatchingStartCluster
|
sl@0
|
43 |
{
|
sl@0
|
44 |
TEntryPos iEntries[KMaxMatchingEntries]; ///< The positions of the matching entries
|
sl@0
|
45 |
TUint iCount; ///< Count of matching entries
|
sl@0
|
46 |
TUint iStartCluster; ///< The matching cluster number found in more than one entry
|
sl@0
|
47 |
};
|
sl@0
|
48 |
|
sl@0
|
49 |
|
sl@0
|
50 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
51 |
/**
|
sl@0
|
52 |
This class is used for checking volume for FS errors and fixing a limited set of FS artefacts introduced by Rugged FAT on write failures.
|
sl@0
|
53 |
It can operate in 2 modes:
|
sl@0
|
54 |
|
sl@0
|
55 |
1. "ScanDrive" mode, scan whole volume for possible Rugged FAT artefacts and fix them if possible.
|
sl@0
|
56 |
1.1 If there was no problem at all, then StartL() finishes normally and ProblemsDiscovered() returns ENoErrors.
|
sl@0
|
57 |
1.2 If there was Rugged FAT artefact and it had been successfully fixed, StartL() finishes normally and ProblemsDiscovered() returns EScanDriveDirError.
|
sl@0
|
58 |
In this case the client may perform volum remounting, because FAT is very likely to have been changed.
|
sl@0
|
59 |
1.3 If there was a fatal error, like media failure or unfixable FS problem, StartL() will leave with some generic error code.
|
sl@0
|
60 |
|
sl@0
|
61 |
2. "CheckDisk" mode. check file system for known artefacts and return an error if _any_ problem discovered.
|
sl@0
|
62 |
In this case StartL() _may_ leave with something like KErrCorrupt if there was a media failure or scan has stumbled across unknown FS error,
|
sl@0
|
63 |
ProblemsDiscovered() _may_ return some code describing the problem. If StartL() did not leave, but ProblemsDiscovered() returns a code different
|
sl@0
|
64 |
from ENoErrors, this means that there is FS corruption.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
class CScanDrive : public CBase
|
sl@0
|
67 |
{
|
sl@0
|
68 |
|
sl@0
|
69 |
public:
|
sl@0
|
70 |
|
sl@0
|
71 |
~CScanDrive();
|
sl@0
|
72 |
static CScanDrive* NewL(CFatMountCB* aMount);
|
sl@0
|
73 |
void ConstructL(CFatMountCB* aMount);
|
sl@0
|
74 |
|
sl@0
|
75 |
public:
|
sl@0
|
76 |
|
sl@0
|
77 |
/** description of known problems that this scanned can deal with. Mostly used in "CheckDisk " mode */
|
sl@0
|
78 |
enum TGenericError
|
sl@0
|
79 |
{
|
sl@0
|
80 |
ENoErrors = 0, ///< 0 no errors discovered
|
sl@0
|
81 |
EBadClusterNumber, ///< 1 cluster number that doesn't correspond to the max. amount of clusters on the volume
|
sl@0
|
82 |
EClusterAlreadyInUse, ///< 2 cross-linked cluster chain
|
sl@0
|
83 |
EBadClusterValue, ///< 3 also means "lost cluster"
|
sl@0
|
84 |
EInvalidEntrySize, ///< 4 size of file/directory does not correspond to the cluster chain length
|
sl@0
|
85 |
|
sl@0
|
86 |
EUnknownError = 95, ///< unknown error
|
sl@0
|
87 |
|
sl@0
|
88 |
EScanDriveDirError=100 ///< 100 ScanDrive error
|
sl@0
|
89 |
};
|
sl@0
|
90 |
|
sl@0
|
91 |
TGenericError ProblemsDiscovered() const;
|
sl@0
|
92 |
|
sl@0
|
93 |
/** CScanDrive mode of operation */
|
sl@0
|
94 |
enum TScanDriveMode
|
sl@0
|
95 |
{
|
sl@0
|
96 |
EScanAndFix, ///< "ScanDrive" mode, scan whole volume for possible Rugged FAT artefacts and fix them
|
sl@0
|
97 |
ECheckDisk, ///< "CheckDisk" mode. check file system for known artefacts and return an error if _any_ problem discovered
|
sl@0
|
98 |
};
|
sl@0
|
99 |
|
sl@0
|
100 |
void StartL(TScanDriveMode aMode);
|
sl@0
|
101 |
|
sl@0
|
102 |
private:
|
sl@0
|
103 |
void PrintErrors();
|
sl@0
|
104 |
void CompareFatsL(TBool aStopOnFirstErrorFound) ;
|
sl@0
|
105 |
void CompareAndFixFatsL();
|
sl@0
|
106 |
|
sl@0
|
107 |
void FixupDirErrorL();
|
sl@0
|
108 |
|
sl@0
|
109 |
void ReadMediaFatL();
|
sl@0
|
110 |
void DoParseFatL();
|
sl@0
|
111 |
void DoParseFat32L();
|
sl@0
|
112 |
void DoParseFat32Buf(const TPtrC8& aBuf, TUint32& aCurrFatEntry);
|
sl@0
|
113 |
|
sl@0
|
114 |
TBool IsClusterUsedL(TUint aCluster);
|
sl@0
|
115 |
void MarkClusterUsedL(TUint aCluster);
|
sl@0
|
116 |
|
sl@0
|
117 |
TUint32 ReadFatL(TUint aClusterNum) ;
|
sl@0
|
118 |
void FindSameStartClusterL();
|
sl@0
|
119 |
TInt FindStartClusterL(TInt aDirCluster);
|
sl@0
|
120 |
void CheckDirStructureL();
|
sl@0
|
121 |
void CheckDirL(TUint32 aCluster);
|
sl@0
|
122 |
void ProcessEntryL(const TFatDirEntry& aEntry);
|
sl@0
|
123 |
TInt CheckEntryClusterL(const TFatDirEntry& aEntry, const TEntryPos& aEntryPos);
|
sl@0
|
124 |
void RecordClusterChainL(TInt aCluster,TUint aSizeInBytes);
|
sl@0
|
125 |
TBool MoveToVFatEndL(TEntryPos& aPos,TFatDirEntry& aEntry,TInt& aDirLength);
|
sl@0
|
126 |
TBool IsValidVFatEntry(const TFatDirEntry& aEntry,TInt prevNum)const;
|
sl@0
|
127 |
TBool IsDosEntry(const TFatDirEntry& aEntry)const;
|
sl@0
|
128 |
void AddPartialVFatL(const TEntryPos& aStartPos, const TFatDirEntry& aEntry);
|
sl@0
|
129 |
TBool AddMatchingEntryL(const TEntryPos& aEntryPos);
|
sl@0
|
130 |
TInt GetReservedidL(const TEntryPos aVFatPos);
|
sl@0
|
131 |
|
sl@0
|
132 |
void FixPartEntryL();
|
sl@0
|
133 |
void FixMatchingEntryL();
|
sl@0
|
134 |
void MovePastEntriesL(TEntryPos& aEntryPos,TFatDirEntry& aEntry,TInt aToMove,TInt& aDirEntries);
|
sl@0
|
135 |
void AddToClusterListL(TInt aCluster);
|
sl@0
|
136 |
inline TBool AlreadyExistsL(TInt aCluster)const;
|
sl@0
|
137 |
inline TBool IsEndOfRootDir(const TEntryPos& aPos)const;
|
sl@0
|
138 |
inline TBool IsEofF(TInt aVal)const;
|
sl@0
|
139 |
inline TBool IsDirError()const;
|
sl@0
|
140 |
void MoveToNextEntryL(TEntryPos& aPos);
|
sl@0
|
141 |
void ReadDirEntryL(const TEntryPos& aPos,TFatDirEntry& aDirEntry);
|
sl@0
|
142 |
|
sl@0
|
143 |
inline void IndicateErrorsFound(TGenericError aError);
|
sl@0
|
144 |
inline TUint32 MaxClusters() const;
|
sl@0
|
145 |
inline TBool CheckDiskMode() const;
|
sl@0
|
146 |
|
sl@0
|
147 |
protected:
|
sl@0
|
148 |
|
sl@0
|
149 |
/**
|
sl@0
|
150 |
Internal ScanDrive mode specific errors. In Rugged FAT mode (current implementatio) any type of error of this kind can occur only once and it will be fixed.
|
sl@0
|
151 |
Othersise the FS is considered to be corrupted
|
sl@0
|
152 |
*/
|
sl@0
|
153 |
enum TDirError
|
sl@0
|
154 |
{
|
sl@0
|
155 |
ENoDirError= 0, ///< no errors found
|
sl@0
|
156 |
EScanMatchingEntry=1, ///< Two entries pointing to the same cluster chain; Rugged FAT rename/replace artefact
|
sl@0
|
157 |
EScanPartEntry, ///< Deleted DOS entry and orphaned VFAT ones from the same entryset; Rugged FAT 'file/dir delete' artefact
|
sl@0
|
158 |
};
|
sl@0
|
159 |
|
sl@0
|
160 |
|
sl@0
|
161 |
private:
|
sl@0
|
162 |
CFatMountCB* iMount; ///< The owning Fat mount
|
sl@0
|
163 |
|
sl@0
|
164 |
TPartVFatEntry iPartEntry; ///< Storage for a partial VFat entry set error, see EScanPartEntry
|
sl@0
|
165 |
TMatchingStartCluster iMatching; ///< Storage for Matching start cluster error, see EScanMatchingEntry
|
sl@0
|
166 |
|
sl@0
|
167 |
TDirError iDirError; ///< Indicates the error tpye found also used to indicate if an error has occured
|
sl@0
|
168 |
TInt iDirsChecked; ///< Count of the number of directories checked
|
sl@0
|
169 |
TInt iRecursiveDepth; ///< Depth of recursion the scan has reached
|
sl@0
|
170 |
RArray<TInt>* iClusterListArray[KMaxArrayDepth]; ///< Size in bytes of the bit packed Fat Cluster list array used when maximum depth has been reached so that directory may be re-visited. Avoid stack overflow
|
sl@0
|
171 |
|
sl@0
|
172 |
TUint iListArrayIndex; ///< Current position into cluster list array
|
sl@0
|
173 |
TUint32 iTruncationCluster; ///< Cluster at which cluster chain truncation should take place, used for truncation errors
|
sl@0
|
174 |
TUint32 iMaxClusters; ///< Max. amount of clusters on the volume
|
sl@0
|
175 |
|
sl@0
|
176 |
RBitVector iMediaFatBits; ///< Storage for bit packed Fat read from media
|
sl@0
|
177 |
RBitVector iScanFatBits; ///< Storage for bit packed Fat built up by the scan
|
sl@0
|
178 |
|
sl@0
|
179 |
TGenericError iGenericError; ///< FS error that is discovered by scanning in any mode
|
sl@0
|
180 |
TScanDriveMode iScanDriveMode; ///< mode of operation
|
sl@0
|
181 |
};
|
sl@0
|
182 |
|
sl@0
|
183 |
|
sl@0
|
184 |
|
sl@0
|
185 |
#endif //SL_SCANDRV_H
|
sl@0
|
186 |
|
sl@0
|
187 |
|