os/kernelhwsrv/userlibandfileserver/fileserver/sfat/inc/sl_scandrv.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
sl@0
    24
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
sl@0
    25
//!!
sl@0
    26
//!! WARNING!! DO NOT edit this file !! '\sfat' component is obsolete and is not being used. '\sfat32'replaces it
sl@0
    27
//!!
sl@0
    28
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
sl@0
    29
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
sl@0
    30
sl@0
    31
sl@0
    32
#ifndef SL_SCANDRV_H
sl@0
    33
#define SL_SCANDRV_H
sl@0
    34
sl@0
    35
//---------------------------------------------------------------------------------------------------------------------------------
sl@0
    36
sl@0
    37
const TInt KMaxMatchingEntries      = 2;        ///< Maximum number of matching directory entries scan drive can fix. Any more indicates a fault in the file system
sl@0
    38
const TInt KMaxArrayDepth           = 6;        ///< Maximum array depth for cluster storage when KMaxScanDepth is reached
sl@0
    39
sl@0
    40
//---------------------------------------------------------------------------------------------------------------------------------
sl@0
    41
sl@0
    42
/**
sl@0
    43
Data structure used to store the location of a partial VFat entry
sl@0
    44
*/
sl@0
    45
struct TPartVFatEntry
sl@0
    46
    {
sl@0
    47
    TEntryPos    iEntryPos; ///< The position of the partial VFat entry
sl@0
    48
    TFatDirEntry iEntry;    ///< The Dos entry The VFat entries belong with
sl@0
    49
    };
sl@0
    50
sl@0
    51
//---------------------------------------------------------------------------------------------------------------------------------
sl@0
    52
sl@0
    53
/**
sl@0
    54
Data structure used to store the locations of entries with matching
sl@0
    55
start cluster numbers. 
sl@0
    56
*/
sl@0
    57
struct TMatchingStartCluster
sl@0
    58
    {
sl@0
    59
    TEntryPos   iEntries[KMaxMatchingEntries]; ///< The positions of the matching entries
sl@0
    60
    TInt        iCount;         ///< Count of matching entries
sl@0
    61
    TInt        iStartCluster;  ///< The matching cluster number found in more than one entry
sl@0
    62
    };
sl@0
    63
sl@0
    64
sl@0
    65
//---------------------------------------------------------------------------------------------------------------------------------
sl@0
    66
sl@0
    67
class CCheckFatTable : public CBase
sl@0
    68
    {
sl@0
    69
public:
sl@0
    70
    static CCheckFatTable* NewL(CFatMountCB* aOwner);
sl@0
    71
    CCheckFatTable(CFatMountCB* aOwner);
sl@0
    72
    ~CCheckFatTable();
sl@0
    73
    void InitializeL();
sl@0
    74
    TBool FlushL();
sl@0
    75
    TBool GetNextClusterL(TInt& aCluster) const;
sl@0
    76
    void WriteFatEntryEofFL(TInt aCluster);
sl@0
    77
    TInt ReadL(TInt aFatIndex) const;
sl@0
    78
    void WriteL(TInt aFatIndex,TInt aValue);
sl@0
    79
private:
sl@0
    80
    void WriteMediaDescriptor();
sl@0
    81
    TInt PosInBytes(TInt aFatIndex) const;
sl@0
    82
    TInt PosInIndex(TInt aBytePos) const;
sl@0
    83
    inline TBool IsEof16Bit(TInt aCluster) const;
sl@0
    84
    inline TBool IsEof12Bit(TInt aCluster) const;
sl@0
    85
    inline TInt MaxFatIndex() const;
sl@0
    86
protected:
sl@0
    87
    TInt iMaxFatIndex;
sl@0
    88
    TUint8* iCheckFat;
sl@0
    89
    CFatMountCB* iOwner;
sl@0
    90
    };
sl@0
    91
sl@0
    92
sl@0
    93
//---------------------------------------------------------------------------------------------------------------------------------
sl@0
    94
sl@0
    95
