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