os/kernelhwsrv/kernel/eka/include/d32locd.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200 (2014-06-10)
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1999-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
// e32\include\d32locd.inl
sl@0
    15
// 
sl@0
    16
// WARNING: This file contains some APIs which are internal and are subject
sl@0
    17
//          to change without noticed. Such APIs should therefore not be used
sl@0
    18
//          outside the Kernel and Hardware Services package.
sl@0
    19
//
sl@0
    20
sl@0
    21
// class RLocalDrive
sl@0
    22
inline TVersion RLocalDrive::VersionRequired() const
sl@0
    23
	{ return TVersion(KLocalDriveMajorVersion,KLocalDriveMinorVersion,KLocalDriveBuildVersion); }
sl@0
    24
/**
sl@0
    25
@capability TCB
sl@0
    26
*/
sl@0
    27
inline TInt RLocalDrive::Connect(TInt aDriveNumber, TBool& aChangedFlag)
sl@0
    28
	{ return DoCreate(KLitLocalDriveLddName,VersionRequired(),aDriveNumber,NULL,(const TDesC8*)&aChangedFlag,EOwnerProcess); }
sl@0
    29
inline TInt RLocalDrive::Enlarge(TInt aLength)
sl@0
    30
	{ return DoControl(EControlEnlarge, (TAny*)aLength); }
sl@0
    31
inline TInt RLocalDrive::Reduce(TInt aPos, TInt aLength)
sl@0
    32
	{ return DoControl(EControlReduce, (TAny*)aPos, (TAny*)aLength); }
sl@0
    33
inline TInt RLocalDrive::Read(TInt64 aPos, TInt aLength, const TAny* aTrg, TInt aMessageHandle, TInt aOffset, TInt aFlags)
sl@0
    34
	{ TLocalDriveMessageData d(aPos,aLength,aTrg,aMessageHandle,aOffset,aFlags); return DoControl(EControlRead, &d); }
sl@0
    35
inline TInt RLocalDrive::Read(TInt64 aPos, TInt aLength, const TAny* aTrg, TInt aMessageHandle, TInt anOffset)
sl@0
    36
	{ TLocalDriveMessageData d(aPos,aLength,aTrg,aMessageHandle,anOffset,0); return DoControl(EControlRead, &d); }
sl@0
    37
inline TInt RLocalDrive::Read(TInt64 aPos, TInt aLength, TDes8& aTrg)
sl@0
    38
	{ TLocalDriveMessageData d(aPos,aLength,&aTrg,KLocalMessageHandle,0,ELocDrvMetaData); return DoControl(EControlRead, &d); }
sl@0
    39
inline TInt RLocalDrive::Write(TInt64 aPos, TInt aLength, const TAny* aSrc, TInt aMessageHandle, TInt aOffset, TInt aFlags)
sl@0
    40
	{ TLocalDriveMessageData d(aPos,aLength,aSrc,aMessageHandle,aOffset,aFlags); return DoControl(EControlWrite, &d); }
sl@0
    41
inline TInt RLocalDrive::Write(TInt64 aPos, TInt aLength, const TAny* aSrc, TInt aMessageHandle, TInt anOffset)
sl@0
    42
	{ TLocalDriveMessageData d(aPos,aLength,aSrc,aMessageHandle,anOffset,0); return DoControl(EControlWrite, &d); }
sl@0
    43
inline TInt RLocalDrive::Write(TInt64 aPos, const TDesC8& aSrc)
sl@0
    44
	{ TLocalDriveMessageData d(aPos,aSrc.Length(),&aSrc,KLocalMessageHandle,0,ELocDrvMetaData); return DoControl(EControlWrite, &d); }
sl@0
    45
inline TInt RLocalDrive::Caps(TDes8& anInfo)
sl@0
    46
	{ return DoControl(EControlCaps, &anInfo); }
sl@0
    47
inline TInt RLocalDrive::Format(TInt64 aPos, TInt aLength)
sl@0
    48
	{ TLocalDriveMessageData d(aPos,aLength,NULL,KLocalMessageHandle,0,0); return DoControl(EControlFormat, &d); }
sl@0
    49
inline TInt RLocalDrive::ForceMediaChange(TInt aMode)
sl@0
    50
	{ return DoControl(EControlForceMediaChange, (TAny*)aMode); }
sl@0
    51
inline void RLocalDrive::NotifyChange(TRequestStatus* aStatus)
sl@0
    52
	{ *aStatus=KRequestPending; DoControl(EControlNotifyChange, aStatus); }
sl@0
    53
inline void RLocalDrive::NotifyChangeCancel()
sl@0
    54
	{ DoControl(EControlNotifyChangeCancel); }
sl@0
    55
inline TMediaDevice RLocalDrive::MediaDevice()
sl@0
    56
	{ return (TMediaDevice)DoControl(EControlMediaDevice); }
sl@0
    57
inline TInt RLocalDrive::SetMountInfo(const TDesC8* aInfo,TInt aMessageHandle)
sl@0
    58
	{ TLocalDriveMessageData d(0,0,aInfo,aMessageHandle,0,0); return DoControl(EControlSetMountInfo, &d); }
sl@0
    59
inline TInt RLocalDrive::IsRemovable(TInt& aSocketNum)
sl@0
    60
	{ return DoControl(EControlIsRemovable,&aSocketNum); }
sl@0
    61
