os/persistentdata/persistentstorage/sql/SRC/Server/IPC/IPCStream.h
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-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
#ifndef __IPCSTREAM_H__
sl@0
    17
#define __IPCSTREAM_H__
sl@0
    18
sl@0
    19
#include <s32mem.h>
sl@0
    20
#include "IpcDefs.h"
sl@0
    21
sl@0
    22
/**
sl@0
    23
IPC, server-side class.
sl@0
    24
sl@0
    25
HIpcStream class is part of the server-side IPC framework, used for transferring large blocks of 
sl@0
    26
data to/from the client side.
sl@0
    27
sl@0
    28
@internalComponent
sl@0
    29
*/
sl@0
    30
NONSHARABLE_CLASS(HIpcStream)
sl@0
    31
	{
sl@0
    32
public:
sl@0
    33
	inline HIpcStream(MStreamBuf* aHost, TInt aReadPos);
sl@0
    34
	~HIpcStream();
sl@0
    35
sl@0
    36
	TInt ReadL(const RMessage2& aMessage);	
sl@0
    37
	void WriteL(const RMessage2& aMessage);	
sl@0
    38
	inline TInt SizeL();
sl@0
    39
	void SynchL();
sl@0
    40
	
sl@0
    41
private:
sl@0
    42
	MStreamBuf& 			iHost;
sl@0
    43
	TInt 					iRPos;
sl@0
    44
	TInt 					iWPos;
sl@0
    45
	
sl@0
    46
	};
sl@0
    47
sl@0
    48
/**
sl@0
    49
IPC, server-side class.
sl@0
    50
sl@0
    51
HIpcReadBuf class is part of the server-side IPC framework, used for transferring large blocks of 
sl@0
    52
data to the client side.
sl@0
    53
sl@0
    54
The difference between HIpcReadBuf and HIpcBufBuf is that HIpcReadBuf does not allocate memory for
sl@0
    55
the data. It keeps just a pointer to the data which needs to be sent to the client side.
sl@0
    56
sl@0
    57
@see HIpcStream
sl@0
    58
sl@0
    59
@internalComponent
sl@0
    60
*/
sl@0
    61
NONSHARABLE_CLASS(HIpcReadBuf) : public TMemBuf
sl@0
    62
	{
sl@0
    63
public:
sl@0
    64
	inline static HIpcReadBuf* NewL(const TDesC8& aDes);
sl@0
    65
	
sl@0
    66
private:
sl@0
    67
	inline HIpcReadBuf(const TDesC8& aDes);
sl@0
    68
	virtual void DoRelease();
sl@0
    69
	
sl@0
    70
	};
sl@0
    71
sl@0
    72
#include "IPCStream.inl"
sl@0
    73
sl@0
    74
#endif//__IPCSTREAM_H__