userlibandfileserver/fileserver/sfat32/fat_dir_entry.h
author Tom Cosgrove <tom.cosgrove@nokia.com>
Fri, 28 May 2010 16:26:05 +0100
branchRCL_3
changeset 29 743008598095
parent 22 2f92ad2dc5db
permissions -rw-r--r--
Fix for bug 2283 (RVCT 4.0 support is missing from PDK 3.0.h) Have multiple extension sections in the bld.inf, one for each version of the compiler. The RVCT version building the tools will build the runtime libraries for its version, but make sure we extract all the other versions from zip archives. Also add the archive for RVCT4.

// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// f32\sfat\inc\fat_dir_entry.h
// FAT directory entry related stuff definitions.
// 
//

/**
 @file
 @internalTechnology
*/

#if !defined(FAT_DIR_ENTRY_H)
#define FAT_DIR_ENTRY_H


//-------------------------------------------------------------------------------------------------------------------


const TInt      KFatDirNameSize         = 11;   ///< Dos directory/File name length
const TUint     KVFatEntryAttribute     = 0x0F;  ///< VFat entry attribute setting
const TUint8    KDotEntryByte           = 0x2e;  ///< Dot value for self and parent pointer directory entries
const TUint8    KBlankSpace             = 0x20;  ///< Blank space in a directory entry
const TInt      KSizeOfFatDirEntryLog2  = 5;     ///< Log2 of size in bytes of a Fat directry entry 
const TUint     KSizeOfFatDirEntry      = 1 << KSizeOfFatDirEntryLog2;    ///< Size in bytes of a Fat directry entry 

const TUint16 KReservedIdOldEntry = 1;	///< Rugged FAT "OldEntry" id
const TUint16 KReservedIdNewEntry = 0;  ///< Rugged FAT "ReservedIdNewEntry" id


typedef TBuf8<KFatDirNameSize> TShortName;  ///< Buffer type fot short names in dos entries

//-------------------------------------------------------------------------------------------------------------------

/**
    Fat DOS directory entry structure
*/
struct SFatDirEntry
    {
    TUint8  iName[KFatDirNameSize]; ///< :0  File/Directory name
    TUint8  iAttributes;            ///< :11 File/Directory attributes
    TUint8  iReserved1[2];          ///< :12 2 reserved bytes(in our implementation), some versions of Windows may use them
    TUint16 iTimeC;                 ///< :14 Creation time
    TUint16 iDateC;                 ///< :16 Creation date
    TUint16 iReserved2;             ///< :18 2 reserved bytes(in our implementation), FAT specs say that this is "last access date". Rugged FAT uses them as a special entry ID
    TUint16 iStartClusterHi;        ///< :20 High 16 bits of the File/Directory cluster number (Fat32 only)
    TUint16 iTime;                  ///< :22 last write access time 
    TUint16 iDate;                  ///< :24 last write access date 
    TUint16 iStartClusterLo;        ///< :26 Low 16 bits of the File/Directory cluster number 
    TUint32 iSize;                  ///< :28 File/Directory size in bytes
    };


//-------------------------------------------------------------------------------------------------------------------

/**
Provides access to the Fat directory entry parameters
*/
class TFatDirEntry
    {
public:
    inline TFatDirEntry();
    inline void InitZ();

    inline const TPtrC8 Name() const;
    inline void SetName(const TDesC8& aDes);

    inline TUint Attributes() const;
    inline void SetAttributes(TUint anAtt);

    inline TTime Time(TTimeIntervalSeconds aOffset) const;
    inline void SetTime(TTime aTime, TTimeIntervalSeconds aOffset);
    inline TBool IsTimeTheSame(TTime aTime, TTimeIntervalSeconds aOffset) const; 
    

    inline TUint32 StartCluster() const;
    inline void SetStartCluster(TUint32 aStartCluster);

    inline TUint32 Size() const;
    inline void SetSize(TUint32 aFilesize);

    inline TBool IsErased() const;
    inline void SetErased();

    inline TBool IsCurrentDirectory() const;
    inline void SetCurrentDirectory();

    inline TBool IsParentDirectory() const;
    inline void SetParentDirectory();

    inline TBool IsEndOfDirectory() const;
    inline void SetEndOfDirectory();

    inline TBool IsGarbage() const;
    
    inline void SetCreateTime(TTime aTime, TTimeIntervalSeconds aOffset);

    inline TUint16 RuggedFatEntryId() const;
    inline void  SetRuggedFatEntryId(TUint16 aId);

    inline TInt NumFollowing() const;
    inline TUint8 CheckSum() const;

    void SetVFatEntry(const TDesC& aName, TUint aRemainderLen, TUint8 aCheckSum);
    void ReadVFatEntry(TDes16& aVBuf) const;
    
    inline TBool IsLongNameStart() const;
    inline TBool IsVFatEntry() const;


public:
    TUint8 iData[KSizeOfFatDirEntry]; ///< The directory entry data
    };

__ASSERT_COMPILE((sizeof(TFatDirEntry) == KSizeOfFatDirEntry));
__ASSERT_COMPILE((sizeof(SFatDirEntry) == KSizeOfFatDirEntry));


#endif //FAT_DIR_ENTRY_H