1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/kernelhwsrv/userlibandfileserver/fileserver/sfat32/inc/fat_table32.inl Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,189 @@
1.4 +// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of the License "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// f32\sfat32\inc\fat_table32.inl
1.18 +//
1.19 +//
1.20 +
1.21 +/**
1.22 + @file
1.23 +*/
1.24 +
1.25 +#ifndef FAT_TABLE_32_INL
1.26 +#define FAT_TABLE_32_INL
1.27 +
1.28 +
1.29 +
1.30 +//---------------------------------------------------------------------------------------------------------------------------------------
1.31 +
1.32 +/** @return interface to the FAT drive */
1.33 +TDriveInterface& CAtaFatTable::DriveInterface() const
1.34 + {
1.35 + return iDriveInteface;
1.36 + }
1.37 +
1.38 +/** @return pointer to the owning mount. */
1.39 +CFatMountCB* CAtaFatTable::OwnerMount() const
1.40 + {
1.41 + return iOwner;
1.42 + }
1.43 +
1.44 +
1.45 +/** @return state of this object. */
1.46 +CAtaFatTable::TState CAtaFatTable::State() const
1.47 + {
1.48 + return iState;
1.49 + }
1.50 +
1.51 +/** sets the state of this object. */
1.52 +void CAtaFatTable::SetState(CAtaFatTable::TState aState)
1.53 + {
1.54 + //__PRINT3(_L("#=-= CAtaFatTable::SetState() drv:%d, %d->%d\n"), iOwner->DriveNumber(),iState,aState);
1.55 + iState = aState;
1.56 + }
1.57 +
1.58 +CAtaFatTable::TFatScanParam::TFatScanParam()
1.59 + :iEntriesScanned(0), iFirstFree(0), iCurrFreeEntries(0), iCurrOccupiedEntries(0)
1.60 + {
1.61 + }
1.62 +
1.63 +//---------------------------------------------------------------------------------------------------------------------------------------
1.64 +
1.65 +/** @return object internal state */
1.66 +CFatHelperThreadBase::TState CFatHelperThreadBase::State() const
1.67 + {
1.68 + return iState;
1.69 + }
1.70 +
1.71 +/** sustend the worker thread */
1.72 +void CFatHelperThreadBase::Suspend() const
1.73 + {
1.74 + iThread.Suspend();
1.75 + }
1.76 +
1.77 +/** resumes the worker thread */
1.78 +void CFatHelperThreadBase::Resume() const
1.79 + {
1.80 + iThread.Resume();
1.81 + }
1.82 +
1.83 +/** @return worker thread completion code (logon status) */
1.84 +TInt CFatHelperThreadBase::ThreadCompletionCode() const
1.85 + {
1.86 + return iThreadStatus.Int();
1.87 + }
1.88 +
1.89 +/** @return ETrue if the thread is working, i.e. its logon status is KRequestPending*/
1.90 +TBool CFatHelperThreadBase::ThreadWorking() const
1.91 + {
1.92 + return ThreadCompletionCode() == KRequestPending;
1.93 + }
1.94 +
1.95 +/**
1.96 + boost the priority of the worker thread or return it back to normal
1.97 + @param aBoost ETrue to boss the priority, EFalse to "unboost"
1.98 +*/
1.99 +void CFatHelperThreadBase::BoostPriority(TBool aBoost) const
1.100 + {
1.101 + TThreadPriority priority;
1.102 + if(aBoost)
1.103 + {
1.104 + priority = (TThreadPriority)EHelperPriorityBoosted;
1.105 + iPriorityBoosted = ETrue;
1.106 + }
1.107 + else
1.108 + {
1.109 + priority = (TThreadPriority)EHelperPriorityNormal;
1.110 + iPriorityBoosted = EFalse;
1.111 + }
1.112 +
1.113 + iThread.SetPriority(priority);
1.114 +
1.115 + }
1.116 +
1.117 +/** @return ETrue if the thread's priority is boosted. */
1.118 +TBool CFatHelperThreadBase::IsPriorityBoosted() const
1.119 + {
1.120 + return iPriorityBoosted;
1.121 + }
1.122 +
1.123 +
1.124 +/** @return worker thread id. */
1.125 +TThreadId CFatHelperThreadBase::ThreadId() const
1.126 + {
1.127 + return iThread.Id();
1.128 + }
1.129 +
1.130 +/** set the state of the object. See CFatHelperThreadBase::TState enum */
1.131 +void CFatHelperThreadBase::SetState(CFatHelperThreadBase::TState aState)
1.132 + {
1.133 + iState = aState;
1.134 + }
1.135 +
1.136 +/** @return ETrue if the worker thread is allowed to live.*/
1.137 +TBool CFatHelperThreadBase::AllowedToLive() const
1.138 + {
1.139 + return iAllowedToLive;
1.140 + }
1.141 +
1.142 +/**
1.143 + Set a flag that indicates if the thread shall be alive or shall finish ASAP
1.144 + @param aAllow controls the thread life and death
1.145 +*/
1.146 +void CFatHelperThreadBase::AllowToLive(TBool aAllow)
1.147 + {
1.148 + iAllowedToLive = aAllow;
1.149 + }
1.150 +
1.151 +//---------------------------------------------------------------------------------------------------------------------------------------
1.152 +
1.153 +/** @return object type */
1.154 +CFatHelperThreadBase::TFatHelperThreadType CFat32FreeSpaceScanner::Type() const
1.155 + {
1.156 + return EFreeSpaceScanner;
1.157 + }
1.158 +
1.159 +
1.160 +//---------------------------------------------------------------------------------------------------------------------------------------
1.161 +
1.162 +/** @return object type */
1.163 +CFatHelperThreadBase::TFatHelperThreadType CFat32BitCachePopulator::Type() const
1.164 + {
1.165 + return EBitCachePopulator;
1.166 + }
1.167 +
1.168 +
1.169 +#endif //FAT_TABLE_32_INL
1.170 +
1.171 +
1.172 +
1.173 +
1.174 +
1.175 +
1.176 +
1.177 +
1.178 +
1.179 +
1.180 +
1.181 +
1.182 +
1.183 +
1.184 +
1.185 +
1.186 +
1.187 +
1.188 +
1.189 +
1.190 +
1.191 +
1.192 +