os/kernelhwsrv/userlibandfileserver/fileserver/sfat32/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\sfat32\inc\sl_bpb.inl
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef SL_BPB_INL
sl@0
    19
#define SL_BPB_INL
sl@0
    20
sl@0
    21
sl@0
    22
/**
sl@0
    23
Defined cast of Fat directory entry data read to structure allowing
sl@0
    24
access to data
sl@0
    25
sl@0
    26
@internalTechnology
sl@0
    27
*/
sl@0
    28
#define pDir ((SFatDirEntry*)&iData[0])
sl@0
    29
sl@0
    30
/**
sl@0
    31
Returns Sectors in Fat table for 32 bit volume
sl@0
    32
sl@0
    33
@return iFatSectors32
sl@0
    34
*/
sl@0
    35
inline TUint32 TFatBootSector::FatSectors32() const	
sl@0
    36
	{return iFatSectors32;}
sl@0
    37
/**
sl@0
    38
Fat flags
sl@0
    39
sl@0
    40
@return iFATFlags
sl@0
    41
*/
sl@0
    42
inline TUint16 TFatBootSector::FATFlags() const		
sl@0
    43
	{return iFATFlags;}
sl@0
    44
/**
sl@0
    45
Version number of the file system
sl@0
    46
sl@0
    47
@return iVersionNumber
sl@0
    48
*/
sl@0
    49
inline TUint16 TFatBootSector::VersionNumber() const		
sl@0
    50
	{return iVersionNumber;}
sl@0
    51
/**
sl@0
    52
Cluster number of the root directory
sl@0
    53
sl@0
    54
@return iRootClusterNum
sl@0
    55
*/
sl@0
    56
inline TUint32 TFatBootSector::RootClusterNum() const	
sl@0
    57
	{return iRootClusterNum;}
sl@0
    58
/**
sl@0
    59
Sector number containing the FSIInfo structure
sl@0
    60
sl@0
    61
@return iFSInfoSectorNum
sl@0
    62
*/
sl@0
    63
inline TUint16 TFatBootSector::FSInfoSectorNum() const
sl@0
    64
	{return iFSInfoSectorNum;}
sl@0
    65
/**
sl@0
    66
Backup boot sector
sl@0
    67
sl@0
    68
@return iBkBootRecSector
sl@0
    69
*/
sl@0
    70
inline TUint16 TFatBootSector::BkBootRecSector() const
sl@0
    71
	{return iBkBootRecSector;}
sl@0
    72
/**
sl@0
    73
Sets the number of sectors in Fat table for 32 bit volume
sl@0
    74
sl@0
    75
@param aFatSectors32
sl@0
    76
*/
sl@0
    77
inline void TFatBootSector::SetFatSectors32(TUint32	aFatSectors32)
sl@0
    78
	{iFatSectors32 = aFatSectors32;}
sl@0
    79
/**
sl@0
    80
Sets the Fat flags
sl@0
    81
sl@0
    82
@param aFATFlags
sl@0
    83
*/
sl@0
    84
inline void TFatBootSector::SetFATFlags(TUint16 aFATFlags)
sl@0
    85
	{iFATFlags = aFATFlags;}
sl@0
    86
/**
sl@0
    87
Sets the version number of the file system
sl@0
    88
sl@0
    89
@param aVersionNumber
sl@0
    90
*/
sl@0
    91
inline void TFatBootSector::SetVersionNumber(TUint16 aVersionNumber)
sl@0
    92
	{iVersionNumber = aVersionNumber;}
sl@0
    93
/**
sl@0
    94
Sets the cluster number of the root directory
sl@0
    95
sl@0
    96
@param aRootClusterNum
sl@0
    97
*/
sl@0
    98
inline void TFatBootSector::SetRootClusterNum(TUint32 aRootClusterNum)	
sl@0
    99
	{iRootClusterNum = aRootClusterNum;}
sl@0
   100
/**
sl@0
   101
Set the sector number containing the FSIInfo structure
sl@0
   102
sl@0
   103
@param aFSInfoSectorNum
sl@0
   104
*/
sl@0
   105
inline void TFatBootSector::SetFSInfoSectorNum(TUint16 aFSInfoSectorNum)
sl@0
   106
	{iFSInfoSectorNum = aFSInfoSectorNum;}
sl@0
   107
/**
sl@0
   108
Set the backup boot sector
sl@0
   109
sl@0
   110
@param aBkBootRecSector
sl@0
   111
*/
sl@0
   112
