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 "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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
Returns the start position of the write area within the
|
sl@0
|
18 |
intermediate buffer taking into account seeks.
|
sl@0
|
19 |
|
sl@0
|
20 |
@param The enumerator indicates we are setting a write buffer.
|
sl@0
|
21 |
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
inline TUint8* RFileBuf::Limit(TWrite) const
|
sl@0
|
24 |
{
|
sl@0
|
25 |
return iWLim;
|
sl@0
|
26 |
}
|
sl@0
|
27 |
/** Sets the start position of the write area within the
|
sl@0
|
28 |
intermediate buffer taking into account seeks.
|
sl@0
|
29 |
|
sl@0
|
30 |
@param The enumerator indicates we are setting a write buffer.
|
sl@0
|
31 |
@param aPtr The start point to set the limit to.
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
inline void RFileBuf::SetLimit(TWrite,TUint8* aLimit)
|
sl@0
|
34 |
{
|
sl@0
|
35 |
iWLim=aLimit;
|
sl@0
|
36 |
}
|
sl@0
|
37 |
/** Sets the read position of the stream to the specified offset within the file.
|
sl@0
|
38 |
|
sl@0
|
39 |
@param The enumerator indicates we are setting a read buffer.
|
sl@0
|
40 |
@param aPos The offset within the file to which the read stream position
|
sl@0
|
41 |
is set. By default this is zero.
|
sl@0
|
42 |
@see MStreamBuf::TRead */
|
sl@0
|
43 |
inline void RFileBuf::SetPos(TRead,TInt aPos)
|
sl@0
|
44 |
{
|
sl@0
|
45 |
iRPos=aPos;
|
sl@0
|
46 |
}
|
sl@0
|
47 |
/** Sets the write position of the stream to the specified offset within the file.
|
sl@0
|
48 |
|
sl@0
|
49 |
@param The enumerator indicates we are setting a write buffer.
|
sl@0
|
50 |
@param aPos The offset within the file to which the write stream position
|
sl@0
|
51 |
is set. By default this is zero.
|
sl@0
|
52 |
@see MStreamBuf::TWrite */
|
sl@0
|
53 |
inline void RFileBuf::SetPos(TWrite,TInt aPos)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
iWPos=aPos;
|
sl@0
|
56 |
}
|
sl@0
|
57 |
/** Returns the read stream position.
|
sl@0
|
58 |
|
sl@0
|
59 |
@param The enumerator indicates we are setting a read buffer.
|
sl@0
|
60 |
@see MStreamBuf::TRead */
|
sl@0
|
61 |
inline TInt RFileBuf::Pos(TRead) const
|
sl@0
|
62 |
{
|
sl@0
|
63 |
return iRPos;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
/** Returns the write stream position.
|
sl@0
|
66 |
|
sl@0
|
67 |
@param The enumerator indicates we are setting a write buffer.
|
sl@0
|
68 |
@see MStreamBuf::TWrite */
|
sl@0
|
69 |
inline TInt RFileBuf::Pos(TWrite) const
|
sl@0
|
70 |
{
|
sl@0
|
71 |
return iWPos;
|
sl@0
|
72 |
}
|
sl@0
|
73 |
/** Moves the file offset to which the read stream position is set.
|
sl@0
|
74 |
|
sl@0
|
75 |
@param The enumerator indicates we are setting a read buffer.
|
sl@0
|
76 |
@param The number of bytes to move by.
|
sl@0
|
77 |
@see MStreamBuf::TRead */
|
sl@0
|
78 |
inline TInt RFileBuf::MovePos(TRead,TInt anOffset)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
return iRPos+=anOffset;
|
sl@0
|
81 |
}
|
sl@0
|
82 |
/** Moves the file offset to which the write stream position is set.
|
sl@0
|
83 |
|
sl@0
|
84 |
@param The enumerator indicates we are setting a write buffer.
|
sl@0
|
85 |
@param The number of bytes to move by.
|
sl@0
|
86 |
@see MStreamBuf::TWrite */
|
sl@0
|
87 |
inline TInt RFileBuf::MovePos(TWrite,TInt anOffset)
|
sl@0
|
88 |
{
|
sl@0
|
89 |
return iWPos+=anOffset;
|
sl@0
|
90 |
}
|
sl@0
|
91 |
/** Returns the number of bytes that are/were in the read area of the
|
sl@0
|
92 |
intermediate buffer yet to be passed to the user.
|
sl@0
|
93 |
|
sl@0
|
94 |
@param The enumerator indicates we are setting a read buffer.
|
sl@0
|
95 |
@see MStreamBuf::TRead */
|
sl@0
|
96 |
inline TInt RFileBuf::Lag(TRead) const
|
sl@0
|
97 |
{
|
sl@0
|
98 |
return Ptr(ERead)-End(ERead);
|
sl@0
|
99 |
}
|
sl@0
|
100 |
/** Returns the number of bytes that are/were in the write area of the
|
sl@0
|
101 |
intermediate buffer yet to be written to the file.
|
sl@0
|
102 |
|
sl@0
|
103 |
@param The enumerator indicates we are setting a write buffer.
|
sl@0
|
104 |
@see MStreamBuf::TWrite */
|
sl@0
|
105 |
inline TInt RFileBuf::Lag(TWrite) const
|
sl@0
|
106 |
{
|
sl@0
|
107 |
return Ptr(EWrite)-iBase;
|
sl@0
|
108 |
}
|
sl@0
|
109 |
/** Returns the number of bytes of outstanding data in the intermediate
|
sl@0
|
110 |
buffer that is yet to be written, taking into account any changes brought
|
sl@0
|
111 |
about by seeks.
|
sl@0
|
112 |
|
sl@0
|
113 |
@param The enumerator indicates we are using a write buffer.
|
sl@0
|
114 |
@see MStreamBuf::TWrite */
|
sl@0
|
115 |
inline TInt RFileBuf::Span(TWrite) const
|
sl@0
|
116 |
{
|
sl@0
|
117 |
return Max(Ptr(EWrite),Limit(EWrite))-iBase;
|
sl@0
|
118 |
}
|
sl@0
|
119 |
/** Gets the the read position within the stream taking
|
sl@0
|
120 |
into account the data in the intermediate buffer not yet passed up
|
sl@0
|
121 |
to the user.
|
sl@0
|
122 |
|
sl@0
|
123 |
@param The enumerator indicates we are using a read buffer.
|
sl@0
|
124 |
@see MStreamBuf::TRead */
|
sl@0
|
125 |
inline TInt RFileBuf::Mark(TRead) const
|
sl@0
|
126 |
{
|
sl@0
|
127 |
return Pos(ERead)+Lag(ERead);
|
sl@0
|
128 |
}
|
sl@0
|
129 |
/** Gets the write position within the stream taking
|
sl@0
|
130 |
into account data in the intermediate buffer not yet written.
|
sl@0
|
131 |
|
sl@0
|
132 |
@param The enumerator indicates we are using a write buffer.
|
sl@0
|
133 |
@see MStreamBuf::TWrite */
|
sl@0
|
134 |
inline TInt RFileBuf::Mark(TWrite) const
|
sl@0
|
135 |
{
|
sl@0
|
136 |
return Pos(EWrite)+Lag(EWrite);
|
sl@0
|
137 |
}
|
sl@0
|
138 |
/** Returns the possible end position of the write position in the stream
|
sl@0
|
139 |
should the current data in the intermediate buffer be written.
|
sl@0
|
140 |
|
sl@0
|
141 |
@param The enumerator indicates we are using a write buffer.
|
sl@0
|
142 |
@see MStreamBuf::TWrite */
|
sl@0
|
143 |
inline TInt RFileBuf::Reach(TWrite) const
|
sl@0
|
144 |
{
|
sl@0
|
145 |
return Pos(EWrite)+Span(EWrite);
|
sl@0
|
146 |
}
|
sl@0
|
147 |
/** Sets the start and end points of the read area within the intermediate buffer.
|
sl@0
|
148 |
|
sl@0
|
149 |
@param The enumerator indicates we are setting a read buffer.
|
sl@0
|
150 |
@param aPtr The start point.
|
sl@0
|
151 |
@param anEnd The end point.
|
sl@0
|
152 |
@see MStreamBuf::TRead
|
sl@0
|
153 |
@see TStreamBuf::SetBuf
|
sl@0
|
154 |
*/
|
sl@0
|
155 |
inline void RFileBuf::SetBuf(TRead,TUint8* aPtr,TUint8* anEnd)
|
sl@0
|
156 |
{
|
sl@0
|
157 |
TStreamBuf::SetBuf(ERead,aPtr,anEnd);
|
sl@0
|
158 |
}
|
sl@0
|
159 |
/** Sets the start and end points of the read area within the intermediate buffer.
|
sl@0
|
160 |
|
sl@0
|
161 |
@param The enumerator indicates we are setting a write buffer.
|
sl@0
|
162 |
@param aPtr The start point.
|
sl@0
|
163 |
@param anEnd The end point.
|
sl@0
|
164 |
@see MStreamBuf::TWrite
|
sl@0
|
165 |
@see TStreamBuf::SetBuf
|
sl@0
|
166 |
*/
|
sl@0
|
167 |
inline void RFileBuf::SetBuf(TWrite,TUint8* aPtr,TUint8* anEnd)
|
sl@0
|
168 |
{
|
sl@0
|
169 |
TStreamBuf::SetBuf(EWrite,aPtr,anEnd);
|
sl@0
|
170 |
SetLimit(EWrite,aPtr);
|
sl@0
|
171 |
}
|
sl@0
|
172 |
/** Sets the start and end points of the read area within the intermediate buffer.
|
sl@0
|
173 |
|
sl@0
|
174 |
@param The enumerator indicates we are setting a read buffer. ???
|
sl@0
|
175 |
@param aPtr The start point.
|
sl@0
|
176 |
@param anEnd The end point.
|
sl@0
|
177 |
@see MStreamBuf::TArea
|
sl@0
|
178 |
@see TStreamBuf::SetBuf
|
sl@0
|
179 |
*/
|
sl@0
|
180 |
inline void RFileBuf::SetBuf(TArea anArea,TUint8* aPtr,TUint8* anEnd)
|
sl@0
|
181 |
{
|
sl@0
|
182 |
TStreamBuf::SetBuf(anArea,aPtr,anEnd);
|
sl@0
|
183 |
if (anArea&EWrite) {
|
sl@0
|
184 |
SetLimit(EWrite,aPtr);
|
sl@0
|
185 |
}
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|
sl@0
|
188 |
/** Returns a pointer to the CPermanentStoreCoord object.
|
sl@0
|
189 |
|
sl@0
|
190 |
@see CPermanentStoreCoord */
|
sl@0
|
191 |
inline CPermanentStoreCoord& CPermanentFileStore::Coord() const
|
sl@0
|
192 |
{
|
sl@0
|
193 |
__ASSERT_DEBUG(iCoord!=NULL,User::Invariant());
|
sl@0
|
194 |
return *iCoord;
|
sl@0
|
195 |
}
|
sl@0
|
196 |
|