os/kernelhwsrv/userlibandfileserver/fileserver/srofs/sr_rofs.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) 1995-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
// ROFS.INL
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
sl@0
    19
inline const TText* CDirectoryCache::NameAddress( const TRofsEntry* aEntry )
sl@0
    20
	{
sl@0
    21
	return (const TText*)(((const TUint8*)aEntry) + aEntry->iNameOffset);
sl@0
    22
	};
sl@0
    23
sl@0
    24
sl@0
    25
inline TUint32 CDirectoryCache::AlignUp( TUint32 aValue )
sl@0
    26
	{
sl@0
    27
	return aValue + ((4-aValue) & 3); // round up to next word boundary
sl@0
    28
	};
sl@0
    29
sl@0
    30
inline const TRofsDir* CDirectoryCache::RootDirectory() const
sl@0
    31
	{
sl@0
    32
	return reinterpret_cast<const TRofsDir*>( iTreeBuffer->Ptr() );
sl@0
    33
	}
sl@0
    34
sl@0
    35
inline const TRofsDir* CDirectoryCache::RofsDirFromMediaOffset( TUint aMediaOffset ) const
sl@0
    36
	{
sl@0
    37
	return reinterpret_cast<const TRofsDir*>(aMediaOffset - iTreeMediaOffset + iTreeBuffer->Ptr() );
sl@0
    38
	};
sl@0
    39
sl@0
    40
inline const TRofsDir* CDirectoryCache::RofsDirFromSubDirEntry( const TRofsEntry* aEntry ) const
sl@0
    41
	{
sl@0
    42
	return reinterpret_cast<const TRofsDir*>(aEntry->iFileAddress - iTreeMediaOffset + iTreeBuffer->Ptr() );
sl@0
    43
	};
sl@0
    44
sl@0
    45
inline const TRofsEntry* CDirectoryCache::FirstSubDirEntryFromDir( const TRofsDir* aDir )
sl@0
    46
	{
sl@0
    47
	return reinterpret_cast<const TRofsEntry*>(((const TUint8*)aDir) + aDir->iFirstEntryOffset );
sl@0
    48
	}
sl@0
    49
sl@0
    50
inline const TRofsEntry* CDirectoryCache::FirstFileEntryFromDir( const TRofsDir* aDir ) const
sl@0
    51
	{
sl@0
    52
	__ASSERT_DEBUG( aDir->iFileBlockAddress != NULL, CRofs::Panic( CRofs::EPanicNullFileBlock ));
sl@0
    53
	return reinterpret_cast<const TRofsEntry*>(aDir->iFileBlockAddress - iFilesMediaOffset + iFilesBuffer->Ptr() );
sl@0
    54
	}
sl@0
    55
sl@0
    56
inline const TAny* CDirectoryCache::EndOfFileBlockPlusOne( const TRofsDir* aDir ) const
sl@0
    57
	{
sl@0
    58
	__ASSERT_DEBUG( aDir->iFileBlockAddress != NULL, CRofs::Panic( CRofs::EPanicNullFileBlock2 ));
sl@0
    59
	return reinterpret_cast<const TAny*>( ((TUint8*)FirstFileEntryFromDir(aDir)) + aDir->iFileBlockSize );
sl@0
    60
	}
sl@0
    61
sl@0
    62
sl@0
    63
inline const TAny* CDirectoryCache::EndOfDirPlusOne( const TRofsDir* aDir ) const
sl@0
    64
	{
sl@0
    65
	return reinterpret_cast<const TAny*>( ((TUint8*)aDir) + aDir->iStructSize );
sl@0
    66
	}
sl@0
    67
sl@0
    68
inline const TRofsEntry* CDirectoryCache::NextEntry( const TRofsEntry* aEntry )
sl@0
    69
	{
sl@0
    70
	return (const TRofsEntry*)((const TUint8*)aEntry + AlignUp( aEntry->iStructSize ));
sl@0
    71
	}
sl@0
    72
sl@0
    73
sl@0
    74
inline CRofsMountCB& CRofsFileCB::RofsMount()
sl@0
    75
	{ return reinterpret_cast<CRofsMountCB&>(Mount()); };
sl@0
    76
sl@0
    77
inline void CRofsFileCB::SetMediaBase(const TUint aBase)
sl@0
    78
	{iMediaBase=aBase;}
sl@0
    79
sl@0
    80
inline void CRofsFileCB::SetAttExtra( TUint8 aAttExtra )
sl@0
    81
	{iAttExtra = aAttExtra;}
sl@0
    82
sl@0
    83
sl@0
    84
inline void CRofsDirCB::SetCache( CDirectoryCache* aCache )
sl@0
    85
	{iCache = aCache;}
sl@0
    86
sl@0
    87
sl@0
    88
inline CRofs& CRofsMountCB::FileSystem() const
sl@0
    89
	{return((CRofs&)Drive().FSys());}
sl@0
    90
sl@0
    91
sl@0
    92
inline TInt CRofs::TotalSupportedDrives() const
sl@0
    93
	{return iTotalSupportedDrives;}
sl@0
    94
sl@0
    95