inline void TFatBootSector::SetBkBootRecSector(TUint16 aBkBootRecSector)
sl@0
   113
	{iBkBootRecSector = aBkBootRecSector;}	
sl@0
   114
sl@0
   115
/**
sl@0
   116
Returns the vendor ID of the file system that formatted the volume
sl@0
   117
sl@0
   118
@return A descriptor containing the vendor ID 
sl@0
   119
*/
sl@0
   120
inline const TPtrC8 TFatBootSector::VendorId() const
sl@0
   121
	{return TPtrC8(iVendorId,KVendorIdSize);}
sl@0
   122
/**
sl@0
   123
Return the bytes per sector
sl@0
   124
sl@0
   125
@return iBytesPerSector
sl@0
   126
*/
sl@0
   127
inline TUint16 TFatBootSector::BytesPerSector() const
sl@0
   128
	{return iBytesPerSector;}
sl@0
   129
/**
sl@0
   130
Returns the sectors per cluster ratio
sl@0
   131
sl@0
   132
@return iSectorsPerCluster
sl@0
   133
*/
sl@0
   134
inline TInt TFatBootSector::SectorsPerCluster() const
sl@0
   135
	{return iSectorsPerCluster;}
sl@0
   136
/**
sl@0
   137
Returns the number of reserved sectors on the volume
sl@0
   138
sl@0
   139
@return iReservedSectors
sl@0
   140
*/
sl@0
   141
inline TInt TFatBootSector::ReservedSectors() const
sl@0
   142
	{return iReservedSectors;}
sl@0
   143
/**
sl@0
   144
Returns the number of Fats on the volume
sl@0
   145
sl@0
   146
@return iNumberOfFats
sl@0
   147
*/
sl@0
   148
inline TInt TFatBootSector::NumberOfFats() const
sl@0
   149
	{return iNumberOfFats;}
sl@0
   150
/**
sl@0
   151
Returns the number of entries allowed in the root directory, specific to Fat12/16, zero for FAT32
sl@0
   152
sl@0
   153
@return iRootDirEntries
sl@0
   154
*/
sl@0
   155
inline TInt TFatBootSector::RootDirEntries() const
sl@0
   156
	{return iRootDirEntries;}
sl@0
   157
/**
sl@0
   158
Returns the total sectors on the volume, zero for FAT32
sl@0
   159
sl@0
   160
@return iTotalSectors
sl@0
   161
*/
sl@0
   162
inline TInt TFatBootSector::TotalSectors() const
sl@0
   163
	{return iTotalSectors;}
sl@0
   164
/**
sl@0
   165
Returns the media descriptor
sl@0
   166
sl@0
   167
@return iMediaDescriptor
sl@0
   168
*/
sl@0
   169
inline TUint8 TFatBootSector::MediaDescriptor() const
sl@0
   170
	{return iMediaDescriptor;}
sl@0
   171
/**
sl@0
   172
Returns sectors used for the Fat table, zero for FAT32
sl@0
   173
sl@0
   174
@return iFatSectors
sl@0
   175
*/
sl@0
   176
inline TInt TFatBootSector::FatSectors() const
sl@0
   177
	{return iFatSectors;}
sl@0
   178
/**
sl@0
   179
Returns sectors per track
sl@0
   180
sl@0
   181
@return iSectorsPerTrack
sl@0
   182
*/
sl@0
   183
inline TInt TFatBootSector::SectorsPerTrack() const
sl@0
   184
	{return iSectorsPerTrack;}
sl@0
   185
/**
sl@0
   186
Returns the number of heads 
sl@0
   187
sl@0
   188
@return iNumberOfHeads
sl@0
   189
*/
sl@0
   190
inline TInt TFatBootSector::NumberOfHeads() const
sl@0
   191
	{return iNumberOfHeads;}
sl@0
   192
/**
sl@0
   193
Returns the number of hidden sectors in the volume
sl@0
   194
sl@0
   195
@return iHiddenSectors
sl@0
   196
*/
sl@0
   197
inline TInt TFatBootSector::HiddenSectors() const
sl@0
   198
	{return iHiddenSectors;}
sl@0
   199
/**
sl@0
   200
Returns total sectors in the volume, Used if totalSectors > 65535
sl@0
   201
sl@0
   202
@return iHugeSectors
sl@0
   203
*/
sl@0
   204
inline TInt TFatBootSector::HugeSectors() const
sl@0
   205
	{return iHugeSectors;}
sl@0
   206
