os/persistentdata/persistentstorage/dbms/utable/UT_RSTRT.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
//
sl@0
    15
sl@0
    16
#include "UT_STD.H"
sl@0
    17
sl@0
    18
// Class CDbRestrictStage
sl@0
    19
CDbRestrictStage::CDbRestrictStage(TDbTextComparison aComparison)
sl@0
    20
	: iTextOp(TTextOps::Ops(aComparison))
sl@0
    21
	{}
sl@0
    22
sl@0
    23
CDbRestrictStage::~CDbRestrictStage()
sl@0
    24
	{
sl@0
    25
	delete iRestriction;
sl@0
    26
	}
sl@0
    27
sl@0
    28
TInt CDbRestrictStage::CountL()
sl@0
    29
	{
sl@0
    30
	return KDbUndefinedCount;
sl@0
    31
	}
sl@0
    32
sl@0
    33
TBool CDbRestrictStage::FilterRowL(TDbRecordId aRecordId)
sl@0
    34
	{
sl@0
    35
	CDbDataStage::ReadRowL(aRecordId);
sl@0
    36
	return Restriction().EvaluateL(iTextOp);
sl@0
    37
	}
sl@0
    38
sl@0
    39
CDbRestrictStage::TGoto CDbRestrictStage::GotoL(TInt& aWork,TDbPosition aPosition,TDbRecordId& aRecordId)
sl@0
    40
	{
sl@0
    41
	TGoto go=CDbDataStage::GotoL(aWork,aPosition,aRecordId);
sl@0
    42
	if (go==ESuccess)
sl@0
    43
		{
sl@0
    44
		switch (aPosition)
sl@0
    45
			{
sl@0
    46
		case EDbFirst:
sl@0
    47
			aPosition=EDbNext;
sl@0
    48
			break;
sl@0
    49
		case EDbLast:
sl@0
    50
			aPosition=EDbPrevious;
sl@0
    51
			break;
sl@0
    52
		default:
sl@0
    53
			break;
sl@0
    54
			}
sl@0
    55
		do
sl@0
    56
			{
sl@0
    57
			TBool inSet=FilterRowL(aRecordId);
sl@0
    58
			aWork-=EWorkToRead;
sl@0
    59
			if (inSet)
sl@0
    60
				break;
sl@0
    61
			} while ((go=CDbDataStage::GotoL(aWork,aPosition,aRecordId))==ESuccess);
sl@0
    62
		}
sl@0
    63
	return go;
sl@0
    64
	}
sl@0
    65
sl@0
    66
TBool CDbRestrictStage::GotoL(TDbRecordId aRecordId)
sl@0
    67
//
sl@0
    68
// If the record exists, check the restriction
sl@0
    69
//
sl@0
    70
	{
sl@0
    71
	return CDbDataStage::GotoL(aRecordId) ? FilterRowL(aRecordId) : EFalse;
sl@0
    72
	}
sl@0
    73
sl@0
    74
CDbRestrictStage::TDelete CDbRestrictStage::DeleteRowL(TDbRecordId& aRecordId,TSynch aSynch)
sl@0
    75
//
sl@0
    76
// If trying to synchronise, and we find EDeletedAtNext, then we must check it is really in the rowset
sl@0
    77
//
sl@0
    78
	{
sl@0
    79
	TDelete r=CDbDataStage::DeleteRowL(aRecordId,aSynch);
sl@0
    80
	if (aSynch==ESynch && r==EDeletedAtNext && !FilterRowL(aRecordId))
sl@0
    81
		r=EDeletedInLimbo;		// not a member, this cursor is now "in limbo"
sl@0
    82
	return r;
sl@0
    83
	}