inline TInt RLocalDrive::ControlIO(TInt aCommand, TAny* aParam1, TAny* aParam2)
sl@0
    62
	{ TLocalDriveControlIOData d(aCommand,aParam1,aParam2,KLocalMessageHandle); return DoControl(EControlControlIO,&d); }
sl@0
    63
inline TInt RLocalDrive::ControlIO(TInt aCommand, TDes8& aBuf, TInt aParam)
sl@0
    64
	{ TLocalDriveControlIOData d(aCommand, (TUint8*) aBuf.Ptr(), aParam, aBuf.MaxLength()); return DoControl(EControlControlIO,&d); }
sl@0
    65
inline TInt RLocalDrive::ControlIO(TInt aCommand, TDesC8& aBuf, TInt aParam)
sl@0
    66
	{ TLocalDriveControlIOData d(aCommand, (TUint8*) aBuf.Ptr(), aParam, aBuf.Length()); return DoControl(EControlControlIO,&d); }
sl@0
    67
inline TInt RLocalDrive::ControlIO(TInt aCommand, TInt aParam1, TInt aParam2)
sl@0
    68
	{ TLocalDriveControlIOData d(aCommand,(TAny*) aParam1,(TAny*) aParam2,0); return DoControl(EControlControlIO,&d); }
sl@0
    69
sl@0
    70
sl@0
    71
// RLocalDrive Password Control (Set/Lock/Unlock)
sl@0
    72
inline TInt RLocalDrive::Unlock(const TDesC8& aPassword, TBool aStorePassword)
sl@0
    73
	{ TLocalDrivePasswordData d((TDesC8&)aPassword, (TDesC8&)aPassword, aStorePassword); return DoControl(EControlPasswordUnlock, &d); }
sl@0
    74
inline TInt RLocalDrive::SetPassword(const TDesC8& aOldPassword, const TDesC8& aNewPassword, TBool aStorePassword)
sl@0
    75
	{ TLocalDrivePasswordData d((TDesC8&)aOldPassword, (TDesC8&)aNewPassword, aStorePassword); return DoControl(EControlPasswordLock, &d); }
sl@0
    76
inline TInt RLocalDrive::Clear(const TDesC8& aPassword)
sl@0
    77
	{ TLocalDrivePasswordData d((TDesC8&)aPassword, (TDesC8&)aPassword, EFalse); return DoControl(EControlPasswordClear, &d); }
sl@0
    78
inline TInt RLocalDrive::ErasePassword()
sl@0
    79
	{ return DoControl(EControlPasswordErase); }
sl@0
    80
sl@0
    81
// RLocalDrive Password Store Control (Read/Write/Length)
sl@0
    82
inline TInt RLocalDrive::ReadPasswordData(TDesC8& aStoreData)
sl@0
    83
	{ return DoControl(EControlReadPasswordStore, (TDesC8*)&aStoreData); }
sl@0
    84
inline TInt RLocalDrive::WritePasswordData(const TDesC8& aStoreData)
sl@0
    85
	{ return DoControl(EControlWritePasswordStore, (TDesC8*)&aStoreData); }
sl@0
    86
inline TInt RLocalDrive::PasswordStoreLengthInBytes()
sl@0
    87
	{ TInt length=0; return DoControl(EControlPasswordStoreLengthInBytes, (TAny*)&length)==KErrNone?length:0; }
sl@0
    88
sl@0
    89
inline TInt RLocalDrive::DeleteNotify(TInt64 aPos, TInt aLength)
sl@0
    90
	{ TLocalDriveMessageData d(aPos,aLength,0,KLocalMessageHandle,0,0); return DoControl(EControlDeleteNotify, &d); }
sl@0
    91
sl@0
    92
// Get Last Error Info
sl@0
    93
inline TInt RLocalDrive::GetLastErrorInfo(TDesC8& aErrorInfo)
sl@0
    94
	{ return DoControl(EControlGetLastErrorInfo, (TDesC8*)&aErrorInfo); }
sl@0
    95
sl@0
    96
sl@0
    97
inline TInt RLocalDrive::QueryDevice(TQueryDevice aQueryDevice, TDes8 &aBuf)
sl@0
    98
	{ return DoControl(EControlQueryDevice, (TAny*) aQueryDevice, &aBuf); }
sl@0
    99
sl@0
   100
inline TLDFormatInfo::TLDFormatInfo()
sl@0
   101
                     :iCapacity(0),iSectorsPerCluster(0),iSectorsPerTrack(0),iNumberOfSides(0),iFATBits(EFBDontCare),
sl@0
   102
                     iReservedSectors(0), iFlags(0), iPad(0)
sl@0
   103
    {
sl@0
   104
    }
sl@0
   105
sl@0
   106
inline TInt64 TLocalDriveCapsV4::MediaSizeInBytes()
sl@0
   107
	{
sl@0
   108
	//
sl@0
   109
	// Return the actual size of the media (as opposed to the partition size)
sl@0
   110
	//
sl@0
   111
	// Note : We calculate including iNumPagesPerBlock to maintain compatibility with NAND flash
sl@0
   112
	//		  where iNumberOfSectors == iNumOfBlocks and iSectorSizeInBytes == iNumBytesMain.
sl@0
   113
	//		  The local media subsystem sets a default value of iNumPagesPerBlock == 1.
sl@0
   114
	//
sl@0
   115
	return(TInt64(iNumberOfSectors) * iSectorSizeInBytes * iNumPagesPerBlock);
sl@0
   116
	}