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_std.inl
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef SL_STD_INL
|
sl@0
|
19 |
#define SL_STD_INL
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
24 |
// class TEntryPos
|
sl@0
|
25 |
TUint32 TEntryPos::Cluster() const
|
sl@0
|
26 |
{
|
sl@0
|
27 |
return (TUint32) iCluster;
|
sl@0
|
28 |
}
|
sl@0
|
29 |
|
sl@0
|
30 |
TUint32 TEntryPos::Pos() const
|
sl@0
|
31 |
{
|
sl@0
|
32 |
return (TUint32) iPos;
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
TBool TEntryPos::operator==(const TEntryPos& aRhs) const
|
sl@0
|
36 |
{
|
sl@0
|
37 |
ASSERT(this != &aRhs);
|
sl@0
|
38 |
return (iCluster == aRhs.iCluster && iPos == aRhs.iPos);
|
sl@0
|
39 |
}
|
sl@0
|
40 |
|
sl@0
|
41 |
|
sl@0
|
42 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
43 |
// class CFatMountCB
|
sl@0
|
44 |
|
sl@0
|
45 |
inline TInt CFatMountCB::RootDirectorySector() const
|
sl@0
|
46 |
{return iVolParam.RootDirectorySector();}
|
sl@0
|
47 |
|
sl@0
|
48 |
inline TUint CFatMountCB::RootDirEnd() const
|
sl@0
|
49 |
{return iVolParam.RootDirEnd();}
|
sl@0
|
50 |
|
sl@0
|
51 |
inline TUint32 CFatMountCB::RootClusterNum() const
|
sl@0
|
52 |
{return iVolParam.RootClusterNum(); }
|
sl@0
|
53 |
|
sl@0
|
54 |
|
sl@0
|
55 |
inline TInt CFatMountCB::StartCluster(const TFatDirEntry & anEntry) const
|
sl@0
|
56 |
{
|
sl@0
|
57 |
if(Is32BitFat())
|
sl@0
|
58 |
return anEntry.StartCluster();
|
sl@0
|
59 |
else
|
sl@0
|
60 |
return 0xFFFF&anEntry.StartCluster();
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
/**
|
sl@0
|
64 |
returns true for root dir on Fat12/16 (fixed root dir versions of Fat) false on fat32
|
sl@0
|
65 |
this function is used to handle special cases for reading/writing the root directory on FAT via the use of cluster zero.
|
sl@0
|
66 |
|
sl@0
|
67 |
@param aEntry position on volume being queried
|
sl@0
|
68 |
@return Whether Root dir position or not
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
TBool CFatMountCB::IsRootDir(const TEntryPos &aEntry) const
|
sl@0
|
71 |
{
|
sl@0
|
72 |
if(Is32BitFat())
|
sl@0
|
73 |
return EFalse;
|
sl@0
|
74 |
else
|
sl@0
|
75 |
return((aEntry.iCluster==0) ? (TBool)ETrue : (TBool)EFalse);
|
sl@0
|
76 |
}
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
Indicates the root directory cluster, For Fat12/16 root is always indicated by cluster number zero, on Fat32 the is a root cluster number
|
sl@0
|
79 |
@return The root cluster indicator
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
TInt CFatMountCB::RootIndicator() const
|
sl@0
|
82 |
{
|
sl@0
|
83 |
if(Is32BitFat())
|
sl@0
|
84 |
return iVolParam.RootClusterNum();
|
sl@0
|
85 |
else
|
sl@0
|
86 |
return 0;
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
|
sl@0
|
90 |
/** @return Log2 of cluster size on volume */
|
sl@0
|
91 |
TInt CFatMountCB::ClusterSizeLog2() const
|
sl@0
|
92 |
{return(iVolParam.ClusterSizeLog2());}
|
sl@0
|
93 |
|
sl@0
|
94 |
/** @return Log2 of media sector size */
|
sl@0
|
95 |
TInt CFatMountCB::SectorSizeLog2() const
|
sl@0
|
96 |
{return(iVolParam.SectorSizeLog2());}
|
sl@0
|
97 |
|
sl@0
|
98 |
/** @return sector per cluster */
|
sl@0
|
99 |
TInt CFatMountCB::SectorsPerCluster() const
|
sl@0
|
100 |
{return(1<<(iVolParam.ClusterSizeLog2()-iVolParam.SectorSizeLog2()));}
|
sl@0
|
101 |
|
sl@0
|
102 |
/** @return the base position of a cluster */
|
sl@0
|
103 |
TInt CFatMountCB::ClusterBasePosition() const
|
sl@0
|
104 |
{return(iFirstFreeByte);}
|
sl@0
|
105 |
|
sl@0
|
106 |
/** @return the offset into a cluster of a byte address */
|
sl@0
|
107 |
TInt CFatMountCB::ClusterRelativePos(TInt aPos) const
|
sl@0
|
108 |
{return(aPos&((1<<ClusterSizeLog2())-1));}
|
sl@0
|
109 |
|
sl@0
|
110 |
/**
|
sl@0
|
111 |
Calculates the maximum number of clusters
|
sl@0
|
112 |
@return maximum number of clusters
|
sl@0
|
113 |
*/
|
sl@0
|
114 |
TUint32 CFatMountCB::MaxClusterNumber() const
|
sl@0
|
115 |
{return(TotalSectors()>>(ClusterSizeLog2()-SectorSizeLog2()));}
|
sl@0
|
116 |
|
sl@0
|
117 |
/** @return the the total sectors on volume */
|
sl@0
|
118 |
TInt CFatMountCB::TotalSectors() const
|
sl@0
|
119 |
{return iVolParam.TotalSectors();}
|
sl@0
|
120 |
|
sl@0
|
121 |
/** @return total size of a Fat in bytes */
|
sl@0
|
122 |
TInt CFatMountCB::FatSizeInBytes() const
|
sl@0
|
123 |
{return iVolParam.FatSizeInBytes();}
|
sl@0
|
124 |
|
sl@0
|
125 |
/** @return first sector of the Fat */
|
sl@0
|
126 |
TUint32 CFatMountCB::FirstFatSector() const
|
sl@0
|
127 |
{return iVolParam.FirstFatSector();}
|
sl@0
|
128 |
|
sl@0
|
129 |
/** @return the byte offset of the Fat */
|
sl@0
|
130 |
TInt CFatMountCB::StartOfFatInBytes() const
|
sl@0
|
131 |
{return(FirstFatSector()<<SectorSizeLog2());}
|
sl@0
|
132 |
|
sl@0
|
133 |
/** @return Number of Fats used by the volume */
|
sl@0
|
134 |
TInt CFatMountCB::NumberOfFats() const
|
sl@0
|
135 |
{return iVolParam.NumberOfFats();}
|
sl@0
|
136 |
|
sl@0
|
137 |
|
sl@0
|
138 |
/** @return refrence to the fat table owned by the mount */
|
sl@0
|
139 |
CFatTable& CFatMountCB::FAT() const
|
sl@0
|
140 |
{return(*iFatTable);}
|
sl@0
|
141 |
/**
|
sl@0
|
142 |
@return refrence to the file system object that has produced this CFatMountCB
|
sl@0
|
143 |
*/
|
sl@0
|
144 |
CFatFileSystem& CFatMountCB::FatFileSystem() const
|
sl@0
|
145 |
{
|
sl@0
|
146 |
return (CFatFileSystem&)(*FileSystem()); //-- CMountCB::FileSystem() provides correct answer
|
sl@0
|
147 |
}
|
sl@0
|
148 |
|
sl@0
|
149 |
|
sl@0
|
150 |
/** @return refrence to a raw disk object owned by the mount */
|
sl@0
|
151 |
CRawDisk& CFatMountCB::RawDisk() const
|
sl@0
|
152 |
{return(*iRawDisk);}
|
sl@0
|
153 |
|
sl@0
|
154 |
/**
|
sl@0
|
155 |
@return ETrue if aCluster value is bad cluster marker defined in FAT specification
|
sl@0
|
156 |
*/
|
sl@0
|
157 |
TBool CFatMountCB::IsBadCluster(TInt aCluster) const
|
sl@0
|
158 |
{return Is32BitFat() ? aCluster==0xFFFFFF7 : Is16BitFat() ? aCluster==0xFFF7 : aCluster==0xFF7;}
|
sl@0
|
159 |
|
sl@0
|
160 |
/**
|
sl@0
|
161 |
Returns whether the current mount is running as rugged Fat or not, this is held in the file system object
|
sl@0
|
162 |
@return Is rugged fat flag
|
sl@0
|
163 |
*/
|
sl@0
|
164 |
TBool CFatMountCB::IsRuggedFSys() const
|
sl@0
|
165 |
{return Drive().IsRugged();}
|
sl@0
|
166 |
|
sl@0
|
167 |
/**
|
sl@0
|
168 |
Sets the rugged flag in the file system object
|
sl@0
|
169 |
@param Flag to set or clear the rugged flag
|
sl@0
|
170 |
*/
|
sl@0
|
171 |
void CFatMountCB::SetRuggedFSys(TBool aVal)
|
sl@0
|
172 |
{Drive().SetRugged(aVal);}
|
sl@0
|
173 |
|
sl@0
|
174 |
/** @return the usable clusters count for a volume */
|
sl@0
|
175 |
TUint32 CFatMountCB::UsableClusters() const
|
sl@0
|
176 |
{return(iUsableClusters);}
|
sl@0
|
177 |
|
sl@0
|
178 |
|
sl@0
|
179 |
TUint CFatMountCB::StartOfRootDirInBytes() const
|
sl@0
|
180 |
{return iVolParam.RootDirectorySector()<<SectorSizeLog2();}
|
sl@0
|
181 |
|
sl@0
|
182 |
|
sl@0
|
183 |
/** @return FAT type for this mount */
|
sl@0
|
184 |
TFatType CFatMountCB::FatType() const
|
sl@0
|
185 |
{
|
sl@0
|
186 |
return iFatType;
|
sl@0
|
187 |
}
|
sl@0
|
188 |
|
sl@0
|
189 |
/** @return ETrue if the mount has 16bit FAT */
|
sl@0
|
190 |
TBool CFatMountCB::Is16BitFat() const
|
sl@0
|
191 |
{
|
sl@0
|
192 |
return FatType() == EFat16;
|
sl@0
|
193 |
}
|
sl@0
|
194 |
|
sl@0
|
195 |
/** @return ETrue if the mount has 32bit FAT */
|
sl@0
|
196 |
TBool CFatMountCB::Is32BitFat() const
|
sl@0
|
197 |
{
|
sl@0
|
198 |
return FatType() == EFat32;
|
sl@0
|
199 |
}
|
sl@0
|
200 |
|
sl@0
|
201 |
CAsyncNotifier* CFatMountCB::Notifier() const
|
sl@0
|
202 |
{return iNotifier;}
|
sl@0
|
203 |
|
sl@0
|
204 |
|
sl@0
|
205 |
|
sl@0
|
206 |
/**
|
sl@0
|
207 |
Set or reset Read Only mode for the mount.
|
sl@0
|
208 |
@param aReadOnlyMode if ETrue, the mount will be set RO.
|
sl@0
|
209 |
*/
|
sl@0
|
210 |
void CFatMountCB::SetReadOnly(TBool aReadOnlyMode)
|
sl@0
|
211 |
{
|
sl@0
|
212 |
iReadOnly = aReadOnlyMode;
|
sl@0
|
213 |
}
|
sl@0
|
214 |
|
sl@0
|
215 |
|
sl@0
|
216 |
/**
|
sl@0
|
217 |
@return ETrue if the volume is in Read-Only state
|
sl@0
|
218 |
*/
|
sl@0
|
219 |
TBool CFatMountCB::ReadOnly(void) const
|
sl@0
|
220 |
{
|
sl@0
|
221 |
return iReadOnly;
|
sl@0
|
222 |
}
|
sl@0
|
223 |
|
sl@0
|
224 |
/** @return state of the CFatMountCB*/
|
sl@0
|
225 |
CFatMountCB::TFatMntState CFatMountCB::State() const
|
sl@0
|
226 |
{
|
sl@0
|
227 |
return iState;
|
sl@0
|
228 |
}
|
sl@0
|
229 |
|
sl@0
|
230 |
/**
|
sl@0
|
231 |
Set state of the CFatMountCB
|
sl@0
|
232 |
@param aState state to set
|
sl@0
|
233 |
*/
|
sl@0
|
234 |
void CFatMountCB::SetState(TFatMntState aState)
|
sl@0
|
235 |
{
|
sl@0
|
236 |
__PRINT3(_L("#- CFatMountCB::SetState() drv:%d, %d->%d\n"),DriveNumber(),iState,aState);
|
sl@0
|
237 |
iState = aState;
|
sl@0
|
238 |
}
|
sl@0
|
239 |
|
sl@0
|
240 |
|
sl@0
|
241 |
TDriveInterface& CFatMountCB::DriveInterface() const
|
sl@0
|
242 |
{
|
sl@0
|
243 |
return (TDriveInterface&)iDriverInterface;
|
sl@0
|
244 |
}
|
sl@0
|
245 |
|
sl@0
|
246 |
const TFatConfig& CFatMountCB::FatConfig() const
|
sl@0
|
247 |
{
|
sl@0
|
248 |
return iFatConfig;
|
sl@0
|
249 |
}
|
sl@0
|
250 |
|
sl@0
|
251 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
252 |
/**
|
sl@0
|
253 |
Check if the XFileCreationHelper object is initialised.
|
sl@0
|
254 |
*/
|
sl@0
|
255 |
TBool CFatMountCB::XFileCreationHelper::IsInitialised() const
|
sl@0
|
256 |
{
|
sl@0
|
257 |
return isInitialised;
|
sl@0
|
258 |
}
|
sl@0
|
259 |
|
sl@0
|
260 |
/**
|
sl@0
|
261 |
Get number of new entries for file creation.
|
sl@0
|
262 |
*/
|
sl@0
|
263 |
TUint16 CFatMountCB::XFileCreationHelper::NumOfAddingEntries() const
|
sl@0
|
264 |
{
|
sl@0
|
265 |
ASSERT(isInitialised);
|
sl@0
|
266 |
return iNumOfAddingEntries;
|
sl@0
|
267 |
}
|
sl@0
|
268 |
|
sl@0
|
269 |
/**
|
sl@0
|
270 |
Get position of new entries for file creation.
|
sl@0
|
271 |
*/
|
sl@0
|
272 |
TEntryPos CFatMountCB::XFileCreationHelper::EntryAddingPos() const
|
sl@0
|
273 |
{
|
sl@0
|
274 |
ASSERT(isInitialised);
|
sl@0
|
275 |
return iEntryAddingPos;
|
sl@0
|
276 |
}
|
sl@0
|
277 |
|
sl@0
|
278 |
/**
|
sl@0
|
279 |
Check if position of new entries has been found.
|
sl@0
|
280 |
*/
|
sl@0
|
281 |
TBool CFatMountCB::XFileCreationHelper::IsNewEntryPosFound() const
|
sl@0
|
282 |
{
|
sl@0
|
283 |
ASSERT(isInitialised);
|
sl@0
|
284 |
return isNewEntryPosFound;
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
/**
|
sl@0
|
288 |
Check if file name of the new file is a legal dos name.
|
sl@0
|
289 |
*/
|
sl@0
|
290 |
TBool CFatMountCB::XFileCreationHelper::IsTrgNameLegalDosName() const
|
sl@0
|
291 |
{
|
sl@0
|
292 |
ASSERT(isInitialised);
|
sl@0
|
293 |
return isTrgNameLegalDosName;
|
sl@0
|
294 |
}
|
sl@0
|
295 |
|
sl@0
|
296 |
/**
|
sl@0
|
297 |
Set entry position for new entries to be added.
|
sl@0
|
298 |
*/
|
sl@0
|
299 |
void CFatMountCB::XFileCreationHelper::SetEntryAddingPos(const TEntryPos& aEntryPos)
|
sl@0
|
300 |
{
|
sl@0
|
301 |
iEntryAddingPos = aEntryPos;
|
sl@0
|
302 |
}
|
sl@0
|
303 |
|
sl@0
|
304 |
/**
|
sl@0
|
305 |
Set condition if position of new entries has been found.
|
sl@0
|
306 |
*/
|
sl@0
|
307 |
void CFatMountCB::XFileCreationHelper::SetIsNewEntryPosFound(TBool aFound)
|
sl@0
|
308 |
{
|
sl@0
|
309 |
isNewEntryPosFound = aFound;
|
sl@0
|
310 |
}
|
sl@0
|
311 |
|
sl@0
|
312 |
|
sl@0
|
313 |
/**
|
sl@0
|
314 |
Checks for "EOC" for all Fat types
|
sl@0
|
315 |
@param aCluster FAT table entry (cluster number) to check
|
sl@0
|
316 |
@return ETrue if aCluster is a EOC for the FAT type being used by CFatMountCB
|
sl@0
|
317 |
*/
|
sl@0
|
318 |
TBool CFatMountCB::IsEndOfClusterCh(TInt aCluster) const
|
sl@0
|
319 |
{
|
sl@0
|
320 |
ASSERT(iFatEocCode);
|
sl@0
|
321 |
|
sl@0
|
322 |
if((TUint32)aCluster >= iFatEocCode)
|
sl@0
|
323 |
return ETrue;
|
sl@0
|
324 |
|
sl@0
|
325 |
ASSERT((TUint32)aCluster <= iFatEocCode+7);
|
sl@0
|
326 |
|
sl@0
|
327 |
return EFalse;
|
sl@0
|
328 |
}
|
sl@0
|
329 |
|
sl@0
|
330 |
/**
|
sl@0
|
331 |
Sets "End of Cluster Chain" value in aCluster depending on the FAT type.
|
sl@0
|
332 |
@param aCluster cluster to set to end of chain marker
|
sl@0
|
333 |
*/
|
sl@0
|
334 |
void CFatMountCB::SetEndOfClusterCh(TInt &aCluster) const
|
sl@0
|
335 |
{
|
sl@0
|
336 |
ASSERT(iFatEocCode);
|
sl@0
|
337 |
aCluster = iFatEocCode+7;
|
sl@0
|
338 |
}
|
sl@0
|
339 |
|
sl@0
|
340 |
|
sl@0
|
341 |
//------- debug methods
|
sl@0
|
342 |
#ifdef _DEBUG
|
sl@0
|
343 |
/**
|
sl@0
|
344 |
Debug function indicates whether write fails are active or not, for test
|
sl@0
|
345 |
@return ETrue if write fails on or not
|
sl@0
|
346 |
*/
|
sl@0
|
347 |
TBool CFatMountCB::IsWriteFail()const
|
sl@0
|
348 |
{return(iIsWriteFail);}
|
sl@0
|
349 |
/**
|
sl@0
|
350 |
Switches write fails on or off, for test
|
sl@0
|
351 |
@param aIsWriteFail set true or false to set write fails on or off
|
sl@0
|
352 |
*/
|
sl@0
|
353 |
void CFatMountCB::SetWriteFail(TBool aIsWriteFail)
|
sl@0
|
354 |
{iIsWriteFail=aIsWriteFail;}
|
sl@0
|
355 |
|
sl@0
|
356 |
/** @return number of write fails to occur, for test */
|
sl@0
|
357 |
TInt CFatMountCB::WriteFailCount()const
|
sl@0
|
358 |
{return(iWriteFailCount);}
|
sl@0
|
359 |
|
sl@0
|
360 |
/**
|
sl@0
|
361 |
Set the number of Write fails
|
sl@0
|
362 |
@param aFailCount number of write fails, for test
|
sl@0
|
363 |
*/
|
sl@0
|
364 |
void CFatMountCB::SetWriteFailCount(TInt aFailCount)
|
sl@0
|
365 |
{iWriteFailCount=aFailCount;}
|
sl@0
|
366 |
|
sl@0
|
367 |
/** Decrement the number of write fails, for test */
|
sl@0
|
368 |
void CFatMountCB::DecWriteFailCount()
|
sl@0
|
369 |
{--iWriteFailCount;}
|
sl@0
|
370 |
|
sl@0
|
371 |
/** @return Error for a write failure, for test */
|
sl@0
|
372 |
TInt CFatMountCB::WriteFailError()const
|
sl@0
|
373 |
{return iWriteFailError;}
|
sl@0
|
374 |
|
sl@0
|
375 |
/**
|
sl@0
|
376 |
Set the write fail error code, for test
|
sl@0
|
377 |
@param aErrorValue The Error for a write fails
|
sl@0
|
378 |
*/
|
sl@0
|
379 |
void CFatMountCB::SetWriteFailError(TInt aErrorValue)
|
sl@0
|
380 |
{iWriteFailError=aErrorValue;}
|
sl@0
|
381 |
|
sl@0
|
382 |
#endif
|
sl@0
|
383 |
|
sl@0
|
384 |
|
sl@0
|
385 |
|
sl@0
|
386 |
|
sl@0
|
387 |
|
sl@0
|
388 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
389 |
// class CFatFormatCB
|
sl@0
|
390 |
|
sl@0
|
391 |
/** @return pointer to the owning mount object */
|
sl@0
|
392 |
CFatMountCB& CFatFormatCB::FatMount()
|
sl@0
|
393 |
{return *(CFatMountCB*)&Mount();}
|
sl@0
|
394 |
|
sl@0
|
395 |
/**
|
sl@0
|
396 |
Returns the local drive used by the file systems from the owning mount
|
sl@0
|
397 |
@return Pointer to the local drive
|
sl@0
|
398 |
*/
|
sl@0
|
399 |
CProxyDrive* CFatFormatCB::LocalDrive()
|
sl@0
|
400 |
{return(FatMount().LocalDrive());}
|
sl@0
|
401 |
|
sl@0
|
402 |
|
sl@0
|
403 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
404 |
// class CFatFileCB
|
sl@0
|
405 |
|
sl@0
|
406 |
/**
|
sl@0
|
407 |
Returns the owning mount from file object
|
sl@0
|
408 |
|
sl@0
|
409 |
@return pointer to the owning mount object
|
sl@0
|
410 |
*/
|
sl@0
|
411 |
CFatMountCB& CFatFileCB::FatMount() const
|
sl@0
|
412 |
{return((CFatMountCB&)Mount());}
|
sl@0
|
413 |
|
sl@0
|
414 |
/**
|
sl@0
|
415 |
Returns the fat table used by the file system for this mount
|
sl@0
|
416 |
|
sl@0
|
417 |
@return Refrence to the Fat table owned by the mount
|
sl@0
|
418 |
*/
|
sl@0
|
419 |
CFatTable& CFatFileCB::FAT()
|
sl@0
|
420 |
{return(FatMount().FAT());}
|
sl@0
|
421 |
|
sl@0
|
422 |
/**
|
sl@0
|
423 |
Position with in a cluster for a given address
|
sl@0
|
424 |
|
sl@0
|
425 |
@param aPos Byte position
|
sl@0
|
426 |
*/
|
sl@0
|
427 |
TInt CFatFileCB::ClusterRelativePos(TInt aPos)
|
sl@0
|
428 |
{return(FatMount().ClusterRelativePos(aPos));}
|
sl@0
|
429 |
/**
|
sl@0
|
430 |
Returns Log2 of cluster size from mount
|
sl@0
|
431 |
|
sl@0
|
432 |
@return cluster size
|
sl@0
|
433 |
*/
|
sl@0
|
434 |
TInt CFatFileCB::ClusterSizeLog2()
|
sl@0
|
435 |
{return(FatMount().ClusterSizeLog2());}
|
sl@0
|
436 |
|
sl@0
|
437 |
/*
|
sl@0
|
438 |
Note: this replaces SeekIndex() which was only used in sl_mnt
|
sl@0
|
439 |
to verify whether the seek index had been created/initialised
|
sl@0
|
440 |
*/
|
sl@0
|
441 |
inline TBool CFatFileCB::IsSeekIndex() const
|
sl@0
|
442 |
{return (iSeekIndex==NULL?(TBool)EFalse:(TBool)ETrue); }
|
sl@0
|
443 |
|
sl@0
|
444 |
|
sl@0
|
445 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
446 |
// class CFatDirCB
|
sl@0
|
447 |
|
sl@0
|
448 |
/**
|
sl@0
|
449 |
Returns the owning mount from directory object
|
sl@0
|
450 |
|
sl@0
|
451 |
@return pointer to the owning mount object
|
sl@0
|
452 |
*/
|
sl@0
|
453 |
CFatMountCB& CFatDirCB::FatMount()
|
sl@0
|
454 |
{return((CFatMountCB&)Mount());}
|
sl@0
|
455 |
|
sl@0
|
456 |
|
sl@0
|
457 |
|
sl@0
|
458 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
459 |
// class CFatTable
|
sl@0
|
460 |
|
sl@0
|
461 |
TUint32 CFatTable::FreeClusters() const
|
sl@0
|
462 |
{
|
sl@0
|
463 |
return iFreeClusters;
|
sl@0
|
464 |
}
|
sl@0
|
465 |
|
sl@0
|
466 |
|
sl@0
|
467 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
468 |
|
sl@0
|
469 |
inline TFatType CFatTable::FatType() const
|
sl@0
|
470 |
{
|
sl@0
|
471 |
return iFatType;
|
sl@0
|
472 |
}
|
sl@0
|
473 |
|
sl@0
|
474 |
inline TBool CFatTable::IsFat12() const
|
sl@0
|
475 |
{
|
sl@0
|
476 |
return iFatType == EFat12;
|
sl@0
|
477 |
}
|
sl@0
|
478 |
|
sl@0
|
479 |
inline TBool CFatTable::IsFat16() const
|
sl@0
|
480 |
{
|
sl@0
|
481 |
return iFatType == EFat16;
|
sl@0
|
482 |
}
|
sl@0
|
483 |
|
sl@0
|
484 |
inline TBool CFatTable::IsFat32() const
|
sl@0
|
485 |
{
|
sl@0
|
486 |
return iFatType == EFat32;
|
sl@0
|
487 |
}
|
sl@0
|
488 |
|
sl@0
|
489 |
|
sl@0
|
490 |
/**
|
sl@0
|
491 |
Checks for "EOC" for all Fat types
|
sl@0
|
492 |
@param aCluster FAT table entry (cluster number) to check
|
sl@0
|
493 |
@return ETrue if aCluster is a EOC for the FAT type being used by CFatMountCB that owns the CFatTable
|
sl@0
|
494 |
*/
|
sl@0
|
495 |
inline TBool CFatTable::IsEndOfClusterCh(TUint32 aCluster) const
|
sl@0
|
496 |
{
|
sl@0
|
497 |
ASSERT(iFatEocCode);
|
sl@0
|
498 |
|
sl@0
|
499 |
if(aCluster >= iFatEocCode)
|
sl@0
|
500 |
return ETrue;
|
sl@0
|
501 |
|
sl@0
|
502 |
ASSERT((TUint32)aCluster <= iFatEocCode+7);
|
sl@0
|
503 |
return EFalse;
|
sl@0
|
504 |
}
|
sl@0
|
505 |
|
sl@0
|
506 |
|
sl@0
|
507 |
/**
|
sl@0
|
508 |
@return Maximal number of addresable FAT entries. This value is taken from the owning mount
|
sl@0
|
509 |
*/
|
sl@0
|
510 |
inline TUint32 CFatTable::MaxEntries() const
|
sl@0
|
511 |
{
|
sl@0
|
512 |
ASSERT(iMaxEntries > 0);
|
sl@0
|
513 |
return iMaxEntries;
|
sl@0
|
514 |
}
|
sl@0
|
515 |
|
sl@0
|
516 |
|
sl@0
|
517 |
// class TDriveInterface
|
sl@0
|
518 |
TBool TDriveInterface::NotifyUser() const
|
sl@0
|
519 |
{return(iMount->GetNotifyUser());}
|
sl@0
|
520 |
|
sl@0
|
521 |
|
sl@0
|
522 |
//----------------------------------------------------------------------------------------------------
|
sl@0
|
523 |
// class CRawDisk
|
sl@0
|
524 |
|
sl@0
|
525 |
/**
|
sl@0
|
526 |
Get pointer to the directory cache interface. Any client that reads/writes directory entries
|
sl@0
|
527 |
MUST do it via this interface.
|
sl@0
|
528 |
Default implementation returns NULL
|
sl@0
|
529 |
|
sl@0
|
530 |
@return pointer to the MWTCacheInterface interface, or NULL if it is not present.
|
sl@0
|
531 |
*/
|
sl@0
|
532 |
MWTCacheInterface* CRawDisk::DirCacheInterface()
|
sl@0
|
533 |
{
|
sl@0
|
534 |
return NULL;
|
sl@0
|
535 |
}
|
sl@0
|
536 |
|
sl@0
|
537 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
538 |
|
sl@0
|
539 |
/**
|
sl@0
|
540 |
Calculate offset of the page starting position in the cluster
|
sl@0
|
541 |
@param aPos the current entry position in bytes in the cluster
|
sl@0
|
542 |
@param aPageSzLog2 page size in log2
|
sl@0
|
543 |
@return the starting position of the page that contains aPos
|
sl@0
|
544 |
*/
|
sl@0
|
545 |
inline TUint32 CalculatePageOffsetInCluster(TUint32 aPos, TUint aPageSzLog2)
|
sl@0
|
546 |
{
|
sl@0
|
547 |
return (aPos >> aPageSzLog2) << aPageSzLog2;
|
sl@0
|
548 |
}
|
sl@0
|
549 |
|
sl@0
|
550 |
#endif //SL_STD_INL
|
sl@0
|
551 |
|
sl@0
|
552 |
|
sl@0
|
553 |
|
sl@0
|
554 |
|
sl@0
|
555 |
|