Update contrib.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 // Class CDbRestrictStage
19 CDbRestrictStage::CDbRestrictStage(TDbTextComparison aComparison)
20 : iTextOp(TTextOps::Ops(aComparison))
23 CDbRestrictStage::~CDbRestrictStage()
28 TInt CDbRestrictStage::CountL()
30 return KDbUndefinedCount;
33 TBool CDbRestrictStage::FilterRowL(TDbRecordId aRecordId)
35 CDbDataStage::ReadRowL(aRecordId);
36 return Restriction().EvaluateL(iTextOp);
39 CDbRestrictStage::TGoto CDbRestrictStage::GotoL(TInt& aWork,TDbPosition aPosition,TDbRecordId& aRecordId)
41 TGoto go=CDbDataStage::GotoL(aWork,aPosition,aRecordId);
50 aPosition=EDbPrevious;
57 TBool inSet=FilterRowL(aRecordId);
61 } while ((go=CDbDataStage::GotoL(aWork,aPosition,aRecordId))==ESuccess);
66 TBool CDbRestrictStage::GotoL(TDbRecordId aRecordId)
68 // If the record exists, check the restriction
71 return CDbDataStage::GotoL(aRecordId) ? FilterRowL(aRecordId) : EFalse;
74 CDbRestrictStage::TDelete CDbRestrictStage::DeleteRowL(TDbRecordId& aRecordId,TSynch aSynch)
76 // If trying to synchronise, and we find EDeletedAtNext, then we must check it is really in the rowset
79 TDelete r=CDbDataStage::DeleteRowL(aRecordId,aSynch);
80 if (aSynch==ESynch && r==EDeletedAtNext && !FilterRowL(aRecordId))
81 r=EDeletedInLimbo; // not a member, this cursor is now "in limbo"