First public contribution.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 TInt TPtrInput::PushL(const TAny* aPtr,TInt aMaxLength)
20 // Accept the data, copying it to the buffer pointed to.
23 __ASSERT_DEBUG(aMaxLength>=0,Panic(EStreamPushLengthNegative));
24 __ASSERT_DEBUG(aMaxLength>0,Panic(EStreamPushNoTransfer));
25 iPtr=Mem::Copy(iPtr,aPtr,aMaxLength);
29 TStreamTransfer TPtrInput::ReadFromL(MStreamBuf&,TStreamTransfer aTransfer)
31 // This input is passive.
34 __ASSERT_DEBUG(aTransfer>0,Panic(EStreamReadNoTransfer));
38 TInt TPtrOutput::PullL(TAny* aPtr,TInt aMaxLength)
40 // Produce data from the buffer pointed to.
43 __ASSERT_DEBUG(aMaxLength>=0,Panic(EStreamPullLengthNegative));
44 __ASSERT_DEBUG(aMaxLength>0,Panic(EStreamPullNoTransfer));
45 Mem::Copy(aPtr,iPtr,aMaxLength);
50 TStreamTransfer TPtrOutput::WriteToL(MStreamBuf&,TStreamTransfer aTransfer)
52 // This output is passive.
55 __ASSERT_DEBUG(aTransfer>0,Panic(EStreamWriteNoTransfer));
59 TInt TNullInput::PushL(const TAny*,TInt aMaxLength)
61 // Accept and discard the data.
64 __ASSERT_DEBUG(aMaxLength>=0,Panic(EStreamPushLengthNegative));
65 __ASSERT_DEBUG(aMaxLength>0,Panic(EStreamPushNoTransfer));
69 TStreamTransfer TNullInput::ReadFromL(MStreamBuf& aSource,TStreamTransfer aTransfer)
71 // Read and discard data from aSource using a temporary buffer.
74 __ASSERT_DEBUG(aTransfer>0,Panic(EStreamReadNoTransfer));
77 TUint8 buf[KDefaultIoBufSize];
78 TInt len=aSource.ReadL(buf,aTransfer[sizeof(buf)]);
79 __ASSERT_DEBUG(len>=0&&len<=aTransfer[sizeof(buf)],Panic(EStreamReadInBreach));
84 } while (aTransfer>0);
88 TInt TSourceOutput::PullL(TAny* aPtr,TInt aMaxLength)
90 // Pull up to aMaxLength bytes of data from this output's source.
93 __ASSERT_DEBUG(aMaxLength>=0,Panic(EStreamPullLengthNegative));
94 __ASSERT_DEBUG(aMaxLength>0,Panic(EStreamPullNoTransfer));
95 __ASSERT_DEBUG(iSrc!=NULL,User::Invariant());
97 TPtrInput input(aPtr);
98 TInt len=iSrc->ReadL(input,aMaxLength);
99 __ASSERT_DEBUG(len>=0&&len<=aMaxLength,Panic(EStreamReadInBreach));
103 TStreamTransfer TSourceOutput::WriteToL(MStreamBuf& aSink,TStreamTransfer aTransfer)
105 // Write data from this output's source to aSink using a temporary buffer.
108 __ASSERT_DEBUG(aTransfer>0,Panic(EStreamWriteNoTransfer));
109 __ASSERT_DEBUG(iSrc!=NULL,User::Invariant());
112 TUint8 buf[KDefaultIoBufSize];
113 TInt len=iSrc->ReadL(buf,aTransfer[sizeof(buf)]);
114 __ASSERT_DEBUG(len>=0&&len<=aTransfer[sizeof(buf)],Panic(EStreamReadInBreach));
118 aSink.WriteL(buf,len);
120 } while (aTransfer>0);
124 TInt TFilterInput::PushL(const TAny* aPtr,TInt aMaxLength)
126 // Put up to aMaxLength bytes of data through the filter.
129 __ASSERT_DEBUG(aMaxLength>=0,Panic(EStreamPushLengthNegative));
130 __ASSERT_DEBUG(aMaxLength>0,Panic(EStreamPushNoTransfer));
131 __ASSERT_DEBUG(!Eof(),Panic(EStreamReadInBreach));
132 __ASSERT_DEBUG(iFltr!=NULL&&iLeft>=0,User::Invariant());
136 const TUint8* from=(TUint8*)aPtr;
137 TInt len=iFltr->FilterL(iPtr,iLeft,from,from+aMaxLength);
138 __ASSERT_DEBUG(len>=0&&len<=iLeft,Panic(EStreamFilterInBreach));
139 __ASSERT_DEBUG(from>=(TUint8*)aPtr&&from<=(TUint8*)aPtr+aMaxLength,Panic(EStreamFilterInBreach));
140 __ASSERT_DEBUG(len==iLeft||from==(TUint8*)aPtr+aMaxLength,Panic(EStreamFilterInBreach));
143 return from-(TUint8*)aPtr;
146 TStreamTransfer TFilterInput::ReadFromL(MStreamBuf& aSource,TStreamTransfer aTransfer)
148 // Put data read from aSource through the filter using a temporary buffer.
151 __ASSERT_DEBUG(aTransfer>0,Panic(EStreamReadNoTransfer));
152 __ASSERT_DEBUG(iFltr!=NULL&&iLeft>=0,User::Invariant());
156 TUint8 buf[KFilterIoBufSize];
157 TInt cap=aTransfer[Min(iFltr->Capacity(iLeft),sizeof(buf))];
158 const TUint8* end=buf+(cap==0?0:aSource.ReadL(buf,cap));
159 __ASSERT_DEBUG(end>=buf&&end<=buf+cap&&(!Eof()||end==buf),Panic(EStreamReadInBreach));
160 const TUint8* from=buf;
161 TInt len=iFltr->FilterL(iPtr,iLeft,from,end);
162 __ASSERT_DEBUG(len>=0&&len<=iLeft,Panic(EStreamFilterInBreach));
163 __ASSERT_DEBUG(from==end,Panic(EStreamFilterInBreach));
164 if (end==buf && len==0) // no input && no output, => end of stream
169 return aTransfer-(from-buf);
172 TInt TFilterOutput::PullL(TAny* aPtr,TInt aMaxLength)
174 // Pull up to aMaxLength bytes of data through the filter.
177 __ASSERT_DEBUG(aMaxLength>=0,Panic(EStreamPullLengthNegative));
178 __ASSERT_DEBUG(aMaxLength>0,Panic(EStreamPullNoTransfer));
179 __ASSERT_DEBUG(iFltr!=NULL&&iFrom!=NULL&&iFrom<=iEnd,User::Invariant());
183 __DEBUG(const TUint8* from=iFrom);
184 TInt len=iFltr->FilterL(aPtr,aMaxLength,iFrom,iEnd);
185 __ASSERT_DEBUG(len>=0&&len<=aMaxLength,Panic(EStreamFilterInBreach));
186 __ASSERT_DEBUG(iFrom>=from&&iFrom<=iEnd,Panic(EStreamFilterInBreach));
187 __ASSERT_DEBUG(len==aMaxLength||iFrom==iEnd,Panic(EStreamFilterInBreach));
191 TStreamTransfer TFilterOutput::WriteToL(MStreamBuf& aSink,TStreamTransfer aTransfer)
193 // Write data put through the filter to aSink using a temporary buffer.
196 __ASSERT_DEBUG(aTransfer>0,Panic(EStreamWriteNoTransfer));
197 __ASSERT_DEBUG(iFltr!=NULL&&iFrom!=NULL&&iFrom<=iEnd,User::Invariant());
201 TUint8 buf[KFilterIoBufSize];
202 __DEBUG(const TUint8* from=iFrom);
203 TInt len=iFltr->FilterL(buf,aTransfer[sizeof(buf)],iFrom,iEnd);
204 __ASSERT_DEBUG(len>=0&&len<=aTransfer[sizeof(buf)],Panic(EStreamFilterInBreach));
205 __ASSERT_DEBUG(iFrom>=from&&iFrom<=iEnd,Panic(EStreamFilterInBreach));
206 __ASSERT_DEBUG(len==aTransfer[sizeof(buf)]||iFrom==iEnd,Panic(EStreamFilterInBreach));
208 aSink.WriteL(buf,len);
209 return aTransfer-len;
212 TDelimitedInput8::TDelimitedInput8(TUint8* aPtr,TInt aLength,TChar aDelim)
213 : iPtr(aPtr),iLeft(aLength),iDelim(aDelim)
216 TInt TDelimitedInput8::PushL(const TAny* aPtr,TInt aMaxLength)
218 // Push 8-bit text into this input buffer up to the first occurrence of the delimiter.
221 TInt len=Min(aMaxLength,iLeft);
222 TInt d=TPtrC8((TUint8*)aPtr,len).Locate(iDelim)+1;
230 iPtr=(TUint8*)Mem::Copy(iPtr,aPtr,d);
234 TStreamTransfer TDelimitedInput8::ReadFromL(MStreamBuf& aSource,TStreamTransfer aTransfer)
236 // Read a single 8-bit text character from aSource, testing it against the delimiter.
242 RReadStream stream(&aSource);
243 TUint8 c=stream.ReadUint8L();
245 if (c==(TUint8)iDelim)
249 return aTransfer-sizeof(c);
252 TDelimitedInput16::TDelimitedInput16(TUint16* aPtr,TInt aLength,TChar aDelim)
253 : iPtr(aPtr),iLeft(aLength),iDelim(aDelim)
256 TInt TDelimitedInput16::PushL(const TAny* aPtr,TInt aMaxLength)
258 // Push 16-bit text into this input buffer up to the first occurrence of the delimiter.
259 // We cannot use TPtrC16 here as the data may not be half-word aligned
262 TInt len=Min(aMaxLength>>1,iLeft);
264 TInt lbyte=iDelim&0xffu;
265 TInt hbyte=iDelim>>8;
266 const TUint8* p=static_cast<const TUint8*>(aPtr);
270 if (p[d<<1]==lbyte && p[(d<<1)+1]==hbyte) // platform dependency
272 ++d; // include the delimiter
273 iLeft=0; // found a match
279 iPtr=(TUint16*)Mem::Copy(iPtr,aPtr,d<<1); // platform dependency
283 TStreamTransfer TDelimitedInput16::ReadFromL(MStreamBuf& aSource,TStreamTransfer aTransfer)
285 // Read a single 16-bit text character from aSource, testing it against the delimiter.
291 RReadStream stream(&aSource);
292 TUint16 c=stream.ReadUint16L();
295 if (c==(TUint16)iDelim)
299 return aTransfer-sizeof(c);