/**
sl@0
   207
Returns the physical drive number, not used in Symbian OS
sl@0
   208
sl@0
   209
@return iPhysicalDriveNumber
sl@0
   210
*/
sl@0
   211
inline TInt TFatBootSector::PhysicalDriveNumber() const
sl@0
   212
	{return iPhysicalDriveNumber;}
sl@0
   213
/**
sl@0
   214
Returns the extended boot signiture
sl@0
   215
sl@0
   216
@return iExtendedBootSignature
sl@0
   217
*/
sl@0
   218
inline TInt TFatBootSector::ExtendedBootSignature() const
sl@0
   219
	{return iExtendedBootSignature;}
sl@0
   220
/**
sl@0
   221
Returns the unique volume ID
sl@0
   222
sl@0
   223
@return iUniqueID
sl@0
   224
*/
sl@0
   225
inline TUint32 TFatBootSector::UniqueID() const
sl@0
   226
	{return iUniqueID;}
sl@0
   227
/**
sl@0
   228
Returns the volume's label
sl@0
   229
sl@0
   230
@return A descriptor containing the volume label
sl@0
   231
*/
sl@0
   232
inline const TPtrC8 TFatBootSector::VolumeLabel() const
sl@0
   233
	{return TPtrC8(iVolumeLabel,KVolumeLabelSize);}
sl@0
   234
/**
sl@0
   235
Returns the file system type
sl@0
   236
sl@0
   237
@return A descriptor containing the file system type
sl@0
   238
*/
sl@0
   239
inline const TPtrC8 TFatBootSector::FileSysType() const
sl@0
   240
	{return TPtrC8(iFileSysType,KFileSysTypeSize);}
sl@0
   241
/**
sl@0
   242
Returns the boot sector signiture
sl@0
   243
sl@0
   244
@return KBootSectorSignature
sl@0
   245
*/
sl@0
   246
inline TInt TFatBootSector::BootSectorSignature() const
sl@0
   247
	{return KBootSectorSignature;}
sl@0
   248
/**
sl@0
   249
Set the jump instruction 
sl@0
   250
*/
sl@0
   251
inline void TFatBootSector::SetJumpInstruction()
sl@0
   252
	{iJumpInstruction[0]=0xE9;iJumpInstruction[2]=0x90;}
sl@0
   253
/**
sl@0
   254
Set the vendor ID of the file system that formatted the volume
sl@0
   255
sl@0
   256
@param aDes Descriptor containing the Vendor ID
sl@0
   257
*/
sl@0
   258
inline void TFatBootSector::SetVendorID(const TDesC8& aDes)
sl@0
   259
	{
sl@0
   260
	__ASSERT_DEBUG(aDes.Length()<=KVendorIdSize,Fault(EFatBadBootSectorParameter));
sl@0
   261
	TPtr8 buf(iVendorId,KVendorIdSize);
sl@0
   262
	buf=aDes;
sl@0
   263
	}
sl@0
   264
/**
sl@0
   265
Sets the bytes per sector 
sl@0
   266
sl@0
   267
@param aBytesPerSector Number of bytes per sector
sl@0
   268
*/
sl@0
   269
