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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // DBMS server stream buffer classes
22 HDbsBuf* HDbsBuf::NewLC(const RDbsObject& aObject,TDbsFunction aFunction,TIpcArgs& aArgs)
24 HDbsBuf* self=new(ELeave) HDbsBuf;
26 self->ConstructL(aObject,aFunction,aArgs);
30 HDbsBuf* HDbsBuf::NewL(const RDbsObject& aObject,TDbsFunction aFunction,TIpcArgs& aArgs)
32 HDbsBuf* self=NewLC(aObject,aFunction,aArgs);
37 void HDbsBuf::ConstructL(const RDbsObject& aObject,TDbsFunction aFunction,TIpcArgs& aArgs)
39 TPckg<TDbsStreamBuf> pckg(iBuf);
41 iIpc.OpenL(aObject,aFunction,aArgs);
42 TUint8* base=iBuf.iData;
43 // if reading we already have one buffer-full of data
44 TInt avail=Max(0,Min(iBuf.iExt,KDbsStreamBufSize));
45 SetBuf(ERead,base,base+avail);
47 SetBuf(EWrite,base,base);
51 TInt HDbsBuf::UnderflowL(TInt)
53 // Fill the buffer's read area.
56 // when handle is null there is no data to read from server
60 __ASSERT(Avail(ERead)==0);
61 TUint8* base=iBuf.iData;
62 IpcWriteL(base,Lag(EWrite));
63 SetBuf(EWrite,base,base);
65 TInt len=IpcReadL(base,iBuf.ESize);
66 SetBuf(ERead,base,base+len);
70 void HDbsBuf::OverflowL()
72 // Set up the buffer's write area.
75 __ASSERT(Avail(EWrite)==0);
76 TUint8* base=iBuf.iData;
77 MovePos(ERead,Lag(ERead));
78 SetBuf(ERead,base,base);
80 IpcWriteL(base,Lag(EWrite));
81 SetBuf(EWrite,base,base+iBuf.ESize);
84 void HDbsBuf::DoRelease()
89 void HDbsBuf::DoSynchL()
91 // Synchronise this buffer with its file, giving up on outstanding writes in case of failure.
94 TUint8* base=iBuf.iData;
95 MovePos(ERead,Lag(ERead));
97 SetBuf(ERead|EWrite,base,base);
100 iIpc.SendReceiveL(EDbsStreamSynch);
103 TInt HDbsBuf::DoReadL(TAny* aPtr,TInt aMaxLength)
105 // Read direct from ipc if asked to transfer more than a bufferful.
108 __ASSERT(aMaxLength>=0);
109 __ASSERT(aMaxLength>0);
110 TInt avail=Avail(ERead);
111 __ASSERT(avail>=0&&Avail(EWrite)>=0);
114 TInt len=Min(aMaxLength,avail);
115 TUint8* ptr=Ptr(ERead);
116 aPtr=Mem::Copy(aPtr,ptr,len);
117 SetPtr(ERead,ptr+len);
120 return len; // that's it
122 __ASSERT(Avail(ERead)==0);
123 if (aMaxLength<iBuf.ESize)
124 return avail+TStreamBuf::DoReadL(aPtr,aMaxLength);
126 // when handle is null there is no more data to read from server
130 TUint8* base=iBuf.iData;
131 IpcWriteL(base,Lag(EWrite));
132 SetBuf(ERead|EWrite,base,base);
133 return avail+IpcReadL(aPtr,aMaxLength);
136 void HDbsBuf::DoWriteL(const TAny* aPtr,TInt aLength)
138 // Write direct to ipc if asked to transfer more than a bufferful.
141 __ASSERT(aLength>=0);
143 TInt avail=Avail(EWrite);
144 __ASSERT(Avail(ERead)>=0&&avail>=0);
147 TInt len=Min(aLength,avail);
148 SetPtr(EWrite,Mem::Copy(Ptr(EWrite),aPtr,len));
153 aPtr=(TUint8*)aPtr+len;
155 __ASSERT(Avail(EWrite)==0);
156 if (aLength<iBuf.ESize)
157 TStreamBuf::DoWriteL(aPtr,aLength);
160 TUint8* base=iBuf.iData;
161 IpcWriteL(base,Lag(EWrite));
162 MovePos(ERead,Lag(ERead));
163 SetBuf(ERead|EWrite,base,base);
164 IpcWriteL(aPtr,aLength);
168 TStreamPos HDbsBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
170 // Position the mark(s) indicated by aMark at anOffset from aLocation.
173 TUint8* base=iBuf.iData;
178 case EStreamBeginning:
184 anOffset+=Mark(ERead);
187 anOffset+=Mark(EWrite);
190 Panic(EDbsStreamMarkInvalid);
198 Panic(EDbsStreamLocationInvalid);
207 else if (anOffset>end)
213 __ASSERT_ALWAYS(!(aMark&~(ERead|EWrite)),Panic(EDbsStreamMarkInvalid));
216 TInt lag=anOffset-Pos(ERead);
217 if (lag>=base-End(ERead)&&lag<=0)
218 SetPtr(ERead,End(ERead)+lag);
221 SetPos(ERead,anOffset);
222 SetBuf(ERead,base,base);
225 if (aMark&EWrite&&anOffset!=Mark(EWrite))
227 IpcWriteL(base,Lag(EWrite));
228 SetPos(EWrite,anOffset);
229 SetBuf(EWrite,base,base);
232 return TStreamPos(anOffset);
235 TInt HDbsBuf::IpcReadL(TAny* aPtr,TInt aMaxLength)
237 // Read from the server at the current read position.
240 __ASSERT(aMaxLength>=0);
244 TPtr8 des((TUint8*)aPtr,aMaxLength);
247 TInt len=iIpc.SendReceiveL(EDbsStreamRead,TIpcArgs(pos,&des,aMaxLength));
250 iBuf.iExt=pos; // end-of-file encountered
255 void HDbsBuf::IpcWriteL(const TAny* aPtr,TInt aLength)
257 // Write to the server at the current write position.
260 __ASSERT(aLength>=0);
264 TPtrC8 ptr((TUint8*)aPtr,aLength);
267 TInt pos=Pos(EWrite);
268 iIpc.SendReceiveL(EDbsStreamWrite,TIpcArgs(pos,&ptr));
277 // Determine the end of the stream
282 iBuf.iExt=ext=iIpc.SendReceiveL(EDbsStreamSize);
283 return Max(ext,Mark(EWrite));
288 inline HDbsReadBuf::HDbsReadBuf(const TDesC8& aDes)
290 TUint8* ptr=CONST_CAST(TUint8*,aDes.Ptr());
291 Set(ptr,ptr+aDes.Length(),ERead);
294 HDbsReadBuf* HDbsReadBuf::NewL(const TDesC8& aDes)
296 return new(ELeave) HDbsReadBuf(aDes);
299 void HDbsReadBuf::DoRelease()
305 TInt HDbsStream::ReadL(const RMessage2& aMessage)
307 TInt pos=aMessage.Int0();
309 iHost.SeekL(iHost.ERead,EStreamBeginning,pos);
311 TInt len=aMessage.Int2();
316 TUint8 buf[KDbsStreamIoSize];
317 TInt read=iHost.ReadL(buf,Min(tfr,KDbsStreamIoSize));
320 aMessage.WriteL(1,TPtrC8(buf,read),len-tfr);
324 if (read<KDbsStreamIoSize)
331 void HDbsStream::WriteL(const RMessage2& aMessage)
333 TInt pos=aMessage.Int0();
335 iHost.SeekL(iHost.EWrite,EStreamBeginning,pos);
338 TBuf8<KDbsStreamIoSize> buf;
341 aMessage.ReadL(1,buf,offset);
342 TInt len=buf.Length();
345 iHost.WriteL(buf.Ptr(),len);
347 if (len<KDbsStreamIoSize)
355 void HBufBuf::DoRelease()
360 HBufBuf* HBufBuf::NewLC()
362 HBufBuf* self=new(ELeave) HBufBuf;
364 self->iBuf=CBufSeg::NewL(EGranularity);
365 self->Set(*self->iBuf,0,ERead|EWrite);