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\sfat32\inc\sl_bpb.inl
23 Defined cast of Fat directory entry data read to structure allowing
28 #define pDir ((SFatDirEntry*)&iData[0])
31 Returns Sectors in Fat table for 32 bit volume
35 inline TUint32 TFatBootSector::FatSectors32() const
36 {return iFatSectors32;}
42 inline TUint16 TFatBootSector::FATFlags() const
45 Version number of the file system
47 @return iVersionNumber
49 inline TUint16 TFatBootSector::VersionNumber() const
50 {return iVersionNumber;}
52 Cluster number of the root directory
54 @return iRootClusterNum
56 inline TUint32 TFatBootSector::RootClusterNum() const
57 {return iRootClusterNum;}
59 Sector number containing the FSIInfo structure
61 @return iFSInfoSectorNum
63 inline TUint16 TFatBootSector::FSInfoSectorNum() const
64 {return iFSInfoSectorNum;}
68 @return iBkBootRecSector
70 inline TUint16 TFatBootSector::BkBootRecSector() const
71 {return iBkBootRecSector;}
73 Sets the number of sectors in Fat table for 32 bit volume
77 inline void TFatBootSector::SetFatSectors32(TUint32 aFatSectors32)
78 {iFatSectors32 = aFatSectors32;}
84 inline void TFatBootSector::SetFATFlags(TUint16 aFATFlags)
85 {iFATFlags = aFATFlags;}
87 Sets the version number of the file system
91 inline void TFatBootSector::SetVersionNumber(TUint16 aVersionNumber)
92 {iVersionNumber = aVersionNumber;}
94 Sets the cluster number of the root directory
96 @param aRootClusterNum
98 inline void TFatBootSector::SetRootClusterNum(TUint32 aRootClusterNum)
99 {iRootClusterNum = aRootClusterNum;}
101 Set the sector number containing the FSIInfo structure
103 @param aFSInfoSectorNum
105 inline void TFatBootSector::SetFSInfoSectorNum(TUint16 aFSInfoSectorNum)
106 {iFSInfoSectorNum = aFSInfoSectorNum;}
108 Set the backup boot sector
110 @param aBkBootRecSector
112 inline void TFatBootSector::SetBkBootRecSector(TUint16 aBkBootRecSector)
113 {iBkBootRecSector = aBkBootRecSector;}
116 Returns the vendor ID of the file system that formatted the volume
118 @return A descriptor containing the vendor ID
120 inline const TPtrC8 TFatBootSector::VendorId() const
121 {return TPtrC8(iVendorId,KVendorIdSize);}
123 Return the bytes per sector
125 @return iBytesPerSector
127 inline TUint16 TFatBootSector::BytesPerSector() const
128 {return iBytesPerSector;}
130 Returns the sectors per cluster ratio
132 @return iSectorsPerCluster
134 inline TInt TFatBootSector::SectorsPerCluster() const
135 {return iSectorsPerCluster;}
137 Returns the number of reserved sectors on the volume
139 @return iReservedSectors
141 inline TInt TFatBootSector::ReservedSectors() const
142 {return iReservedSectors;}
144 Returns the number of Fats on the volume
146 @return iNumberOfFats
148 inline TInt TFatBootSector::NumberOfFats() const
149 {return iNumberOfFats;}
151 Returns the number of entries allowed in the root directory, specific to Fat12/16, zero for FAT32
153 @return iRootDirEntries
155 inline TInt TFatBootSector::RootDirEntries() const
156 {return iRootDirEntries;}
158 Returns the total sectors on the volume, zero for FAT32
160 @return iTotalSectors
162 inline TInt TFatBootSector::TotalSectors() const
163 {return iTotalSectors;}
165 Returns the media descriptor
167 @return iMediaDescriptor
169 inline TUint8 TFatBootSector::MediaDescriptor() const
170 {return iMediaDescriptor;}
172 Returns sectors used for the Fat table, zero for FAT32
176 inline TInt TFatBootSector::FatSectors() const
177 {return iFatSectors;}
179 Returns sectors per track
181 @return iSectorsPerTrack
183 inline TInt TFatBootSector::SectorsPerTrack() const
184 {return iSectorsPerTrack;}
186 Returns the number of heads
188 @return iNumberOfHeads
190 inline TInt TFatBootSector::NumberOfHeads() const
191 {return iNumberOfHeads;}
193 Returns the number of hidden sectors in the volume
195 @return iHiddenSectors
197 inline TInt TFatBootSector::HiddenSectors() const
198 {return iHiddenSectors;}
200 Returns total sectors in the volume, Used if totalSectors > 65535
204 inline TInt TFatBootSector::HugeSectors() const
205 {return iHugeSectors;}
207 Returns the physical drive number, not used in Symbian OS
209 @return iPhysicalDriveNumber
211 inline TInt TFatBootSector::PhysicalDriveNumber() const
212 {return iPhysicalDriveNumber;}
214 Returns the extended boot signiture
216 @return iExtendedBootSignature
218 inline TInt TFatBootSector::ExtendedBootSignature() const
219 {return iExtendedBootSignature;}
221 Returns the unique volume ID
225 inline TUint32 TFatBootSector::UniqueID() const
228 Returns the volume's label
230 @return A descriptor containing the volume label
232 inline const TPtrC8 TFatBootSector::VolumeLabel() const
233 {return TPtrC8(iVolumeLabel,KVolumeLabelSize);}
235 Returns the file system type
237 @return A descriptor containing the file system type
239 inline const TPtrC8 TFatBootSector::FileSysType() const
240 {return TPtrC8(iFileSysType,KFileSysTypeSize);}
242 Returns the boot sector signiture
244 @return KBootSectorSignature
246 inline TInt TFatBootSector::BootSectorSignature() const
247 {return KBootSectorSignature;}
249 Set the jump instruction
251 inline void TFatBootSector::SetJumpInstruction()
252 {iJumpInstruction[0]=0xE9;iJumpInstruction[2]=0x90;}
254 Set the vendor ID of the file system that formatted the volume
256 @param aDes Descriptor containing the Vendor ID
258 inline void TFatBootSector::SetVendorID(const TDesC8& aDes)
260 __ASSERT_DEBUG(aDes.Length()<=KVendorIdSize,Fault(EFatBadBootSectorParameter));
261 TPtr8 buf(iVendorId,KVendorIdSize);
265 Sets the bytes per sector
267 @param aBytesPerSector Number of bytes per sector
269 inline void TFatBootSector::SetBytesPerSector(TInt aBytesPerSector)
271 __ASSERT_DEBUG(!(aBytesPerSector&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
272 iBytesPerSector=(TUint16)aBytesPerSector;
275 Set the sectors per cluster ratio
277 @param aSectorsPerCluster Number of sectors per cluster
279 inline void TFatBootSector::SetSectorsPerCluster(TInt aSectorsPerCluster)
281 __ASSERT_DEBUG(!(aSectorsPerCluster&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
282 iSectorsPerCluster=(TUint8)aSectorsPerCluster;
285 Sets the number of reserved sectors on the volume
287 @param aReservedSectors Number of reserved sectors
289 inline void TFatBootSector::SetReservedSectors(TInt aReservedSectors)
291 __ASSERT_DEBUG(!(aReservedSectors&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
292 iReservedSectors=(TUint16)aReservedSectors;
295 Sets the number of Fats on the volume
297 @param aNumberOfFats Number of fats
299 inline void TFatBootSector::SetNumberOfFats(TInt aNumberOfFats)
301 __ASSERT_DEBUG(!(aNumberOfFats&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
302 iNumberOfFats=(TUint8)aNumberOfFats;
305 Number of entries allowed in the root directory, specific to Fat12/16, zero for FAT32
307 @param aRootDirEntries
309 inline void TFatBootSector::SetRootDirEntries(TInt aRootDirEntries)
311 __ASSERT_DEBUG(!(aRootDirEntries&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
312 iRootDirEntries=(TUint16)aRootDirEntries;
315 Total sectors on the volume, zero for FAT32
317 @param aTotalSectors Total number of sectors
319 inline void TFatBootSector::SetTotalSectors(TInt aTotalSectors)
321 __ASSERT_DEBUG(!(aTotalSectors&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
322 iTotalSectors=(TUint16)aTotalSectors;
325 Set the media descriptor
327 @param aMediaDescriptor
329 inline void TFatBootSector::SetMediaDescriptor(TUint8 aMediaDescriptor)
330 {iMediaDescriptor=aMediaDescriptor;}
332 Sectors used for the Fat table, zero for FAT32
334 @param aFatSectors Number of Fat sectors
336 inline void TFatBootSector::SetFatSectors(TInt aFatSectors)
338 __ASSERT_DEBUG(!(aFatSectors&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
339 iFatSectors=(TUint16)aFatSectors;
342 Set the sectors per track
344 @param aSectorsPerTrack Number of sectors per track
346 inline void TFatBootSector::SetSectorsPerTrack(TInt aSectorsPerTrack)
348 __ASSERT_DEBUG(!(aSectorsPerTrack&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
349 iSectorsPerTrack=(TUint16)aSectorsPerTrack;
352 Set the number of heads
354 @param aNumberOfHeads Number of heads
356 inline void TFatBootSector::SetNumberOfHeads(TInt aNumberOfHeads)
358 __ASSERT_DEBUG(!(aNumberOfHeads&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
359 iNumberOfHeads=(TUint16)aNumberOfHeads;
362 Set the number of hidden sectors in the volume
364 @param aHiddenSectors Number of hidden sectors
366 inline void TFatBootSector::SetHiddenSectors(TUint32 aHiddenSectors)
368 iHiddenSectors=aHiddenSectors;
371 Set the total sectors in the volume, Used if totalSectors > 65535
375 inline void TFatBootSector::SetHugeSectors(TUint32 aHugeSectors)
376 {iHugeSectors=aHugeSectors;}
378 Physical drive number, not used in Symbian OS
380 @param aPhysicalDriveNumber Physical drive number
382 inline void TFatBootSector::SetPhysicalDriveNumber(TInt aPhysicalDriveNumber)
384 __ASSERT_DEBUG(!(aPhysicalDriveNumber&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
385 iPhysicalDriveNumber=(TUint8)aPhysicalDriveNumber;
388 Set the reserved byte value
390 @param aReservedByte Value for reserved byte
392 inline void TFatBootSector::SetReservedByte(TUint8 aReservedByte)
393 {iReserved=aReservedByte;}
395 Set the extended boot signiture
397 @param anExtendedBootSignature The extended boot signiture
399 inline void TFatBootSector::SetExtendedBootSignature(TInt anExtendedBootSignature)
401 __ASSERT_DEBUG(!(anExtendedBootSignature&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
402 iExtendedBootSignature=(TUint8)anExtendedBootSignature;
405 Set the unique volume ID
407 @param anUniqueID Set the unique ID
409 inline void TFatBootSector::SetUniqueID(TUint32 anUniqueID)
410 {iUniqueID=anUniqueID;}
412 Set the volume's label
414 @param aDes A descriptor containg the volume label
416 inline void TFatBootSector::SetVolumeLabel(const TDesC8& aDes)
418 __ASSERT_DEBUG(aDes.Length()<=KVolumeLabelSize,Fault(EFatBadBootSectorParameter));
419 TPtr8 buf(iVolumeLabel,KVolumeLabelSize);
423 Set the file system type
425 @param aDes A descriptor containing the file system type
427 inline void TFatBootSector::SetFileSysType(const TDesC8& aDes)
429 __ASSERT_DEBUG(aDes.Length()<=8,Fault(EFatBadBootSectorParameter));
430 TPtr8 buf(iFileSysType,8);
436 Returns the number of free clusters
440 inline TUint32 TFSInfo::FreeClusterCount() const
443 Returns the next free cluster
447 inline TUint32 TFSInfo::NextFreeCluster() const
450 Sets the number of free clusters
452 @param aFreeCount Number of free clusters
454 inline void TFSInfo::SetFreeClusterCount(TUint32 aFreeCount)
455 {iFreeCount = aFreeCount;}
457 Sets the next free cluster
459 @param aNextCluster Cluster number of the next free cluster
461 inline void TFSInfo::SetNextFreeCluster(TUint32 aNextCluster)
462 {iNextFree = aNextCluster;}