os/kernelhwsrv/userlibandfileserver/fileserver/sfat32/inc/fat_table32.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) 1998-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\fat_table32.inl
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef FAT_TABLE_32_INL
sl@0
    23
#define FAT_TABLE_32_INL
sl@0
    24
sl@0
    25
sl@0
    26
sl@0
    27
//---------------------------------------------------------------------------------------------------------------------------------------
sl@0
    28
sl@0
    29
/** @return interface to the FAT drive */
sl@0
    30
TDriveInterface& CAtaFatTable::DriveInterface() const 
sl@0
    31
    {
sl@0
    32
    return iDriveInteface;
sl@0
    33
    }
sl@0
    34
sl@0
    35
/** @return pointer to the owning mount. */
sl@0
    36
CFatMountCB* CAtaFatTable::OwnerMount() const 
sl@0
    37
    {
sl@0
    38
    return iOwner;
sl@0
    39
    }
sl@0
    40
sl@0
    41
sl@0
    42
/** @return state of this object. */
sl@0
    43
CAtaFatTable::TState CAtaFatTable::State() const 
sl@0
    44
    {
sl@0
    45
    return iState;
sl@0
    46
    }
sl@0
    47
sl@0
    48
/** sets the state of this object. */
sl@0
    49
void CAtaFatTable::SetState(CAtaFatTable::TState aState)
sl@0
    50
    {
sl@0
    51
    //__PRINT3(_L("#=-= CAtaFatTable::SetState() drv:%d, %d->%d\n"), iOwner->DriveNumber(),iState,aState);
sl@0
    52
    iState = aState;
sl@0
    53
    }
sl@0
    54
sl@0
    55
CAtaFatTable::TFatScanParam::TFatScanParam() 
sl@0
    56
             :iEntriesScanned(0), iFirstFree(0), iCurrFreeEntries(0), iCurrOccupiedEntries(0) 
sl@0
    57
    {
sl@0
    58
    } 
sl@0
    59
sl@0
    60
//---------------------------------------------------------------------------------------------------------------------------------------
sl@0
    61
sl@0
    62
/** @return object internal state */
sl@0
    63
CFatHelperThreadBase::TState CFatHelperThreadBase::State() const 
sl@0
    64
    {
sl@0
    65
    return iState;
sl@0
    66
    }
sl@0
    67
sl@0
    68
/** sustend the worker thread */
sl@0
    69
void CFatHelperThreadBase::Suspend() const 
sl@0
    70
    {
sl@0
    71
    iThread.Suspend();
sl@0
    72
    }
sl@0
    73
sl@0
    74
/** resumes the worker thread */
sl@0
    75
void CFatHelperThreadBase::Resume() const 
sl@0
    76
    {
sl@0
    77
    iThread.Resume();
sl@0
    78
    }
sl@0
    79
sl@0
    80
/** @return worker thread completion code (logon status) */    
sl@0
    81
TInt CFatHelperThreadBase::ThreadCompletionCode() const
sl@0
    82
    {
sl@0
    83
    return iThreadStatus.Int();
sl@0
    84
    }
sl@0
    85
sl@0
    86
/** @return ETrue if the thread is working, i.e. its logon status is KRequestPending*/
sl@0
    87
TBool CFatHelperThreadBase::ThreadWorking() const
sl@0
    88
    {
sl@0
    89
    return ThreadCompletionCode() == KRequestPending;
sl@0
    90
    }
sl@0
    91
sl@0
    92
/** 
sl@0
    93
    boost the priority of the worker thread or return it back to normal
sl@0
    94
    @param  aBoost ETrue to boss the priority, EFalse to "unboost"
sl@0
    95
*/    
sl@0
    96
void CFatHelperThreadBase::BoostPriority(TBool aBoost) const
sl@0
    97
    {
sl@0
    98
    TThreadPriority priority;
sl@0
    99
    if(aBoost)
sl@0
   100
        {
sl@0
   101
        priority = (TThreadPriority)EHelperPriorityBoosted;
sl@0
   102
        iPriorityBoosted = ETrue;
sl@0
   103
        }
sl@0
   104
    else        
sl@0
   105
        {
sl@0
   106
        priority = (TThreadPriority)EHelperPriorityNormal;
sl@0
   107
        iPriorityBoosted = EFalse;
sl@0
   108
        }
sl@0
   109
sl@0
   110
    iThread.SetPriority(priority);
sl@0
   111
    
sl@0
   112
    }    
sl@0
   113
sl@0
   114
/** @return ETrue if the thread's priority is boosted. */
sl@0
   115
TBool CFatHelperThreadBase::IsPriorityBoosted() const
sl@0
   116
    {
sl@0
   117
    return iPriorityBoosted;
sl@0
   118
    }
sl@0
   119
sl@0
   120
sl@0
   121
/** @return worker thread id. */
sl@0
   122
TThreadId CFatHelperThreadBase::ThreadId() const 
sl@0
   123
    {
sl@0
   124
    return iThread.Id();
sl@0
   125
    }
sl@0
   126
sl@0
   127
/** set the state of the object. See CFatHelperThreadBase::TState enum */
sl@0
   128
void CFatHelperThreadBase::SetState(CFatHelperThreadBase::TState aState) 
sl@0
   129
    {
sl@0
   130
    iState = aState;
sl@0
   131
    }
sl@0
   132
sl@0
   133
/** @return  ETrue if the worker thread is allowed to live.*/
sl@0
   134
TBool CFatHelperThreadBase::AllowedToLive() const 
sl@0
   135
    {
sl@0
   136
    return iAllowedToLive;
sl@0
   137
    }
sl@0
   138
sl@0
   139
/**
sl@0
   140
    Set a flag that indicates if the thread shall be alive or shall finish ASAP
sl@0
   141
    @param  aAllow controls the thread life and death
sl@0
   142
*/
sl@0
   143
void CFatHelperThreadBase::AllowToLive(TBool aAllow) 
sl@0
   144
    {
sl@0
   145
    iAllowedToLive = aAllow;
sl@0
   146
    }
sl@0
   147
sl@0
   148
//---------------------------------------------------------------------------------------------------------------------------------------
sl@0
   149
sl@0
   150
/** @return object type */
sl@0
   151
CFatHelperThreadBase::TFatHelperThreadType CFat32FreeSpaceScanner::Type() const 
sl@0
   152
    {
sl@0
   153
    return EFreeSpaceScanner;
sl@0
   154
    }
sl@0
   155
sl@0
   156
sl@0
   157
//---------------------------------------------------------------------------------------------------------------------------------------
sl@0
   158
sl@0
   159
/** @return object type */
sl@0
   160
CFatHelperThreadBase::TFatHelperThreadType CFat32BitCachePopulator::Type() const 
sl@0
   161
    {
sl@0
   162
    return EBitCachePopulator;
sl@0
   163
    }
sl@0
   164
sl@0
   165
sl@0
   166
#endif //FAT_TABLE_32_INL
sl@0
   167
sl@0
   168
sl@0
   169
sl@0
   170
sl@0
   171
sl@0
   172
sl@0
   173
sl@0
   174
sl@0
   175
sl@0
   176
sl@0
   177
sl@0
   178
sl@0
   179
sl@0
   180
sl@0
   181
sl@0
   182
sl@0
   183
sl@0
   184
sl@0
   185
sl@0
   186
sl@0
   187
sl@0
   188
sl@0
   189