os/kernelhwsrv/userlibandfileserver/fileserver/sfat/inc/sl_bpb.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1996-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_bpb.inl
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
sl@0
    19
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
sl@0
    20
//!!
sl@0
    21
//!! WARNING!! DO NOT edit this file !! '\sfat' component is obsolete and is not being used. '\sfat32'replaces it
sl@0
    22
//!!
sl@0
    23
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
sl@0
    24
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
sl@0
    25
sl@0
    26
#ifndef SL_BPB_INL
sl@0
    27
#define SL_BPB_INL
sl@0
    28
sl@0
    29
sl@0
    30
#define pDir ((SFatDirEntry*)&iData[0])
sl@0
    31
sl@0
    32
// class TFatBootSector
sl@0
    33
inline const TPtrC8 TFatBootSector::VendorId() const
sl@0
    34
    {return TPtrC8(iVendorId,8);}
sl@0
    35
inline TInt TFatBootSector::BytesPerSector() const
sl@0
    36
    {return iBytesPerSector;}
sl@0
    37
inline TInt TFatBootSector::SectorsPerCluster() const
sl@0
    38
    {return iSectorsPerCluster;}
sl@0
    39
inline TInt TFatBootSector::ReservedSectors() const
sl@0
    40
    {return iReservedSectors;}
sl@0
    41
inline TInt TFatBootSector::NumberOfFats() const
sl@0
    42
    {return iNumberOfFats;}
sl@0
    43
inline TInt TFatBootSector::RootDirEntries() const
sl@0
    44
    {return iRootDirEntries;}
sl@0
    45
inline TInt TFatBootSector::TotalSectors() const
sl@0
    46
    {return iTotalSectors;}
sl@0
    47
inline TUint8 TFatBootSector::MediaDescriptor() const
sl@0
    48
    {return iMediaDescriptor;}
sl@0
    49
inline TInt TFatBootSector::FatSectors() const
sl@0
    50
    {return iFatSectors;}
sl@0
    51
inline TInt TFatBootSector::SectorsPerTrack() const
sl@0
    52
    {return iSectorsPerTrack;}
sl@0
    53
inline TInt TFatBootSector::NumberOfHeads() const
sl@0
    54
    {return iNumberOfHeads;}
sl@0
    55
inline TInt TFatBootSector::HiddenSectors() const
sl@0
    56
    {return iHiddenSectors;}
sl@0
    57
inline TInt TFatBootSector::HugeSectors() const
sl@0
    58
    {return iHugeSectors;}
sl@0
    59
inline TInt TFatBootSector::PhysicalDriveNumber() const
sl@0
    60
    {return iPhysicalDriveNumber;}
sl@0
    61
inline TInt TFatBootSector::ExtendedBootSignature() const
sl@0
    62
    {return iExtendedBootSignature;}
sl@0
    63
inline TUint32 TFatBootSector::UniqueID() const
sl@0
    64
    {return iUniqueID;}
sl@0
    65
inline const TPtrC8 TFatBootSector::VolumeLabel() const
sl@0
    66
    {return TPtrC8(iVolumeLabel,KVolumeLabelSize);}
sl@0
    67
inline const TPtrC8 TFatBootSector::FileSysType() const
sl@0
    68
    {return TPtrC8(iFileSysType,KFileSysTypeSize);}
sl@0
    69
inline TInt TFatBootSector::BootSectorSignature() const
sl@0
    70
    {return KBootSectorSignature;}
sl@0
    71
sl@0
    72
inline void TFatBootSector::SetJumpInstruction()
sl@0
    73
    {
sl@0
    74
    iJumpInstruction[0]=0xE9;iJumpInstruction[2]=0x90;
sl@0
    75
    }
sl@0
    76
inline void TFatBootSector::SetVendorID(const TDesC8& aDes)
sl@0
    77
    {
sl@0
    78
    __ASSERT_DEBUG(aDes.Length()<=8,Fault(EFatBadBootSectorParameter));
sl@0
    79
    TPtr8 buf(iVendorId,8);
sl@0
    80
    buf=aDes;
sl@0
    81
    }
sl@0
    82
