os/persistentdata/persistentstorage/sql/SRC/Server/IPC/IPCStream.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2005-2010 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
#include <s32buf.h>
sl@0
    17
#include "SqlAssert.h"
sl@0
    18
#include "IPCStream.h"
sl@0
    19
#include "SqlSrvResourceProfiler.h"
sl@0
    20
sl@0
    21
/**
sl@0
    22
Reads data from the stream buffer and sends them to the client.
sl@0
    23
sl@0
    24
@param aMessage The client message.
sl@0
    25
sl@0
    26
@return The number of bytes sent.
sl@0
    27
sl@0
    28
Usage of the IPC call arguments:
sl@0
    29
Arg 0:            not used
sl@0
    30
Arg 1: [in]       from which position to read
sl@0
    31
Arg 2: [in/out]   IPC buffer
sl@0
    32
Arg 3: [in]       max length of the requested data
sl@0
    33
*/
sl@0
    34
TInt HIpcStream::ReadL(const RMessage2& aMessage)
sl@0
    35
	{
sl@0
    36
	TInt pos=aMessage.Int1();
sl@0
    37
	if (pos!=iRPos)
sl@0
    38
		iHost.SeekL(iHost.ERead,EStreamBeginning,pos);
sl@0
    39
	iRPos=-1;
sl@0
    40
	TInt len=aMessage.Int3();
sl@0
    41
	pos+=len;
sl@0
    42
	TInt tfr=len;
sl@0
    43
	for (;;)
sl@0
    44
		{
sl@0
    45
		TUint8 buf[KIpcStreamSize];
sl@0
    46
		TInt read=iHost.ReadL(buf,Min(tfr,KIpcStreamSize));
sl@0
    47
		if (read==0)
sl@0
    48
			break;
sl@0
    49
		aMessage.WriteL(2,TPtrC8(buf,read),len-tfr);
sl@0
    50
		SQLPROFILER_REPORT_IPC(ESqlIpcWrite, read);
sl@0
    51
		tfr-=read;
sl@0
    52
		if (tfr==0)
sl@0
    53
			break;
sl@0
    54
		if (read<KIpcStreamSize)
sl@0
    55
			break;
sl@0
    56
		}
sl@0
    57
	iRPos=pos-tfr;
sl@0
    58
	return len-tfr;
sl@0
    59
	}
sl@0
    60
sl@0
    61
/**
sl@0
    62
Reads data from the client message and stores the data in the stream buffer.
sl@0
    63
sl@0
    64
@param aMessage The client message.
sl@0
    65
sl@0
    66
@return The number of bytes read and stored in the stream buffer.
sl@0
    67
sl@0
    68
sl@0
    69
Usage of the IPC call arguments:
sl@0
    70
Arg 0:            not used
sl@0
    71
Arg 1: [in]       from which position to write
sl@0
    72
Arg 2: [in/out]   IPC buffer
sl@0
    73
*/
sl@0
    74
void HIpcStream::WriteL(const RMessage2& aMessage)
sl@0
    75
	{
sl@0
    76
	TInt pos=aMessage.Int1();
sl@0
    77
	if (pos!=iWPos)
sl@0
    78
		iHost.SeekL(iHost.EWrite,EStreamBeginning,pos);
sl@0
    79
	iWPos=-1;
sl@0
    80
	TInt offset=0;
sl@0
    81
	TBuf8<KIpcStreamSize> buf;
sl@0
    82
	for (;;)
sl@0
    83
		{
sl@0
    84
		aMessage.ReadL(2,buf,offset);
sl@0
    85
		TInt len=buf.Length();
sl@0
    86
		SQLPROFILER_REPORT_IPC(ESqlIpcRead, len);
sl@0
    87
		if (len==0)
sl@0
    88
			break;
sl@0
    89
		iHost.WriteL(buf.Ptr(),len);
sl@0
    90
		offset+=len;
sl@0
    91
		if (len<KIpcStreamSize)
sl@0
    92
			break;
sl@0
    93
		}
sl@0
    94
	iWPos=pos+offset;
sl@0
    95
	}
sl@0
    96
sl@0
    97
/**
sl@0
    98
Destroys HIpcReadBuf object.
sl@0
    99
*/
sl@0
   100
void HIpcReadBuf::DoRelease()
sl@0
   101
	{
sl@0
   102
	delete this;
sl@0
   103
	}