sl@0
|
1 |
// Copyright (c) 2004-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 |
// SD_BUF.CPP
|
sl@0
|
15 |
// HDbsBuf class - "DBMS security" related code only
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "SD_STD.H"
|
sl@0
|
20 |
|
sl@0
|
21 |
/**
|
sl@0
|
22 |
Standard phase-one factory method for HDbsBuf instances.
|
sl@0
|
23 |
@param aDbSession RDbs session instance.
|
sl@0
|
24 |
@param aFunction DBMS server function code. EDbsDatabaseList DBMS function code is only used.
|
sl@0
|
25 |
@param aArgs EDbsDatabaseList related set of arguments.
|
sl@0
|
26 |
@return A pointer to the created HDbsBuf instance.
|
sl@0
|
27 |
@leave One of the system-wide error codes, including KErrNoMemory.
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
HDbsBuf* HDbsBuf::NewLC(const RDbs& aDbSession, TDbsFunction aFunction, TIpcArgs& aArgs)
|
sl@0
|
30 |
{
|
sl@0
|
31 |
HDbsBuf* self = new (ELeave) HDbsBuf;
|
sl@0
|
32 |
self->PushL();
|
sl@0
|
33 |
self->ConstructL(aDbSession, aFunction, aArgs);
|
sl@0
|
34 |
return self;
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
Standard phase-two construction method for HDbsBuf instances.
|
sl@0
|
39 |
@param aDbSession RDbs session instance.
|
sl@0
|
40 |
@param aFunction DBMS server function code. EDbsDatabaseList DBMS function code is only used.
|
sl@0
|
41 |
@param aArgs EDbsDatabaseList related set of arguments.
|
sl@0
|
42 |
@leave One of the system-wide error codes, including KErrNoMemory.
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
void HDbsBuf::ConstructL(const RDbs& aDbSession, TDbsFunction aFunction, TIpcArgs& aArgs)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
TPckg<TDbsStreamBuf> pckg(iBuf);
|
sl@0
|
47 |
aArgs.Set(3, &pckg);
|
sl@0
|
48 |
iIpc.OpenL(aDbSession, aFunction, aArgs);
|
sl@0
|
49 |
TUint8* base = iBuf.iData;
|
sl@0
|
50 |
// if reading we already have one buffer-full of data
|
sl@0
|
51 |
TInt avail = Max(0, Min(iBuf.iExt, KDbsStreamBufSize));
|
sl@0
|
52 |
SetBuf(ERead, base, base + avail);
|
sl@0
|
53 |
SetPos(ERead, avail);
|
sl@0
|
54 |
SetBuf(EWrite, base, base);
|
sl@0
|
55 |
SetPos(EWrite, 0);
|
sl@0
|
56 |
}
|