Update contrib.
1 // Copyright (c) 2005-2010 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.
17 #include "SqlAssert.h"
18 #include "IPCStream.h"
19 #include "SqlSrvResourceProfiler.h"
22 Reads data from the stream buffer and sends them to the client.
24 @param aMessage The client message.
26 @return The number of bytes sent.
28 Usage of the IPC call arguments:
30 Arg 1: [in] from which position to read
31 Arg 2: [in/out] IPC buffer
32 Arg 3: [in] max length of the requested data
34 TInt HIpcStream::ReadL(const RMessage2& aMessage)
36 TInt pos=aMessage.Int1();
38 iHost.SeekL(iHost.ERead,EStreamBeginning,pos);
40 TInt len=aMessage.Int3();
45 TUint8 buf[KIpcStreamSize];
46 TInt read=iHost.ReadL(buf,Min(tfr,KIpcStreamSize));
49 aMessage.WriteL(2,TPtrC8(buf,read),len-tfr);
50 SQLPROFILER_REPORT_IPC(ESqlIpcWrite, read);
54 if (read<KIpcStreamSize)
62 Reads data from the client message and stores the data in the stream buffer.
64 @param aMessage The client message.
66 @return The number of bytes read and stored in the stream buffer.
69 Usage of the IPC call arguments:
71 Arg 1: [in] from which position to write
72 Arg 2: [in/out] IPC buffer
74 void HIpcStream::WriteL(const RMessage2& aMessage)
76 TInt pos=aMessage.Int1();
78 iHost.SeekL(iHost.EWrite,EStreamBeginning,pos);
81 TBuf8<KIpcStreamSize> buf;
84 aMessage.ReadL(2,buf,offset);
85 TInt len=buf.Length();
86 SQLPROFILER_REPORT_IPC(ESqlIpcRead, len);
89 iHost.WriteL(buf.Ptr(),len);
91 if (len<KIpcStreamSize)
98 Destroys HIpcReadBuf object.
100 void HIpcReadBuf::DoRelease()