os/persistentdata/persistentstorage/store/UFILE/UF_STD.INL
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/store/UFILE/UF_STD.INL	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,196 @@
     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 "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 +//
    1.18 +
    1.19 +/**
    1.20 + Returns the start position of the write area within the 
    1.21 + intermediate buffer taking into account seeks.
    1.22 + 
    1.23 + @param The enumerator indicates we are setting a write buffer.
    1.24 + 
    1.25 +*/
    1.26 +inline TUint8* RFileBuf::Limit(TWrite) const
    1.27 +	{
    1.28 +	return iWLim;
    1.29 +	}
    1.30 +/** Sets the start position of the write area within the 
    1.31 + intermediate buffer taking into account seeks.
    1.32 +
    1.33 +@param The enumerator indicates we are setting a write buffer.
    1.34 +@param aPtr The start point to set the limit to.
    1.35 + */	
    1.36 +inline void RFileBuf::SetLimit(TWrite,TUint8* aLimit)
    1.37 +	{
    1.38 +	iWLim=aLimit;
    1.39 +	}
    1.40 +/** Sets the read position of the stream to the specified offset within the file. 
    1.41 +
    1.42 +@param The enumerator indicates we are setting a read buffer.
    1.43 +@param aPos The offset within the file to which the read stream position
    1.44 +is set. By default this is zero.
    1.45 +@see MStreamBuf::TRead */
    1.46 +inline void RFileBuf::SetPos(TRead,TInt aPos)
    1.47 +	{
    1.48 +	iRPos=aPos;
    1.49 +	}
    1.50 +/** Sets the write position of the stream to the specified offset within the file.
    1.51 +
    1.52 +@param The enumerator indicates we are setting a write buffer.
    1.53 +@param aPos The offset within the file to which the write stream position
    1.54 +is set. By default this is zero.
    1.55 +@see MStreamBuf::TWrite */
    1.56 +inline void RFileBuf::SetPos(TWrite,TInt aPos)
    1.57 +	{
    1.58 +	iWPos=aPos;
    1.59 +	}
    1.60 +/** Returns the read stream position.
    1.61 +
    1.62 +@param The enumerator indicates we are setting a read buffer.
    1.63 +@see MStreamBuf::TRead */
    1.64 +inline TInt RFileBuf::Pos(TRead) const
    1.65 +	{
    1.66 +	return iRPos;
    1.67 +	}
    1.68 +/** Returns the write stream position.
    1.69 +
    1.70 +@param The enumerator indicates we are setting a write buffer.
    1.71 +@see MStreamBuf::TWrite */
    1.72 +inline TInt RFileBuf::Pos(TWrite) const
    1.73 +	{
    1.74 +	return iWPos;
    1.75 +	}
    1.76 +/** Moves the file offset to which the read stream position is set.
    1.77 +
    1.78 +@param The enumerator indicates we are setting a read buffer.
    1.79 +@param The number of bytes to move by.
    1.80 +@see MStreamBuf::TRead */
    1.81 +inline TInt RFileBuf::MovePos(TRead,TInt anOffset)
    1.82 +	{
    1.83 +	return iRPos+=anOffset;
    1.84 +	}
    1.85 +/** Moves the file offset to which the write stream position is set.
    1.86 +
    1.87 +@param The enumerator indicates we are setting a write buffer.
    1.88 +@param The number of bytes to move by.
    1.89 +@see MStreamBuf::TWrite */
    1.90 +inline TInt RFileBuf::MovePos(TWrite,TInt anOffset)
    1.91 +	{
    1.92 +	return iWPos+=anOffset;
    1.93 +	}
    1.94 +/** Returns the number of bytes that are/were in the read area of the 
    1.95 + intermediate buffer yet to be passed to the user. 
    1.96 +
    1.97 +@param The enumerator indicates we are setting a read buffer.
    1.98 +@see MStreamBuf::TRead */	
    1.99 +inline TInt RFileBuf::Lag(TRead) const
   1.100 +	{
   1.101 +	return Ptr(ERead)-End(ERead);
   1.102 +	}
   1.103 +/** Returns the number of bytes that are/were in the write area of the 
   1.104 + intermediate buffer yet to be written to the file.
   1.105 +
   1.106 +@param The enumerator indicates we are setting a write buffer.
   1.107 +@see MStreamBuf::TWrite */	
   1.108 +inline TInt RFileBuf::Lag(TWrite) const
   1.109 +	{
   1.110 +	return Ptr(EWrite)-iBase;
   1.111 +	}
   1.112 +/** Returns the number of bytes of outstanding data in the intermediate 
   1.113 + buffer that is yet to be written, taking into account any changes brought
   1.114 + about by seeks.
   1.115 +
   1.116 +@param The enumerator indicates we are using a write buffer.
   1.117 +@see MStreamBuf::TWrite */	
   1.118 +inline TInt RFileBuf::Span(TWrite) const
   1.119 +	{
   1.120 +	return Max(Ptr(EWrite),Limit(EWrite))-iBase;
   1.121 +	}
   1.122 +/** Gets the the read position within the stream taking 
   1.123 + into account the data in the intermediate buffer not yet passed up
   1.124 + to the user.
   1.125 +
   1.126 +@param The enumerator indicates we are using a read buffer.
   1.127 +@see MStreamBuf::TRead */	
   1.128 +inline TInt RFileBuf::Mark(TRead) const
   1.129 +	{
   1.130 +	return Pos(ERead)+Lag(ERead);
   1.131 +	}
   1.132 +/** Gets the write position within the stream taking 
   1.133 + into account data in the intermediate buffer not yet written.
   1.134 +
   1.135 +@param The enumerator indicates we are using a write buffer.
   1.136 +@see MStreamBuf::TWrite */	
   1.137 +inline TInt RFileBuf::Mark(TWrite) const
   1.138 +	{
   1.139 +	return Pos(EWrite)+Lag(EWrite);
   1.140 +	}
   1.141 +/** Returns the possible end position of the write position in the stream 
   1.142 + should the current data in the intermediate buffer be written.
   1.143 +
   1.144 +@param The enumerator indicates we are using a write buffer.
   1.145 +@see MStreamBuf::TWrite */	
   1.146 +inline TInt RFileBuf::Reach(TWrite) const
   1.147 +	{
   1.148 +	return Pos(EWrite)+Span(EWrite);
   1.149 +	}
   1.150 +/** Sets the start and end points of the read area within the intermediate buffer.
   1.151 +
   1.152 +@param The enumerator indicates we are setting a read buffer.
   1.153 +@param aPtr The start point.
   1.154 +@param anEnd The end point.
   1.155 +@see MStreamBuf::TRead 
   1.156 +@see TStreamBuf::SetBuf 
   1.157 + */	
   1.158 +inline void RFileBuf::SetBuf(TRead,TUint8* aPtr,TUint8* anEnd)
   1.159 +	{
   1.160 +	TStreamBuf::SetBuf(ERead,aPtr,anEnd);
   1.161 +	}
   1.162 +/** Sets the start and end points of the read area within the intermediate buffer.
   1.163 +
   1.164 +@param The enumerator indicates we are setting a write buffer.
   1.165 +@param aPtr The start point.
   1.166 +@param anEnd The end point.
   1.167 +@see MStreamBuf::TWrite 
   1.168 +@see TStreamBuf::SetBuf 
   1.169 + */	
   1.170 +inline void RFileBuf::SetBuf(TWrite,TUint8* aPtr,TUint8* anEnd)
   1.171 +	{
   1.172 +	TStreamBuf::SetBuf(EWrite,aPtr,anEnd);
   1.173 +	SetLimit(EWrite,aPtr);
   1.174 +	}
   1.175 +/** Sets the start and end points of the read area within the intermediate buffer.
   1.176 +
   1.177 +@param The enumerator indicates we are setting a read buffer. ???
   1.178 +@param aPtr The start point.
   1.179 +@param anEnd The end point.
   1.180 +@see MStreamBuf::TArea 
   1.181 +@see TStreamBuf::SetBuf 
   1.182 + */	
   1.183 +inline void RFileBuf::SetBuf(TArea anArea,TUint8* aPtr,TUint8* anEnd)
   1.184 +	{
   1.185 +	TStreamBuf::SetBuf(anArea,aPtr,anEnd);
   1.186 +	if (anArea&EWrite) {
   1.187 +		SetLimit(EWrite,aPtr);
   1.188 +	}
   1.189 +	}
   1.190 +
   1.191 +/** Returns a pointer to the CPermanentStoreCoord object.
   1.192 +
   1.193 +@see CPermanentStoreCoord */	
   1.194 +inline CPermanentStoreCoord& CPermanentFileStore::Coord() const
   1.195 +	{
   1.196 +	__ASSERT_DEBUG(iCoord!=NULL,User::Invariant());
   1.197 +	return *iCoord;
   1.198 +	}
   1.199 +