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 __IPCBUF_H__
|
sl@0
|
17 |
#define __IPCBUF_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <s32buf.h>
|
sl@0
|
20 |
#include "IpcDefs.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
//Forward declarations
|
sl@0
|
23 |
class TIpcArgs;
|
sl@0
|
24 |
class RSqlDbSession;
|
sl@0
|
25 |
|
sl@0
|
26 |
/**
|
sl@0
|
27 |
HIpcBuf class manages the "client to server" transfer of large data blocks.
|
sl@0
|
28 |
|
sl@0
|
29 |
It caches the data to be sent/retrieved on the client side and sychronises the content of the client-side cache
|
sl@0
|
30 |
with the content of a similar server-side cache, sending appropriate read/write/sync commands to the server.
|
sl@0
|
31 |
|
sl@0
|
32 |
An instance of TIpcStreamBuf class is uased as a client-side cache.
|
sl@0
|
33 |
|
sl@0
|
34 |
The following code fragment shows how the class can be used to send to the server large blocks of data:
|
sl@0
|
35 |
|
sl@0
|
36 |
@code
|
sl@0
|
37 |
//Step 1: Create the HIpcBuf instance.
|
sl@0
|
38 |
HIpcBuf* ipcBuf = HIpcBuf::NewLC(params, function, args);
|
sl@0
|
39 |
|
sl@0
|
40 |
//Step 2: Create a stream instance. It will be used for sending the data to the server. All details about
|
sl@0
|
41 |
// the data transfer will be performed by the ipcBuf object.
|
sl@0
|
42 |
RWriteStream out(ipcBuf);
|
sl@0
|
43 |
|
sl@0
|
44 |
//Step 3: "TheObject" is some large data object which has to be sent to the server. Let's assume
|
sl@0
|
45 |
// "TheObject" has ExternalizeL() function which can be used to externalize the object into an output stream.
|
sl@0
|
46 |
TheObject.ExternalizeL(out);
|
sl@0
|
47 |
|
sl@0
|
48 |
//Step 4: Commit the output stream. After the commit command the server will have all the data transferred.
|
sl@0
|
49 |
out.CommitL();
|
sl@0
|
50 |
|
sl@0
|
51 |
//Step 5: Cleanup.
|
sl@0
|
52 |
CleanupStack::PopAndDestroy(ipcBuf);
|
sl@0
|
53 |
@endcode
|
sl@0
|
54 |
|
sl@0
|
55 |
@see RSqlDbSession;
|
sl@0
|
56 |
@see TIpcStreamBuf
|
sl@0
|
57 |
@see RSessionBase
|
sl@0
|
58 |
|
sl@0
|
59 |
@internalComponent
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
NONSHARABLE_CLASS(HIpcBuf) : public TStreamBuf
|
sl@0
|
62 |
{
|
sl@0
|
63 |
public:
|
sl@0
|
64 |
static HIpcBuf* NewL(RSqlDbSession& aSession, TInt aFunction, TIpcArgs& aArgs);
|
sl@0
|
65 |
static HIpcBuf* NewLC(RSqlDbSession& aSession, TInt aFunction, TIpcArgs& aArgs);
|
sl@0
|
66 |
virtual ~HIpcBuf();
|
sl@0
|
67 |
|
sl@0
|
68 |
private:
|
sl@0
|
69 |
HIpcBuf(RSqlDbSession& aSession);
|
sl@0
|
70 |
void ConstructL(TInt aFunction, TIpcArgs& aArgs);
|
sl@0
|
71 |
|
sl@0
|
72 |
// from TStreamBuf
|
sl@0
|
73 |
TInt UnderflowL(TInt aMaxLength);
|
sl@0
|
74 |
void OverflowL();
|
sl@0
|
75 |
void DoRelease();
|
sl@0
|
76 |
void DoSynchL();
|
sl@0
|
77 |
TInt DoReadL(TAny* aPtr, TInt aMaxLength);
|
sl@0
|
78 |
void DoWriteL(const TAny* aPtr, TInt aLength);
|
sl@0
|
79 |
TStreamPos DoSeekL(TMark aMark, TStreamLocation aLocation, TInt anOffset);
|
sl@0
|
80 |
|
sl@0
|
81 |
private:
|
sl@0
|
82 |
inline void SetPos(TRead, TInt aPos);
|
sl@0
|
83 |
inline void SetPos(TWrite, TInt aPos);
|
sl@0
|
84 |
inline TInt Pos(TRead) const;
|
sl@0
|
85 |
inline TInt Pos(TWrite) const;
|
sl@0
|
86 |
inline TInt MovePos(TRead, TInt aOffset);
|
sl@0
|
87 |
TInt IpcReadL(TAny* aPtr, TInt aMaxLength);
|
sl@0
|
88 |
void IpcWriteL(const TAny* aPtr, TInt aLength);
|
sl@0
|
89 |
TInt EndL();
|
sl@0
|
90 |
|
sl@0
|
91 |
inline TInt Lag(TRead) const;
|
sl@0
|
92 |
inline TInt Lag(TWrite) const;
|
sl@0
|
93 |
inline TInt Mark(TRead) const;
|
sl@0
|
94 |
inline TInt Mark(TWrite) const;
|
sl@0
|
95 |
|
sl@0
|
96 |
private:
|
sl@0
|
97 |
RSqlDbSession& iSession;
|
sl@0
|
98 |
TInt iHandle;
|
sl@0
|
99 |
TInt iRPos;
|
sl@0
|
100 |
TInt iWPos;
|
sl@0
|
101 |
TIpcStreamBuf iBuf;
|
sl@0
|
102 |
};
|
sl@0
|
103 |
|
sl@0
|
104 |
#include "IPCBuf.inl"
|
sl@0
|
105 |
|
sl@0
|
106 |
#endif//__IPCBUF_H__
|