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_std.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_STD_INL
|
sl@0
|
27 |
#define SL_STD_INL
|
sl@0
|
28 |
|
sl@0
|
29 |
|
sl@0
|
30 |
|
sl@0
|
31 |
TBool IsPowerOf2(TUint32 aVal)
|
sl@0
|
32 |
{
|
sl@0
|
33 |
if (aVal==0)
|
sl@0
|
34 |
return EFalse;
|
sl@0
|
35 |
|
sl@0
|
36 |
return !(aVal & (aVal-1));
|
sl@0
|
37 |
}
|
sl@0
|
38 |
|
sl@0
|
39 |
TUint32 Pow2(TUint32 aVal)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
//ASSERT(aVal<32);
|
sl@0
|
42 |
return 1 << aVal;
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
|
sl@0
|
46 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
47 |
// class TEntryPos
|
sl@0
|
48 |
TUint32 TEntryPos::Cluster() const
|
sl@0
|
49 |
{
|
sl@0
|
50 |
return (TUint32) iCluster;
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
TUint32 TEntryPos::Pos() const
|
sl@0
|
54 |
{
|
sl@0
|
55 |
return (TUint32) iPos;
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
TBool TEntryPos::operator==(const TEntryPos& aRhs) const
|
sl@0
|
59 |
{
|
sl@0
|
60 |
ASSERT(this != &aRhs);
|
sl@0
|
61 |
return (iCluster == aRhs.iCluster && iPos == aRhs.iPos);
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
66 |
// class CFatMountCB
|
sl@0
|
67 |
|
sl@0
|
68 |
inline TInt CFatMountCB::RootDirectorySector() const
|
sl@0
|
69 |
{return iVolParam.RootDirectorySector();}
|
sl@0
|
70 |
|
sl@0
|
71 |
inline TUint CFatMountCB::RootDirEnd() const
|
sl@0
|
72 |
{return iVolParam.RootDirEnd();}
|
sl@0
|
73 |
|
sl@0
|
74 |
inline TUint32 CFatMountCB::RootClusterNum() const
|
sl@0
|
75 |
{return iVolParam.RootClusterNum(); }
|
sl@0
|
76 |
|
sl@0
|
77 |
|
sl@0
|
78 |
inline TInt CFatMountCB::StartCluster(const TFatDirEntry & anEntry) const
|
sl@0
|
79 |
{return anEntry.StartCluster();}
|
sl@0
|
80 |
|
sl@0
|
81 |
|
sl@0
|
82 |
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
returns true for root dir on Fat12/16 (fixed root dir versions of Fat).
|
sl@0
|
85 |
this function is used to handle special cases for reading/writing the root directory on FAT via the use of cluster zero.
|
sl@0
|
86 |
|
sl@0
|
87 |
@param aEntry position on volume being queried
|
sl@0
|
88 |
@return Whether Root dir position or not
|
sl@0
|
89 |
*/
|
sl@0
|
90 |
TBool CFatMountCB::IsRootDir(const TEntryPos &aEntry) const
|
sl@0
|
91 |
{return((aEntry.iCluster==0) ? (TBool)ETrue : (TBool)EFalse);}
|
sl@0
|
92 |
|
sl@0
|
93 |
/**
|
sl@0
|
94 |
Indicates the root directory cluster, For Fat12/16 root is always indicated by cluster number zero
|
sl@0
|
95 |
@return The root cluster indicator
|
sl@0
|
96 |
*/
|
sl@0
|
97 |
TInt CFatMountCB::RootIndicator() const
|
sl@0
|
98 |
{return 0;}
|
sl@0
|
99 |
|
sl@0
|
100 |
|
sl@0
|
101 |
TBool CFatMountCB::Is16BitFat() const
|
sl@0
|
102 |
{return(iFatType == EFat16);}
|
sl@0
|
103 |
|
sl@0
|
104 |
/** @return Log2 of cluster size on volume */
|
sl@0
|
105 |
TInt CFatMountCB::ClusterSizeLog2() const
|
sl@0
|
106 |
{return(iVolParam.ClusterSizeLog2());}
|
sl@0
|
107 |
|
sl@0
|
108 |
/** @return Log2 of media sector size */
|
sl@0
|
109 |
TInt CFatMountCB::SectorSizeLog2() const
|
sl@0
|
110 |
{return(iVolParam.SectorSizeLog2());}
|
sl@0
|
111 |
|
sl@0
|
112 |
/** @return sector per cluster */
|
sl@0
|
113 |
TInt CFatMountCB::SectorsPerCluster() const
|
sl@0
|
114 |
{return(1<<(iVolParam.ClusterSizeLog2()-iVolParam.SectorSizeLog2()));}
|
sl@0
|
115 |
|
sl@0
|
116 |
/** @return the base position of a cluster */
|
sl@0
|
117 |
TInt CFatMountCB::ClusterBasePosition() const
|
sl@0
|
118 |
{return(iFirstFreeByte);}
|
sl@0
|
119 |
|
sl@0
|
120 |
/** @return the offset into a cluster of a byte address */
|
sl@0
|
121 |
TInt CFatMountCB::ClusterRelativePos(TInt aPos) const
|
sl@0
|
122 |
{return(aPos&((1<<ClusterSizeLog2())-1));}
|
sl@0
|
123 |
|
sl@0
|
124 |
/**
|
sl@0
|
125 |
Calculates the maximum number of clusters
|
sl@0
|
126 |
@return maximum number of clusters
|
sl@0
|
127 |
*/
|
sl@0
|
128 |
TUint32 CFatMountCB::MaxClusterNumber() const
|
sl@0
|
129 |
{return(TotalSectors()>>(ClusterSizeLog2()-SectorSizeLog2()));}
|
sl@0
|
130 |
|
sl@0
|
131 |
/** @return the the total sectors on volume */
|
sl@0
|
132 |
TInt CFatMountCB::TotalSectors() const
|
sl@0
|
133 |
{return iVolParam.TotalSectors();}
|
sl@0
|
134 |
|
sl@0
|
135 |
/** @return total size of a Fat in bytes */
|
sl@0
|
136 |
TInt CFatMountCB::FatSizeInBytes() const
|
sl@0
|
137 |
{return iVolParam.FatSizeInBytes();}
|
sl@0
|
138 |
|
sl@0
|
139 |
/** @return first sector of the Fat */
|
sl@0
|
140 |
TUint32 CFatMountCB::FirstFatSector() const
|
sl@0
|
141 |
{return iVolParam.FirstFatSector();}
|
sl@0
|
142 |
|
sl@0
|
143 |
/** @return the byte offset of the Fat */
|
sl@0
|
144 |
TInt CFatMountCB::StartOfFatInBytes() const
|
sl@0
|
145 |
{return(FirstFatSector()<<SectorSizeLog2());}
|
sl@0
|
146 |
|
sl@0
|
147 |
/** @return Number of Fats used by the volume */
|
sl@0
|
148 |
TInt CFatMountCB::NumberOfFats() const
|
sl@0
|
149 |
{return iVolParam.NumberOfFats();}
|
sl@0
|
150 |
|
sl@0
|
151 |
|
sl@0
|
152 |
/** @return refrence to the fat table owned by the mount */
|
sl@0
|
153 |
CFatTable& CFatMountCB::FAT() const
|
sl@0
|
154 |
{return(*iFatTable);}
|
sl@0
|
155 |
/**
|
sl@0
|
156 |
Returns a refrence to the file system object owned by the coresponding TDrive for a drive used for creating subsession objects
|
sl@0
|
157 |
@return refrence to file system object
|
sl@0
|
158 |
*/
|
sl@0
|
159 |
CFatFileSystem& CFatMountCB::FatFileSystem() const
|
sl@0
|
160 |
{return((CFatFileSystem&)Drive().FSys());}
|
sl@0
|
161 |
|
sl@0
|
162 |
|
sl@0
|
163 |
/** @return refrence to a raw disk object owned by the mount */
|
sl@0
|
164 |
CRawDisk& CFatMountCB::RawDisk() const
|
sl@0
|
165 |
{return(*iRawDisk);}
|
sl@0
|
166 |
|
sl@0
|
167 |
/**
|
sl@0
|
168 |
@return ETrue if aCluster value is bad cluster marker defined in FAT specification
|
sl@0
|
169 |
*/
|
sl@0
|
170 |
TBool CFatMountCB::IsBadCluster(TInt aCluster) const
|
sl@0
|
171 |
{return Is16BitFat() ? aCluster==0xFFF7 : aCluster==0xFF7;}
|
sl@0
|
172 |
|
sl@0
|
173 |
/**
|
sl@0
|
174 |
Returns whether the current mount is running as rugged Fat or not, this is held in the file system object
|
sl@0
|
175 |
@return Is rugged fat flag
|
sl@0
|
176 |
*/
|
sl@0
|
177 |
TBool CFatMountCB::IsRuggedFSys() const
|
sl@0
|
178 |
{return Drive().IsRugged();}
|
sl@0
|
179 |
|
sl@0
|
180 |
/**
|
sl@0
|
181 |
Sets the rugged flag in the file system object
|
sl@0
|
182 |
@param Flag to set or clear the rugged flag
|
sl@0
|
183 |
*/
|
sl@0
|
184 |
void CFatMountCB::SetRuggedFSys(TBool aVal)
|
sl@0
|
185 |
{Drive().SetRugged(aVal);}
|
sl@0
|
186 |
|
sl@0
|
187 |
/** @return the usable clusters count for a volume */
|
sl@0
|
188 |
TUint32 CFatMountCB::UsableClusters() const
|
sl@0
|
189 |
{return(iUsableClusters);}
|
sl@0
|
190 |
|
sl@0
|
191 |
|
sl@0
|
192 |
TUint CFatMountCB::StartOfRootDirInBytes() const
|
sl@0
|
193 |
{return iVolParam.RootDirectorySector()<<SectorSizeLog2();}
|
sl@0
|
194 |
|
sl@0
|
195 |
|
sl@0
|
196 |
/** @return FAT type for this mount */
|
sl@0
|
197 |
TFatType CFatMountCB::FatType() const
|
sl@0
|
198 |
{
|
sl@0
|
199 |
return iFatType;
|
sl@0
|
200 |
}
|
sl@0
|
201 |
|
sl@0
|
202 |
CAsyncNotifier* CFatMountCB::Notifier() const
|
sl@0
|
203 |
{return iNotifier;}
|
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 |
TFatDriveInterface& CFatMountCB::DriveInterface() const
|
sl@0
|
242 |
{
|
sl@0
|
243 |
return (TFatDriveInterface&)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 |
//------- debug methods
|
sl@0
|
315 |
#ifdef _DEBUG
|
sl@0
|
316 |
/**
|
sl@0
|
317 |
Debug function indicates whether write fails are active or not, for test
|
sl@0
|
318 |
@return ETrue if write fails on or not
|
sl@0
|
319 |
*/
|
sl@0
|
320 |
TBool CFatMountCB::IsWriteFail()const
|
sl@0
|
321 |
{return(iIsWriteFail);}
|
sl@0
|
322 |
/**
|
sl@0
|
323 |
Switches write fails on or off, for test
|
sl@0
|
324 |
@param aIsWriteFail set true or false to set write fails on or off
|
sl@0
|
325 |
*/
|
sl@0
|
326 |
void CFatMountCB::SetWriteFail(TBool aIsWriteFail)
|
sl@0
|
327 |
{iIsWriteFail=aIsWriteFail;}
|
sl@0
|
328 |
|
sl@0
|
329 |
/** @return number of write fails to occur, for test */
|
sl@0
|
330 |
TInt CFatMountCB::WriteFailCount()const
|
sl@0
|
331 |
{return(iWriteFailCount);}
|
sl@0
|
332 |
|
sl@0
|
333 |
/**
|
sl@0
|
334 |
Set the number of Write fails
|
sl@0
|
335 |
@param aFailCount number of write fails, for test
|
sl@0
|
336 |
*/
|
sl@0
|
337 |
void CFatMountCB::SetWriteFailCount(TInt aFailCount)
|
sl@0
|
338 |
{iWriteFailCount=aFailCount;}
|
sl@0
|
339 |
|
sl@0
|
340 |
/** Decrement the number of write fails, for test */
|
sl@0
|
341 |
void CFatMountCB::DecWriteFailCount()
|
sl@0
|
342 |
{--iWriteFailCount;}
|
sl@0
|
343 |
|
sl@0
|
344 |
/** @return Error for a write failure, for test */
|
sl@0
|
345 |
TInt CFatMountCB::WriteFailError()const
|
sl@0
|
346 |
{return iWriteFailError;}
|
sl@0
|
347 |
|
sl@0
|
348 |
/**
|
sl@0
|
349 |
Set the write fail error code, for test
|
sl@0
|
350 |
@param aErrorValue The Error for a write fails
|
sl@0
|
351 |
*/
|
sl@0
|
352 |
void CFatMountCB::SetWriteFailError(TInt aErrorValue)
|
sl@0
|
353 |
{iWriteFailError=aErrorValue;}
|
sl@0
|
354 |
|
sl@0
|
355 |
#endif
|
sl@0
|
356 |
|
sl@0
|
357 |
|
sl@0
|
358 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
359 |
// class CFatFormatCB
|
sl@0
|
360 |
|
sl@0
|
361 |
TBool CFatFormatCB::Is16BitFat() const
|
sl@0
|
362 |
{return(iFileSystemName==KFileSystemName16);}
|
sl@0
|
363 |
|
sl@0
|
364 |
CFatMountCB& CFatFormatCB::FatMount()
|
sl@0
|
365 |
{return *(CFatMountCB*)&Mount();}
|
sl@0
|
366 |
|
sl@0
|
367 |
/**
|
sl@0
|
368 |
Returns the local drive used by the file systems from the owning mount
|
sl@0
|
369 |
@return Pointer to the local drive
|
sl@0
|
370 |
*/
|
sl@0
|
371 |
CProxyDrive* CFatFormatCB::LocalDrive()
|
sl@0
|
372 |
{return(FatMount().LocalDrive());}
|
sl@0
|
373 |
|
sl@0
|
374 |
|
sl@0
|
375 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
376 |
// class CFatFileCB
|
sl@0
|
377 |
|
sl@0
|
378 |
/**
|
sl@0
|
379 |
Returns the owning mount from file object
|
sl@0
|
380 |
|
sl@0
|
381 |
@return pointer to the owning mount object
|
sl@0
|
382 |
*/
|
sl@0
|
383 |
CFatMountCB& CFatFileCB::FatMount() const
|
sl@0
|
384 |
{return((CFatMountCB&)Mount());}
|
sl@0
|
385 |
|
sl@0
|
386 |
/**
|
sl@0
|
387 |
Returns the fat table used by the file system for this mount
|
sl@0
|
388 |
|
sl@0
|
389 |
@return Refrence to the Fat table owned by the mount
|
sl@0
|
390 |
*/
|
sl@0
|
391 |
CFatTable& CFatFileCB::FAT()
|
sl@0
|
392 |
{return(FatMount().FAT());}
|
sl@0
|
393 |
|
sl@0
|
394 |
/**
|
sl@0
|
395 |
Position with in a cluster for a given address
|
sl@0
|
396 |
|
sl@0
|
397 |
@param aPos Byte position
|
sl@0
|
398 |
*/
|
sl@0
|
399 |
TInt CFatFileCB::ClusterRelativePos(TInt aPos)
|
sl@0
|
400 |
{return(FatMount().ClusterRelativePos(aPos));}
|
sl@0
|
401 |
/**
|
sl@0
|
402 |
Returns Log2 of cluster size from mount
|
sl@0
|
403 |
|
sl@0
|
404 |
@return cluster size
|
sl@0
|
405 |
*/
|
sl@0
|
406 |
TInt CFatFileCB::ClusterSizeLog2()
|
sl@0
|
407 |
{return(FatMount().ClusterSizeLog2());}
|
sl@0
|
408 |
|
sl@0
|
409 |
/*
|
sl@0
|
410 |
Note: this replaces SeekIndex() which was only used in sl_mnt
|
sl@0
|
411 |
to verify whether the seek index had been created/initialised
|
sl@0
|
412 |
*/
|
sl@0
|
413 |
inline TBool CFatFileCB::IsSeekIndex() const
|
sl@0
|
414 |
{return (iSeekIndex==NULL?(TBool)EFalse:(TBool)ETrue); }
|
sl@0
|
415 |
|
sl@0
|
416 |
|
sl@0
|
417 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
418 |
// class CFatDirCB
|
sl@0
|
419 |
|
sl@0
|
420 |
/**
|
sl@0
|
421 |
Returns the owning mount from directory object
|
sl@0
|
422 |
|
sl@0
|
423 |
@return pointer to the owning mount object
|
sl@0
|
424 |
*/
|
sl@0
|
425 |
CFatMountCB& CFatDirCB::FatMount()
|
sl@0
|
426 |
{return((CFatMountCB&)Mount());}
|
sl@0
|
427 |
|
sl@0
|
428 |
|
sl@0
|
429 |
|
sl@0
|
430 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
431 |
// class CFatTable
|
sl@0
|
432 |
|
sl@0
|
433 |
TUint32 CFatTable::FreeClusters() const
|
sl@0
|
434 |
{
|
sl@0
|
435 |
return iFreeClusters;
|
sl@0
|
436 |
}
|
sl@0
|
437 |
|
sl@0
|
438 |
|
sl@0
|
439 |
TBool CFatTable::IsEof16Bit(TInt aCluster) const
|
sl@0
|
440 |
{return(aCluster>=0xFFF8 && aCluster<=0xFFFF);}
|
sl@0
|
441 |
|
sl@0
|
442 |
TBool CFatTable::IsEof12Bit(TInt aCluster) const
|
sl@0
|
443 |
{return(aCluster>=0xFF8 && aCluster<=0xFFF);}
|
sl@0
|
444 |
|
sl@0
|
445 |
TInt CFatTable::SectorSizeLog2() const
|
sl@0
|
446 |
{return(iOwner->SectorSizeLog2());}
|
sl@0
|
447 |
|
sl@0
|
448 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
449 |
|
sl@0
|
450 |
inline TBool CFatTable::IsFat12() const
|
sl@0
|
451 |
{
|
sl@0
|
452 |
return iFatType == EFat12;
|
sl@0
|
453 |
}
|
sl@0
|
454 |
|
sl@0
|
455 |
inline TBool CFatTable::IsFat16() const
|
sl@0
|
456 |
{
|
sl@0
|
457 |
return iFatType == EFat16;
|
sl@0
|
458 |
}
|
sl@0
|
459 |
|
sl@0
|
460 |
inline TFatType CFatTable::FatType() const
|
sl@0
|
461 |
{
|
sl@0
|
462 |
return iFatType;
|
sl@0
|
463 |
}
|
sl@0
|
464 |
/**
|
sl@0
|
465 |
@return Maximal number of addresable FAT entries. This value is taken from the owning mount
|
sl@0
|
466 |
*/
|
sl@0
|
467 |
inline TUint32 CFatTable::MaxEntries() const
|
sl@0
|
468 |
{
|
sl@0
|
469 |
ASSERT(iMaxEntries > 0);
|
sl@0
|
470 |
return iMaxEntries;
|
sl@0
|
471 |
}
|
sl@0
|
472 |
|
sl@0
|
473 |
|
sl@0
|
474 |
// class TFatDriveInterface
|
sl@0
|
475 |
TBool TFatDriveInterface::NotifyUser() const
|
sl@0
|
476 |
{return(iMount->GetNotifyUser());}
|
sl@0
|
477 |
|
sl@0
|
478 |
|
sl@0
|
479 |
|
sl@0
|
480 |
//----------------------------------------------------------------------------------------------------
|
sl@0
|
481 |
// class CRawDisk
|
sl@0
|
482 |
|
sl@0
|
483 |
/**
|
sl@0
|
484 |
Get pointer to the directory cache interface. Any client that reads/writes directory entries
|
sl@0
|
485 |
MUST do it via this interface.
|
sl@0
|
486 |
Default implementation returns NULL
|
sl@0
|
487 |
|
sl@0
|
488 |
@return pointer to the MWTCacheInterface interface, or NULL if it is not present.
|
sl@0
|
489 |
*/
|
sl@0
|
490 |
MWTCacheInterface* CRawDisk::DirCacheInterface()
|
sl@0
|
491 |
{
|
sl@0
|
492 |
return NULL;
|
sl@0
|
493 |
}
|
sl@0
|
494 |
|
sl@0
|
495 |
//---------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
496 |
//-- class RBitVector
|
sl@0
|
497 |
|
sl@0
|
498 |
/** @return size of the vector (number of bits) */
|
sl@0
|
499 |
inline TUint32 RBitVector::Size() const
|
sl@0
|
500 |
{
|
sl@0
|
501 |
return iNumBits;
|
sl@0
|
502 |
}
|
sl@0
|
503 |
|
sl@0
|
504 |
/**
|
sl@0
|
505 |
Get a bit by index
|
sl@0
|
506 |
|
sl@0
|
507 |
@param aIndex index in a bit vector
|
sl@0
|
508 |
@return 0 if the bit at pos aIndex is 0, not zero otherwise
|
sl@0
|
509 |
@panic EIndexOutOfRange if aIndex is out of range
|
sl@0
|
510 |
*/
|
sl@0
|
511 |
inline TBool RBitVector::operator[](TUint32 aIndex) const
|
sl@0
|
512 |
{
|
sl@0
|
513 |
__ASSERT_ALWAYS(aIndex < iNumBits, Panic(EIndexOutOfRange));
|
sl@0
|
514 |
return (ipData[WordNum(aIndex)] & (1<<BitInWord(aIndex)));
|
sl@0
|
515 |
}
|
sl@0
|
516 |
|
sl@0
|
517 |
/**
|
sl@0
|
518 |
Set a bit at pos aIndex to '1'
|
sl@0
|
519 |
@param aIndex index in a bit vector
|
sl@0
|
520 |
@panic EIndexOutOfRange if aIndex is out of range
|
sl@0
|
521 |
*/
|
sl@0
|
522 |
inline void RBitVector::SetBit(TUint32 aIndex)
|
sl@0
|
523 |
{
|
sl@0
|
524 |
__ASSERT_ALWAYS(aIndex < iNumBits, Panic(EIndexOutOfRange));
|
sl@0
|
525 |
ipData[WordNum(aIndex)] |= (1<<BitInWord(aIndex));
|
sl@0
|
526 |
}
|
sl@0
|
527 |
|
sl@0
|
528 |
/**
|
sl@0
|
529 |
Set a bit at pos aIndex to '0'
|
sl@0
|
530 |
@param aIndex index in a bit vector
|
sl@0
|
531 |
@panic EIndexOutOfRange if aIndex is out of range
|
sl@0
|
532 |
*/
|
sl@0
|
533 |
inline void RBitVector::ResetBit(TUint32 aIndex)
|
sl@0
|
534 |
{
|
sl@0
|
535 |
__ASSERT_ALWAYS(aIndex < iNumBits, Panic(EIndexOutOfRange));
|
sl@0
|
536 |
ipData[WordNum(aIndex)] &= ~(1<<BitInWord(aIndex));
|
sl@0
|
537 |
}
|
sl@0
|
538 |
|
sl@0
|
539 |
/**
|
sl@0
|
540 |
Invert a bit at pos aIndex
|
sl@0
|
541 |
@param aIndex index in a bit vector
|
sl@0
|
542 |
@panic EIndexOutOfRange if aIndex is out of range
|
sl@0
|
543 |
*/
|
sl@0
|
544 |
inline void RBitVector::InvertBit(TUint32 aIndex)
|
sl@0
|
545 |
{
|
sl@0
|
546 |
__ASSERT_ALWAYS(aIndex < iNumBits, Panic(EIndexOutOfRange));
|
sl@0
|
547 |
ipData[WordNum(aIndex)] ^= (1<<BitInWord(aIndex));
|
sl@0
|
548 |
}
|
sl@0
|
549 |
|
sl@0
|
550 |
/**
|
sl@0
|
551 |
Set bit value at position aIndex
|
sl@0
|
552 |
@param aIndex index in a bit vector
|
sl@0
|
553 |
@panic EIndexOutOfRange if aIndex is out of range
|
sl@0
|
554 |
*/
|
sl@0
|
555 |
inline void RBitVector::SetBitVal(TUint32 aIndex, TBool aVal)
|
sl@0
|
556 |
{
|
sl@0
|
557 |
if(aVal)
|
sl@0
|
558 |
SetBit(aIndex);
|
sl@0
|
559 |
else
|
sl@0
|
560 |
ResetBit(aIndex);
|
sl@0
|
561 |
}
|
sl@0
|
562 |
|
sl@0
|
563 |
|
sl@0
|
564 |
inline TUint32 RBitVector::MaskLastWord(TUint32 aVal) const
|
sl@0
|
565 |
{
|
sl@0
|
566 |
const TUint32 shift = (32-(iNumBits & 0x1F)) & 0x1F;
|
sl@0
|
567 |
return (aVal << shift) >> shift; //-- mask unused high bits
|
sl@0
|
568 |
}
|
sl@0
|
569 |
|
sl@0
|
570 |
|
sl@0
|
571 |
|
sl@0
|
572 |
inline TUint32 RBitVector::WordNum(TUint32 aBitPos) const
|
sl@0
|
573 |
{
|
sl@0
|
574 |
return aBitPos >> 5;
|
sl@0
|
575 |
}
|
sl@0
|
576 |
|
sl@0
|
577 |
inline TUint32 RBitVector::BitInWord(TUint32 aBitPos) const
|
sl@0
|
578 |
{
|
sl@0
|
579 |
return aBitPos & 0x1F;
|
sl@0
|
580 |
}
|
sl@0
|
581 |
|
sl@0
|
582 |
/**
|
sl@0
|
583 |
Calculate offset of the page starting position in the cluster
|
sl@0
|
584 |
@param aPos the current entry position in bytes in the cluster
|
sl@0
|
585 |
@param aPageSzLog2 page size in log2
|
sl@0
|
586 |
@return the starting position of the page that contains aPos
|
sl@0
|
587 |
*/
|
sl@0
|
588 |
inline TUint32 CalculatePageOffsetInCluster(TUint32 aPos, TUint aPageSzLog2)
|
sl@0
|
589 |
{
|
sl@0
|
590 |
return (aPos >> aPageSzLog2) << aPageSzLog2;
|
sl@0
|
591 |
}
|
sl@0
|
592 |
|
sl@0
|
593 |
#endif //SL_STD_INL
|
sl@0
|
594 |
|
sl@0
|
595 |
|
sl@0
|
596 |
|
sl@0
|
597 |
|
sl@0
|
598 |
|