Update contrib.
1 // Copyright (c) 1996-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // f32\sfat\inc\sl_bpb.inl
18 //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
19 //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
21 //!! WARNING!! DO NOT edit this file !! '\sfat' component is obsolete and is not being used. '\sfat32'replaces it
23 //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
24 //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
30 #define pDir ((SFatDirEntry*)&iData[0])
32 // class TFatBootSector
33 inline const TPtrC8 TFatBootSector::VendorId() const
34 {return TPtrC8(iVendorId,8);}
35 inline TInt TFatBootSector::BytesPerSector() const
36 {return iBytesPerSector;}
37 inline TInt TFatBootSector::SectorsPerCluster() const
38 {return iSectorsPerCluster;}
39 inline TInt TFatBootSector::ReservedSectors() const
40 {return iReservedSectors;}
41 inline TInt TFatBootSector::NumberOfFats() const
42 {return iNumberOfFats;}
43 inline TInt TFatBootSector::RootDirEntries() const
44 {return iRootDirEntries;}
45 inline TInt TFatBootSector::TotalSectors() const
46 {return iTotalSectors;}
47 inline TUint8 TFatBootSector::MediaDescriptor() const
48 {return iMediaDescriptor;}
49 inline TInt TFatBootSector::FatSectors() const
51 inline TInt TFatBootSector::SectorsPerTrack() const
52 {return iSectorsPerTrack;}
53 inline TInt TFatBootSector::NumberOfHeads() const
54 {return iNumberOfHeads;}
55 inline TInt TFatBootSector::HiddenSectors() const
56 {return iHiddenSectors;}
57 inline TInt TFatBootSector::HugeSectors() const
58 {return iHugeSectors;}
59 inline TInt TFatBootSector::PhysicalDriveNumber() const
60 {return iPhysicalDriveNumber;}
61 inline TInt TFatBootSector::ExtendedBootSignature() const
62 {return iExtendedBootSignature;}
63 inline TUint32 TFatBootSector::UniqueID() const
65 inline const TPtrC8 TFatBootSector::VolumeLabel() const
66 {return TPtrC8(iVolumeLabel,KVolumeLabelSize);}
67 inline const TPtrC8 TFatBootSector::FileSysType() const
68 {return TPtrC8(iFileSysType,KFileSysTypeSize);}
69 inline TInt TFatBootSector::BootSectorSignature() const
70 {return KBootSectorSignature;}
72 inline void TFatBootSector::SetJumpInstruction()
74 iJumpInstruction[0]=0xE9;iJumpInstruction[2]=0x90;
76 inline void TFatBootSector::SetVendorID(const TDesC8& aDes)
78 __ASSERT_DEBUG(aDes.Length()<=8,Fault(EFatBadBootSectorParameter));
79 TPtr8 buf(iVendorId,8);
82 inline void TFatBootSector::SetBytesPerSector(TInt aBytesPerSector)
84 __ASSERT_DEBUG(!(aBytesPerSector&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
85 iBytesPerSector=(TUint16)aBytesPerSector;
87 inline void TFatBootSector::SetSectorsPerCluster(TInt aSectorsPerCluster)
89 __ASSERT_DEBUG(!(aSectorsPerCluster&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
90 iSectorsPerCluster=(TUint8)aSectorsPerCluster;
92 inline void TFatBootSector::SetReservedSectors(TInt aReservedSectors)
94 __ASSERT_DEBUG(!(aReservedSectors&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
95 iReservedSectors=(TUint16)aReservedSectors;
97 inline void TFatBootSector::SetNumberOfFats(TInt aNumberOfFats)
99 __ASSERT_DEBUG(!(aNumberOfFats&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
100 iNumberOfFats=(TUint8)aNumberOfFats;
102 inline void TFatBootSector::SetRootDirEntries(TInt aRootDirEntries)
104 __ASSERT_DEBUG(!(aRootDirEntries&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
105 iRootDirEntries=(TUint16)aRootDirEntries;
107 inline void TFatBootSector::SetTotalSectors(TInt aTotalSectors)
109 __ASSERT_DEBUG(!(aTotalSectors&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
110 iTotalSectors=(TUint16)aTotalSectors;
112 inline void TFatBootSector::SetMediaDescriptor(TUint8 aMediaDescriptor)
113 {iMediaDescriptor=aMediaDescriptor;}
114 inline void TFatBootSector::SetFatSectors(TInt aFatSectors)
116 __ASSERT_DEBUG(!(aFatSectors&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
117 iFatSectors=(TUint16)aFatSectors;
119 inline void TFatBootSector::SetSectorsPerTrack(TInt aSectorsPerTrack)
121 __ASSERT_DEBUG(!(aSectorsPerTrack&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
122 iSectorsPerTrack=(TUint16)aSectorsPerTrack;
124 inline void TFatBootSector::SetNumberOfHeads(TInt aNumberOfHeads)
126 __ASSERT_DEBUG(!(aNumberOfHeads&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
127 iNumberOfHeads=(TUint16)aNumberOfHeads;
129 inline void TFatBootSector::SetHiddenSectors(TUint32 aHiddenSectors)
131 iHiddenSectors=(TUint32)(aHiddenSectors);
133 inline void TFatBootSector::SetHugeSectors(TUint32 aHugeSectors)
134 {iHugeSectors=aHugeSectors;}
135 inline void TFatBootSector::SetPhysicalDriveNumber(TInt aPhysicalDriveNumber)
137 __ASSERT_DEBUG(!(aPhysicalDriveNumber&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
138 iPhysicalDriveNumber=(TUint8)aPhysicalDriveNumber;
140 inline void TFatBootSector::SetReservedByte(TUint8 aReservedByte)
141 {iReserved=aReservedByte;}
142 inline void TFatBootSector::SetExtendedBootSignature(TInt anExtendedBootSignature)
144 __ASSERT_DEBUG(!(anExtendedBootSignature&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
145 iExtendedBootSignature=(TUint8)anExtendedBootSignature;
147 inline void TFatBootSector::SetUniqueID(TUint32 anUniqueID)
148 {iUniqueID=anUniqueID;}
149 inline void TFatBootSector::SetVolumeLabel(const TDesC8& aDes)
151 __ASSERT_DEBUG(aDes.Length()<=KVolumeLabelSize,Fault(EFatBadBootSectorParameter));
152 TPtr8 buf(iVolumeLabel,KVolumeLabelSize);
155 inline void TFatBootSector::SetFileSysType(const TDesC8& aDes)
157 __ASSERT_DEBUG(aDes.Length()<=8,Fault(EFatBadBootSectorParameter));
158 TPtr8 buf(iFileSysType,8);