inline void TFatBootSector::SetBytesPerSector(TInt aBytesPerSector)
sl@0
   270
	{
sl@0
   271
	__ASSERT_DEBUG(!(aBytesPerSector&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
sl@0
   272
	iBytesPerSector=(TUint16)aBytesPerSector;
sl@0
   273
	}
sl@0
   274
/**
sl@0
   275
Set the sectors per cluster ratio
sl@0
   276
sl@0
   277
@param aSectorsPerCluster Number of sectors per cluster
sl@0
   278
*/
sl@0
   279
inline void TFatBootSector::SetSectorsPerCluster(TInt aSectorsPerCluster)
sl@0
   280
	{
sl@0
   281
	__ASSERT_DEBUG(!(aSectorsPerCluster&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
sl@0
   282
	iSectorsPerCluster=(TUint8)aSectorsPerCluster;
sl@0
   283
	}
sl@0
   284
/**
sl@0
   285
Sets the number of reserved sectors on the volume
sl@0
   286
sl@0
   287
@param aReservedSectors Number of reserved sectors
sl@0
   288
*/
sl@0
   289
inline void TFatBootSector::SetReservedSectors(TInt aReservedSectors)
sl@0
   290
	{
sl@0
   291
	__ASSERT_DEBUG(!(aReservedSectors&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
sl@0
   292
	iReservedSectors=(TUint16)aReservedSectors;
sl@0
   293
	}
sl@0
   294
/**
sl@0
   295
Sets the number of Fats on the volume
sl@0
   296
sl@0
   297
@param aNumberOfFats Number of fats
sl@0
   298
*/
sl@0
   299
inline void TFatBootSector::SetNumberOfFats(TInt aNumberOfFats)
sl@0
   300
	{
sl@0
   301
	__ASSERT_DEBUG(!(aNumberOfFats&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
sl@0
   302
	iNumberOfFats=(TUint8)aNumberOfFats;
sl@0
   303
	}
sl@0
   304
/**
sl@0
   305
Number of entries allowed in the root directory, specific to Fat12/16, zero for FAT32
sl@0
   306
sl@0
   307
@param aRootDirEntries
sl@0
   308
*/
sl@0
   309
inline void TFatBootSector::SetRootDirEntries(TInt aRootDirEntries)
sl@0
   310
	{
sl@0
   311
	__ASSERT_DEBUG(!(aRootDirEntries&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
sl@0
   312
	iRootDirEntries=(TUint16)aRootDirEntries;
sl@0
   313
	}
sl@0
   314
/**
sl@0
   315
Total sectors on the volume, zero for FAT32
sl@0
   316
sl@0
   317
@param aTotalSectors Total number of sectors
sl@0
   318
*/
sl@0
   319
inline void TFatBootSector::SetTotalSectors(TInt aTotalSectors)
sl@0
   320
	{
sl@0
   321
	__ASSERT_DEBUG(!(aTotalSectors&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
sl@0
   322
	iTotalSectors=(TUint16)aTotalSectors;
sl@0
   323
	}
sl@0
   324
/**
sl@0
   325
Set the media descriptor
sl@0
   326
sl@0
   327
@param aMediaDescriptor
sl@0
   328
*/
sl@0
   329
inline void TFatBootSector::SetMediaDescriptor(TUint8 aMediaDescriptor)
sl@0
   330
	{iMediaDescriptor=aMediaDescriptor;}
sl@0
   331
/**
sl@0
   332
Sectors used for the Fat table, zero for FAT32
sl@0
   333
sl@0
   334
@param aFatSectors Number of Fat sectors
sl@0
   335
*/
sl@0
   336
inline void TFatBootSector::SetFatSectors(TInt aFatSectors)
sl@0
   337
	{
sl@0
   338
	__ASSERT_DEBUG(!(aFatSectors&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
sl@0
   339
	iFatSectors=(TUint16)aFatSectors;
sl@0
   340
	}
sl@0
   341
/**
sl@0
   342
Set the sectors per track
sl@0
   343
sl@0
   344
@param aSectorsPerTrack Number of sectors per track
sl@0
   345
*/
sl@0
   346
inline void TFatBootSector::SetSectorsPerTrack(TInt aSectorsPerTrack)
sl@0
   347
	{
sl@0
   348
	__ASSERT_DEBUG(!(aSectorsPerTrack&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
sl@0
   349
	iSectorsPerTrack=(TUint16)aSectorsPerTrack;
sl@0
   350
	}
sl@0
   351
/**
sl@0
   352
Set the number of heads
sl@0
   353
sl@0
   354
@param aNumberOfHeads Number of heads
sl@0
   355
*/
sl@0
   356
inline void TFatBootSector::SetNumberOfHeads(TInt aNumberOfHeads)
sl@0
   357
	{
sl@0
   358
	__ASSERT_DEBUG(!(aNumberOfHeads&~KMaxTUint16),Fault(EFatBadBootSectorParameter));
sl@0
   359
	iNumberOfHeads=(TUint16)aNumberOfHeads;
sl@0
   360
	}
sl@0
   361
/**
sl@0
   362
Set the number of hidden sectors in the volume
sl@0
   363
sl@0
   364
@param aHiddenSectors Number of hidden sectors
sl@0
   365
*/
sl@0
   366
inline void TFatBootSector::SetHiddenSectors(TUint32 aHiddenSectors)
sl@0
   367
	{
sl@0
   368
	iHiddenSectors=aHiddenSectors;
sl@0
   369
	}
sl@0
   370
/**
sl@0
   371
Set the total sectors in the volume, Used if totalSectors > 65535
sl@0
   372
sl@0
   373
@param aHugeSectors
sl@0
   374
*/
sl@0
   375
inline void TFatBootSector::SetHugeSectors(TUint32 aHugeSectors)
sl@0
   376
	{iHugeSectors=aHugeSectors;}
sl@0
   377
/**
sl@0
   378
Physical drive number, not used in Symbian OS
sl@0
   379
sl@0
   380
@param aPhysicalDriveNumber Physical drive number 
sl@0
   381
*/
sl@0
   382
inline void TFatBootSector::SetPhysicalDriveNumber(TInt aPhysicalDriveNumber)
sl@0
   383
	{
sl@0
   384
	__ASSERT_DEBUG(!(aPhysicalDriveNumber&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
sl@0
   385
	iPhysicalDriveNumber=(TUint8)aPhysicalDriveNumber;
sl@0
   386
	}
sl@0
   387
/**
sl@0
   388
Set the reserved byte value
sl@0
   389
sl@0
   390
@param aReservedByte Value for reserved byte
sl@0
   391
*/
sl@0
   392
inline void TFatBootSector::SetReservedByte(TUint8 aReservedByte)
sl@0
   393
	{iReserved=aReservedByte;}
sl@0
   394
/**
sl@0
   395
Set the extended boot signiture
sl@0
   396
sl@0
   397
@param anExtendedBootSignature The extended boot signiture
sl@0
   398
*/
sl@0
   399
inline void TFatBootSector::SetExtendedBootSignature(TInt anExtendedBootSignature)
sl@0
   400
	{
sl@0
   401
	__ASSERT_DEBUG(!(anExtendedBootSignature&~KMaxTUint8),Fault(EFatBadBootSectorParameter));
sl@0
   402
	iExtendedBootSignature=(TUint8)anExtendedBootSignature;
sl@0
   403
	}
sl@0
   404
/**
sl@0
   405
Set the unique volume ID
sl@0
   406
sl@0
   407
@param anUniqueID Set the unique ID
sl@0
   408
*/
sl@0
   409
inline void TFatBootSector::SetUniqueID(TUint32 anUniqueID)
sl@0
   410
	{iUniqueID=anUniqueID;}
sl@0
   411
/**
sl@0
   412
Set the volume's label
sl@0
   413
sl@0
   414
@param aDes A descriptor containg the volume label
sl@0
   415
*/
sl@0
   416
inline void TFatBootSector::SetVolumeLabel(const TDesC8& aDes)
sl@0
   417
	{
sl@0
   418
	__ASSERT_DEBUG(aDes.Length()<=KVolumeLabelSize,Fault(EFatBadBootSectorParameter));
sl@0
   419
	TPtr8 buf(iVolumeLabel,KVolumeLabelSize);
sl@0
   420
	buf=aDes;
sl@0
   421
	}
sl@0
   422
/**
sl@0
   423
Set the file system type
sl@0
   424
sl@0
   425
@param aDes A descriptor containing the file system type
sl@0
   426
*/
sl@0
   427
inline void TFatBootSector::SetFileSysType(const TDesC8& aDes)
sl@0
   428
	{
sl@0
   429
	__ASSERT_DEBUG(aDes.Length()<=8,Fault(EFatBadBootSectorParameter));
sl@0
   430
	TPtr8 buf(iFileSysType,8);
sl@0
   431
	buf=aDes;
sl@0
   432
	}
sl@0
   433
sl@0
   434
sl@0
   435
/**
sl@0
   436
Returns the number of free clusters
sl@0
   437
sl@0
   438
@return iFreeCount
sl@0
   439
*/
sl@0
   440
inline TUint32 TFSInfo::FreeClusterCount() const
sl@0
   441
	{return iFreeCount;}
sl@0
   442
/**
sl@0
   443
Returns the next free cluster
sl@0
   444
sl@0
   445
@return iNextFree
sl@0
   446
*/
sl@0
   447
inline TUint32 TFSInfo::NextFreeCluster() const
sl@0
   448
	{return iNextFree;}
sl@0
   449
/**
sl@0
   450
Sets the number of free clusters
sl@0
   451
sl@0
   452
@param aFreeCount Number of free clusters
sl@0
   453
*/
sl@0
   454
inline void TFSInfo::SetFreeClusterCount(TUint32 aFreeCount)
sl@0
   455
	{iFreeCount = aFreeCount;}
sl@0
   456
/**
sl@0
   457
Sets the next free cluster
sl@0
   458
sl@0
   459
@param aNextCluster Cluster number of the next free cluster 
sl@0
   460
*/
sl@0
   461
inline void TFSInfo::SetNextFreeCluster(TUint32 aNextCluster)
sl@0
   462
	{iNextFree = aNextCluster;}
sl@0
   463
sl@0
   464
#endif //SL_BPB_INL