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 |
// //////////////////////// HIpcStream ///////////////////////////////////////
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
|
sl@0
|
20 |
Initializes HIpcStream data members.
|
sl@0
|
21 |
|
sl@0
|
22 |
@param aHost A pointer to the buffer with the stream data
|
sl@0
|
23 |
@param aReadPos The position data has to be read from
|
sl@0
|
24 |
|
sl@0
|
25 |
@see HIpcStream::SynchL()
|
sl@0
|
26 |
|
sl@0
|
27 |
@panic SqlDb 7 In _DEBUG mode. aHost is NULL.
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
inline HIpcStream::HIpcStream(MStreamBuf* aHost, TInt aReadPos):
|
sl@0
|
30 |
iHost(*aHost),
|
sl@0
|
31 |
iRPos(aReadPos),
|
sl@0
|
32 |
iWPos(0)
|
sl@0
|
33 |
{
|
sl@0
|
34 |
__ASSERT_DEBUG(aHost != NULL, __SQLPANIC(ESqlPanicInternalError));
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
Relases the stream buffer.
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
inline HIpcStream::~HIpcStream()
|
sl@0
|
41 |
{
|
sl@0
|
42 |
iHost.Release();
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
/**
|
sl@0
|
46 |
@return The stream data size.
|
sl@0
|
47 |
*/
|
sl@0
|
48 |
inline TInt HIpcStream::SizeL()
|
sl@0
|
49 |
{
|
sl@0
|
50 |
return iHost.SizeL();
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
Synchronizes the stream data buffer with the stream.
|
sl@0
|
55 |
|
sl@0
|
56 |
@see HIpcStream::HIpcStream()
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
inline void HIpcStream::SynchL()
|
sl@0
|
59 |
{
|
sl@0
|
60 |
iHost.SynchL();
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
|
sl@0
|
64 |
//////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
65 |
/////////////////////////// HIpcReadBuf //////////////////////////////////////
|
sl@0
|
66 |
//////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
67 |
|
sl@0
|
68 |
/**
|
sl@0
|
69 |
Initializes HIpcReadBuf data members.
|
sl@0
|
70 |
|
sl@0
|
71 |
@param aDes Points to the data which will be accessed via HIpcReadBuf instance.
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
inline HIpcReadBuf::HIpcReadBuf(const TDesC8& aDes)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
TUint8* ptr = const_cast <TUint8*> (aDes.Ptr());
|
sl@0
|
76 |
Set(ptr, ptr + aDes.Length(), MStreamBuf::ERead);
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
/**
|
sl@0
|
80 |
Creates an instance of HIpcReadBuf class.
|
sl@0
|
81 |
|
sl@0
|
82 |
@param aDes Points to the data which will be accessed via HIpcReadBuf instance.
|
sl@0
|
83 |
|
sl@0
|
84 |
@return A pointer to the created HIpcReadBuf instance.
|
sl@0
|
85 |
|
sl@0
|
86 |
@leave KErrNoMemory, an out of memory condition has occured;
|
sl@0
|
87 |
*/
|
sl@0
|
88 |
inline HIpcReadBuf* HIpcReadBuf::NewL(const TDesC8& aDes)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
return new (ELeave) HIpcReadBuf(aDes);
|
sl@0
|
91 |
}
|