/**
sl@0
    96
Scan drive class performs scan drive functionality on all types
sl@0
    97
of fat volume.
sl@0
    98
*/
sl@0
    99
class CScanDrive : public CBase
sl@0
   100
    {
sl@0
   101
public:
sl@0
   102
    enum TDirError{EScanMatchingEntry=1,EScanPartEntry};
sl@0
   103
public:
sl@0
   104
    CScanDrive();
sl@0
   105
    ~CScanDrive();
sl@0
   106
    static CScanDrive* NewL(CFatMountCB* aMount);
sl@0
   107
    void ConstructL(CFatMountCB* aMount);
sl@0
   108
    TInt StartL();
sl@0
   109
    TBool ProblemsDiscovered() const;  
sl@0
   110
sl@0
   111
sl@0
   112
private:
sl@0
   113
sl@0
   114
#if defined(DEBUG_SCANDRIVE)
sl@0
   115
    void PrintErrors();
sl@0
   116
    void CompareFatsL() const;
sl@0
   117
#endif
sl@0
   118
sl@0
   119
    void FixupDirErrorL();
sl@0
   120
    void FindSameStartClusterL();
sl@0
   121
    TInt FindStartClusterL(TInt aDirCluster);
sl@0
   122
    void CheckDirStructureL();
sl@0
   123
    void CheckDirL(TInt aCluster);
sl@0
   124
    void ProcessEntryL(const TFatDirEntry& aEntry);
sl@0
   125
    TInt CheckEntryClusterL(const TFatDirEntry& aEntry, const TEntryPos& aEntryPos);
sl@0
   126
    void WriteClusterChainL(TInt aCluster,TInt aSizeInBytes);
sl@0
   127
    TBool MoveToVFatEndL(TEntryPos& aPos,TFatDirEntry& aEntry,TInt& aDirLength);
sl@0
   128
    TBool IsValidVFatEntry(const TFatDirEntry& aEntry,TInt prevNum)const;
sl@0
   129
    TBool IsDosEntry(const TFatDirEntry& aEntry)const;
sl@0
   130
    void AddPartialVFatL(const TEntryPos& aStartPos, const TFatDirEntry& aEntry);
sl@0
   131
    TBool AddMatchingEntryL(const TEntryPos& aEntryPos);
sl@0
   132
    TInt GetReservedidL(const TEntryPos aVFatPos);
sl@0
   133
    void WriteNewFatsL();
sl@0
   134
    void FixPartEntryL();
sl@0
   135
    void FixMatchingEntryL();
sl@0
   136
    void MovePastEntriesL(TEntryPos& aEntryPos,TFatDirEntry& aEntry,TInt aToMove,TInt& aDirEntries);
sl@0
   137
    void AddToClusterListL(TInt aCluster);
sl@0
   138
    inline TBool AlreadyExistsL(TInt aCluster)const;
sl@0
   139
    inline TBool IsEndOfRootDir(const TEntryPos& aPos)const;
sl@0
   140
    inline TBool IsEofF(TInt aVal)const;
sl@0
   141
    inline TBool IsDirError()const;
sl@0
   142
    void IndicateErrorsFound();
sl@0
   143
sl@0
   144
private:
sl@0
   145
    CFatMountCB*        iMount;
sl@0
   146
    CCheckFatTable*     iNewFat;
sl@0
   147
    TPartVFatEntry      iPartEntry;
sl@0
   148
    TMatchingStartCluster iMatching;
sl@0
   149
    TDirError           iDirError;
sl@0
   150
    TInt                iDirsChecked;
sl@0
   151
    TInt                iRecursiveDepth;
sl@0
   152
    RArray<TInt>*       iClusterListArray[KMaxArrayDepth];
sl@0
   153
    TInt                iListArrayIndex;
sl@0
   154
    TBool               iFoundProblems; ///< if ETrue after finish, it means that there where some problems FS structure and they were probably fixed;
sl@0
   155
    };
sl@0
   156
sl@0
   157
sl@0
   158
sl@0
   159
sl@0
   160
sl@0
   161
#endif //SL_SCANDRV_H
sl@0
   162
sl@0
   163