os/persistentdata/persistentstorage/store/UFILE/UF_STD.INL
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  Returns the start position of the write area within the 
    18  intermediate buffer taking into account seeks.
    19  
    20  @param The enumerator indicates we are setting a write buffer.
    21  
    22 */
    23 inline TUint8* RFileBuf::Limit(TWrite) const
    24 	{
    25 	return iWLim;
    26 	}
    27 /** Sets the start position of the write area within the 
    28  intermediate buffer taking into account seeks.
    29 
    30 @param The enumerator indicates we are setting a write buffer.
    31 @param aPtr The start point to set the limit to.
    32  */	
    33 inline void RFileBuf::SetLimit(TWrite,TUint8* aLimit)
    34 	{
    35 	iWLim=aLimit;
    36 	}
    37 /** Sets the read position of the stream to the specified offset within the file. 
    38 
    39 @param The enumerator indicates we are setting a read buffer.
    40 @param aPos The offset within the file to which the read stream position
    41 is set. By default this is zero.
    42 @see MStreamBuf::TRead */
    43 inline void RFileBuf::SetPos(TRead,TInt aPos)
    44 	{
    45 	iRPos=aPos;
    46 	}
    47 /** Sets the write position of the stream to the specified offset within the file.
    48 
    49 @param The enumerator indicates we are setting a write buffer.
    50 @param aPos The offset within the file to which the write stream position
    51 is set. By default this is zero.
    52 @see MStreamBuf::TWrite */
    53 inline void RFileBuf::SetPos(TWrite,TInt aPos)
    54 	{
    55 	iWPos=aPos;
    56 	}
    57 /** Returns the read stream position.
    58 
    59 @param The enumerator indicates we are setting a read buffer.
    60 @see MStreamBuf::TRead */
    61 inline TInt RFileBuf::Pos(TRead) const
    62 	{
    63 	return iRPos;
    64 	}
    65 /** Returns the write stream position.
    66 
    67 @param The enumerator indicates we are setting a write buffer.
    68 @see MStreamBuf::TWrite */
    69 inline TInt RFileBuf::Pos(TWrite) const
    70 	{
    71 	return iWPos;
    72 	}
    73 /** Moves the file offset to which the read stream position is set.
    74 
    75 @param The enumerator indicates we are setting a read buffer.
    76 @param The number of bytes to move by.
    77 @see MStreamBuf::TRead */
    78 inline TInt RFileBuf::MovePos(TRead,TInt anOffset)
    79 	{
    80 	return iRPos+=anOffset;
    81 	}
    82 /** Moves the file offset to which the write stream position is set.
    83 
    84 @param The enumerator indicates we are setting a write buffer.
    85 @param The number of bytes to move by.
    86 @see MStreamBuf::TWrite */
    87 inline TInt RFileBuf::MovePos(TWrite,TInt anOffset)
    88 	{
    89 	return iWPos+=anOffset;
    90 	}
    91 /** Returns the number of bytes that are/were in the read area of the 
    92  intermediate buffer yet to be passed to the user. 
    93 
    94 @param The enumerator indicates we are setting a read buffer.
    95 @see MStreamBuf::TRead */	
    96 inline TInt RFileBuf::Lag(TRead) const
    97 	{
    98 	return Ptr(ERead)-End(ERead);
    99 	}
   100 /** Returns the number of bytes that are/were in the write area of the 
   101  intermediate buffer yet to be written to the file.
   102 
   103 @param The enumerator indicates we are setting a write buffer.
   104 @see MStreamBuf::TWrite */	
   105 inline TInt RFileBuf::Lag(TWrite) const
   106 	{
   107 	return Ptr(EWrite)-iBase;
   108 	}
   109 /** Returns the number of bytes of outstanding data in the intermediate 
   110  buffer that is yet to be written, taking into account any changes brought
   111  about by seeks.
   112 
   113 @param The enumerator indicates we are using a write buffer.
   114 @see MStreamBuf::TWrite */	
   115 inline TInt RFileBuf::Span(TWrite) const
   116 	{
   117 	return Max(Ptr(EWrite),Limit(EWrite))-iBase;
   118 	}
   119 /** Gets the the read position within the stream taking 
   120  into account the data in the intermediate buffer not yet passed up
   121  to the user.
   122 
   123 @param The enumerator indicates we are using a read buffer.
   124 @see MStreamBuf::TRead */	
   125 inline TInt RFileBuf::Mark(TRead) const
   126 	{
   127 	return Pos(ERead)+Lag(ERead);
   128 	}
   129 /** Gets the write position within the stream taking 
   130  into account data in the intermediate buffer not yet written.
   131 
   132 @param The enumerator indicates we are using a write buffer.
   133 @see MStreamBuf::TWrite */	
   134 inline TInt RFileBuf::Mark(TWrite) const
   135 	{
   136 	return Pos(EWrite)+Lag(EWrite);
   137 	}
   138 /** Returns the possible end position of the write position in the stream 
   139  should the current data in the intermediate buffer be written.
   140 
   141 @param The enumerator indicates we are using a write buffer.
   142 @see MStreamBuf::TWrite */	
   143 inline TInt RFileBuf::Reach(TWrite) const
   144 	{
   145 	return Pos(EWrite)+Span(EWrite);
   146 	}
   147 /** Sets the start and end points of the read area within the intermediate buffer.
   148 
   149 @param The enumerator indicates we are setting a read buffer.
   150 @param aPtr The start point.
   151 @param anEnd The end point.
   152 @see MStreamBuf::TRead 
   153 @see TStreamBuf::SetBuf 
   154  */	
   155 inline void RFileBuf::SetBuf(TRead,TUint8* aPtr,TUint8* anEnd)
   156 	{
   157 	TStreamBuf::SetBuf(ERead,aPtr,anEnd);
   158 	}
   159 /** Sets the start and end points of the read area within the intermediate buffer.
   160 
   161 @param The enumerator indicates we are setting a write buffer.
   162 @param aPtr The start point.
   163 @param anEnd The end point.
   164 @see MStreamBuf::TWrite 
   165 @see TStreamBuf::SetBuf 
   166  */	
   167 inline void RFileBuf::SetBuf(TWrite,TUint8* aPtr,TUint8* anEnd)
   168 	{
   169 	TStreamBuf::SetBuf(EWrite,aPtr,anEnd);
   170 	SetLimit(EWrite,aPtr);
   171 	}
   172 /** Sets the start and end points of the read area within the intermediate buffer.
   173 
   174 @param The enumerator indicates we are setting a read buffer. ???
   175 @param aPtr The start point.
   176 @param anEnd The end point.
   177 @see MStreamBuf::TArea 
   178 @see TStreamBuf::SetBuf 
   179  */	
   180 inline void RFileBuf::SetBuf(TArea anArea,TUint8* aPtr,TUint8* anEnd)
   181 	{
   182 	TStreamBuf::SetBuf(anArea,aPtr,anEnd);
   183 	if (anArea&EWrite) {
   184 		SetLimit(EWrite,aPtr);
   185 	}
   186 	}
   187 
   188 /** Returns a pointer to the CPermanentStoreCoord object.
   189 
   190 @see CPermanentStoreCoord */	
   191 inline CPermanentStoreCoord& CPermanentFileStore::Coord() const
   192 	{
   193 	__ASSERT_DEBUG(iCoord!=NULL,User::Invariant());
   194 	return *iCoord;
   195 	}
   196