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 CDbBasicWindowStage
20 CDbBasicWindowStage::CDbBasicWindowStage(const TDbWindow& aWindow)
21 : iWindow(aWindow), iRecords(EWindowArrayGranularity), iPos(-1)
23 __ASSERT(aWindow.Size()!=aWindow.ENone);
26 TBool CDbBasicWindowStage::GetRecord(TDbRecordId& aRecordId)
28 if (TUint(iPos)>=TUint(iRecords.Count()))
30 aRecordId=iRecords[iPos];
34 void CDbBasicWindowStage::Reset()
36 // Reset the window to initial state
39 CDbDataStage::Reset();
44 TBool CDbBasicWindowStage::EvaluateL(TInt& aWork,TDbRecordId& aRecordId,TBool& aAtRow)
46 // Do as much work as we can to make the window match the desired shape
49 TBool eval=CDbDataStage::EvaluateL(aWork,aRecordId,aAtRow);
52 eval=DoEvaluateL(aWork);
53 aAtRow=GetRecord(aRecordId);
58 TInt CDbBasicWindowStage::CountL()
60 // Window'd views only report the evaluated records
63 return iRecords.Count();
66 CDbBasicWindowStage::TGoto CDbBasicWindowStage::GotoL(TInt& /*aWork*/,TDbPosition aPosition,TDbRecordId& aRecordId)
77 iPos=iRecords.Count()-1;
86 return GetRecord(aRecordId) ? ESuccess : ENoRow;
89 TInt CDbBasicWindowStage::Find(TDbRecordId aRecordId,TInt& aPos)
91 TKeyArrayFix key(0,ECmpTUint32);
92 return iRecords.Find(aRecordId,key,aPos);
95 TBool CDbBasicWindowStage::GotoL(TDbRecordId aRecordId)
97 return Find(aRecordId,iPos)==0;
100 void CDbBasicWindowStage::ReadRowL(TDbRecordId aRecordId)
102 TRAPD(r,CDbDataStage::ReadRowL(aRecordId));
106 if (Find(aRecordId,pos)==KErrNone)
108 iRecords.Delete(pos);
116 TDbRecordId CDbBasicWindowStage::WriteRowL(TWrite aWrite,TSynch aSynch)
118 TDbRecordId id=CDbDataStage::WriteRowL(aWrite,ENoSynch);
119 if (aWrite==EAppend && iWindow.Size()==iWindow.EUnlimited)
121 iRecords.AppendL(id);
123 iPos=iRecords.Count()-1; // follow the append
128 CDbBasicWindowStage::TDelete CDbBasicWindowStage::DeleteRowL(TDbRecordId& aRecordId,TSynch)
130 // Remove the row from the window if it is present
133 CDbDataStage::DeleteRowL(aRecordId,ENoSynch);
134 if (GotoL(aRecordId))
136 iRecords.Delete(iPos);
137 if (GetRecord(aRecordId))
138 return EDeletedAtNext;
140 return EDeletedAtEnd;
143 // Class CDbWindowStage
145 CDbWindowStage::CDbWindowStage(const TDbWindow& aWindow)
146 : CDbBasicWindowStage(aWindow), iIterPos(EAtBeginning), iView(EBeginning)
149 void CDbWindowStage::Reset()
151 // Reset the window to initial state
154 CDbBasicWindowStage::Reset();
155 iIterPos=EAtBeginning;
159 TInt CDbWindowStage::WhatToEvaluate()
161 // count of slots to fill, <0 at beginning, >0 at end. 0 none
166 if (iWindow.Size()==iWindow.EUnlimited)
168 TInt space=iWindow.Size()-iRecords.Count();
169 TInt lag=iPos-iWindow.PreferredPos();
175 return space+Max(lag,0); // fill up and use forward lag if any
177 return Min(lag,0)-space; // fill up backwards and use rear lag if any
179 if (lag<0 && iIterPos==EAtBeginning) // use iterator position if we can
189 TDbPosition CDbWindowStage::ResetIterToBeginningL()
191 for (TInt ii=iRecords.Count();--ii>=0;)
193 if (CDbDataStage::GotoL(iRecords[0]))
195 // has been deleted, try the next one
200 // no records to work with, start at the end
204 TDbPosition CDbWindowStage::ResetIterToEndL()
206 for (TInt ii=iRecords.Count();--ii>=0;)
208 if (CDbDataStage::GotoL(iRecords[ii]))
210 // has been deleted, try the next one
215 // no records to work with, start at the beginning
219 TDbPosition CDbWindowStage::SetIteratorL(TInt anEval)
221 // Set the iterator for some work and return the first iterator direction
231 // turn around iterator to work at end
233 return ResetIterToEndL();
237 // turn around iterator to work at beginning
238 iIterPos=EAtBeginning;
239 return ResetIterToBeginningL();
243 void CDbWindowStage::ExtendAtBeginningL(TInt aRecords,TDbPosition aFirst,TInt& aWork)
245 TDbRecordId id=iRecords.Count()>0 ? iRecords[0] : KDbNullRecordId;
248 switch (CDbDataStage::GotoL(aWork,aFirst,id))
255 if (iRecords.Count()==iWindow.Size())
256 { // drop last record
257 iRecords.Delete(iRecords.Count()-1);
261 iRecords.InsertL(0,id);
267 case ENoRow: // no more data that way
268 iView=iView==EEnd ? EAll : EBeginning;
270 case ESynchFailure: // have to do some work on the iterator now
271 aFirst=ResetIterToBeginningL();
277 void CDbWindowStage::ExtendAtEndL(TInt aRecords,TDbPosition aFirst,TInt& aWork)
279 TDbRecordId id=iRecords.Count()>0 ? iRecords[iRecords.Count()-1] : KDbNullRecordId;
282 switch (CDbDataStage::GotoL(aWork,aFirst,id))
289 if (iRecords.Count()==iWindow.Size())
290 { // drop first record
293 if (iView==EBeginning)
296 iRecords.AppendL(id);
297 if (aFirst==EDbFirst)
302 iView=iView==EBeginning ? EAll : EEnd;
305 aFirst=ResetIterToEndL();
311 TBool CDbWindowStage::DoEvaluateL(TInt& aWork)
313 // Do as much work as we can to make the window match the desired shape
318 TInt eval=WhatToEvaluate();
323 TDbPosition dir=SetIteratorL(eval);
325 ExtendAtEndL(eval,dir,aWork);
327 ExtendAtBeginningL(-eval,dir,aWork);
331 TBool CDbWindowStage::Unevaluated()
333 // Return whether it is worth Evaluating
336 return WhatToEvaluate()==0 ? CDbDataStage::Unevaluated() : ETrue;