inline void TFatBootSector::SetBytesPerSector(TInt aBytesPerSector)
sl@0
    83
    {
sl@0
    84
    __ASSERT_DEBUG(!(aBytesPerSector&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
sl@0
    85
    iBytesPerSector=(TUint16)aBytesPerSector;
sl@0
    86
    }
sl@0
    87
inline void TFatBootSector::SetSectorsPerCluster(TInt aSectorsPerCluster)
sl@0
    88
    {
sl@0
    89
    __ASSERT_DEBUG(!(aSectorsPerCluster&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
sl@0
    90
    iSectorsPerCluster=(TUint8)aSectorsPerCluster;
sl@0
    91
    }
sl@0
    92
inline void TFatBootSector::SetReservedSectors(TInt aReservedSectors)
sl@0
    93
    {
sl@0
    94
    __ASSERT_DEBUG(!(aReservedSectors&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
sl@0
    95
    iReservedSectors=(TUint16)aReservedSectors;
sl@0
    96
    }
sl@0
    97
inline void TFatBootSector::SetNumberOfFats(TInt aNumberOfFats)
sl@0
    98
    {
sl@0
    99
    __ASSERT_DEBUG(!(aNumberOfFats&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
sl@0
   100
    iNumberOfFats=(TUint8)aNumberOfFats;
sl@0
   101
    }
sl@0
   102
inline void TFatBootSector::SetRootDirEntries(TInt aRootDirEntries)
sl@0
   103
    {
sl@0
   104
    __ASSERT_DEBUG(!(aRootDirEntries&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
sl@0
   105
    iRootDirEntries=(TUint16)aRootDirEntries;
sl@0
   106
    }
sl@0
   107
inline void TFatBootSector::SetTotalSectors(TInt aTotalSectors)
sl@0
   108
    {
sl@0
   109
    __ASSERT_DEBUG(!(aTotalSectors&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
sl@0
   110
    iTotalSectors=(TUint16)aTotalSectors;
sl@0
   111
    }
sl@0
   112
inline void TFatBootSector::SetMediaDescriptor(TUint8 aMediaDescriptor)
sl@0
   113
    {iMediaDescriptor=aMediaDescriptor;}
sl@0
   114
inline void TFatBootSector::SetFatSectors(TInt aFatSectors)
sl@0
   115
    {
sl@0
   116
    __ASSERT_DEBUG(!(aFatSectors&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
sl@0
   117
    iFatSectors=(TUint16)aFatSectors;
sl@0
   118
    }
sl@0
   119
inline void TFatBootSector::SetSectorsPerTrack(TInt aSectorsPerTrack)
sl@0
   120
    {
sl@0
   121
    __ASSERT_DEBUG(!(aSectorsPerTrack&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
sl@0
   122
    iSectorsPerTrack=(TUint16)aSectorsPerTrack;
sl@0
   123
    }
sl@0
   124
inline void TFatBootSector::SetNumberOfHeads(TInt aNumberOfHeads)
sl@0
   125
    {
sl@0
   126
    __ASSERT_DEBUG(!(aNumberOfHeads&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
sl@0
   127
    iNumberOfHeads=(TUint16)aNumberOfHeads;
sl@0
   128
    }
sl@0
   129
inline void TFatBootSector::SetHiddenSectors(TUint32 aHiddenSectors)
sl@0
   130
    {
sl@0
   131
    iHiddenSectors=(TUint32)(aHiddenSectors);
sl@0
   132
    }
sl@0
   133
inline void TFatBootSector::SetHugeSectors(TUint32 aHugeSectors)
sl@0
   134
    {iHugeSectors=aHugeSectors;}
sl@0
   135
inline void TFatBootSector::SetPhysicalDriveNumber(TInt aPhysicalDriveNumber)
sl@0
   136
    {
sl@0
   137
    __ASSERT_DEBUG(!(aPhysicalDriveNumber&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
sl@0
   138
    iPhysicalDriveNumber=(TUint8)aPhysicalDriveNumber;
sl@0
   139
    }
sl@0
   140
inline void TFatBootSector::SetReservedByte(TUint8 aReservedByte)
sl@0
   141
    {iReserved=aReservedByte;}
sl@0
   142
inline void TFatBootSector::SetExtendedBootSignature(TInt anExtendedBootSignature)
sl@0
   143
    {
sl@0
   144
    __ASSERT_DEBUG(!(anExtendedBootSignature&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
sl@0
   145
    iExtendedBootSignature=(TUint8)anExtendedBootSignature;
sl@0
   146
    }
sl@0
   147
inline void TFatBootSector::SetUniqueID(TUint32 anUniqueID)
sl@0
   148
    {iUniqueID=anUniqueID;}
sl@0
   149
inline void TFatBootSector::SetVolumeLabel(const TDesC8& aDes)
sl@0
   150
    {
sl@0
   151
    __ASSERT_DEBUG(aDes.Length()<=KVolumeLabelSize,Fault(EFatBadBootSectorParameter));
sl@0
   152
    TPtr8 buf(iVolumeLabel,KVolumeLabelSize);
sl@0
   153
    buf=aDes;
sl@0
   154
    }
sl@0
   155
inline void TFatBootSector::SetFileSysType(const TDesC8& aDes)
sl@0
   156
    {
sl@0
   157
    __ASSERT_DEBUG(aDes.Length()<=8,Fault(EFatBadBootSectorParameter));
sl@0
   158
    TPtr8 buf(iFileSysType,8);
sl@0
   159
    buf=aDes;
sl@0
   160
    }
sl@0
   161
sl@0
   162
sl@0
   163
#endif //SL_BPB_INL