Update contrib.
1 // Copyright (c) 1998-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\fat_table32.inl
22 #ifndef FAT_TABLE_32_INL
23 #define FAT_TABLE_32_INL
27 //---------------------------------------------------------------------------------------------------------------------------------------
29 /** @return interface to the FAT drive */
30 TDriveInterface& CAtaFatTable::DriveInterface() const
32 return iDriveInteface;
35 /** @return pointer to the owning mount. */
36 CFatMountCB* CAtaFatTable::OwnerMount() const
42 /** @return state of this object. */
43 CAtaFatTable::TState CAtaFatTable::State() const
48 /** sets the state of this object. */
49 void CAtaFatTable::SetState(CAtaFatTable::TState aState)
51 //__PRINT3(_L("#=-= CAtaFatTable::SetState() drv:%d, %d->%d\n"), iOwner->DriveNumber(),iState,aState);
55 CAtaFatTable::TFatScanParam::TFatScanParam()
56 :iEntriesScanned(0), iFirstFree(0), iCurrFreeEntries(0), iCurrOccupiedEntries(0)
60 //---------------------------------------------------------------------------------------------------------------------------------------
62 /** @return object internal state */
63 CFatHelperThreadBase::TState CFatHelperThreadBase::State() const
68 /** sustend the worker thread */
69 void CFatHelperThreadBase::Suspend() const
74 /** resumes the worker thread */
75 void CFatHelperThreadBase::Resume() const
80 /** @return worker thread completion code (logon status) */
81 TInt CFatHelperThreadBase::ThreadCompletionCode() const
83 return iThreadStatus.Int();
86 /** @return ETrue if the thread is working, i.e. its logon status is KRequestPending*/
87 TBool CFatHelperThreadBase::ThreadWorking() const
89 return ThreadCompletionCode() == KRequestPending;
93 boost the priority of the worker thread or return it back to normal
94 @param aBoost ETrue to boss the priority, EFalse to "unboost"
96 void CFatHelperThreadBase::BoostPriority(TBool aBoost) const
98 TThreadPriority priority;
101 priority = (TThreadPriority)EHelperPriorityBoosted;
102 iPriorityBoosted = ETrue;
106 priority = (TThreadPriority)EHelperPriorityNormal;
107 iPriorityBoosted = EFalse;
110 iThread.SetPriority(priority);
114 /** @return ETrue if the thread's priority is boosted. */
115 TBool CFatHelperThreadBase::IsPriorityBoosted() const
117 return iPriorityBoosted;
121 /** @return worker thread id. */
122 TThreadId CFatHelperThreadBase::ThreadId() const
127 /** set the state of the object. See CFatHelperThreadBase::TState enum */
128 void CFatHelperThreadBase::SetState(CFatHelperThreadBase::TState aState)
133 /** @return ETrue if the worker thread is allowed to live.*/
134 TBool CFatHelperThreadBase::AllowedToLive() const
136 return iAllowedToLive;
140 Set a flag that indicates if the thread shall be alive or shall finish ASAP
141 @param aAllow controls the thread life and death
143 void CFatHelperThreadBase::AllowToLive(TBool aAllow)
145 iAllowedToLive = aAllow;
148 //---------------------------------------------------------------------------------------------------------------------------------------
150 /** @return object type */
151 CFatHelperThreadBase::TFatHelperThreadType CFat32FreeSpaceScanner::Type() const
153 return EFreeSpaceScanner;
157 //---------------------------------------------------------------------------------------------------------------------------------------
159 /** @return object type */
160 CFatHelperThreadBase::TFatHelperThreadType CFat32BitCachePopulator::Type() const
162 return EBitCachePopulator;
166 #endif //FAT_TABLE_32_INL