sl@0
|
1 |
// Copyright (c) 1998-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 |
// DBMS server proxy incremental object
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "SD_STD.H"
|
sl@0
|
19 |
|
sl@0
|
20 |
// Class CDbsIncremental
|
sl@0
|
21 |
CDbsIncremental* CDbsIncremental::NewL(const RDbsObject& aDbs,TDbsFunction aFunction,TIpcArgs& aArgs,TInt& aStep)
|
sl@0
|
22 |
{
|
sl@0
|
23 |
TPckg<TInt> pckg(aStep);
|
sl@0
|
24 |
aArgs.Set(3,&pckg);
|
sl@0
|
25 |
CDbsIncremental* self=new(ELeave) CDbsIncremental;
|
sl@0
|
26 |
CleanupStack::PushL(self);
|
sl@0
|
27 |
self->iObject.OpenL(aDbs,aFunction,aArgs);
|
sl@0
|
28 |
if (self->iObject.Handle()==0)
|
sl@0
|
29 |
{ // no incremental object was required, so remove this one
|
sl@0
|
30 |
CleanupStack::PopAndDestroy(); // self
|
sl@0
|
31 |
return 0;
|
sl@0
|
32 |
}
|
sl@0
|
33 |
CleanupStack::Pop(); // self
|
sl@0
|
34 |
return self;
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
CDbsIncremental::~CDbsIncremental()
|
sl@0
|
38 |
{
|
sl@0
|
39 |
iObject.Close();
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
void CDbsIncremental::Next(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus)
|
sl@0
|
43 |
//
|
sl@0
|
44 |
// Asyncronous next step
|
sl@0
|
45 |
//
|
sl@0
|
46 |
{
|
sl@0
|
47 |
iObject.SendReceive(EDbsIncrementalNext,TIpcArgs(aStep(),&aStep),aStatus);
|
sl@0
|
48 |
}
|