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 #include "U32STD_DBMS.H"
20 // Class RDbAccessPlan::TPlan
22 TInt RDbAccessPlan::TPlan::OrderByPlan(const TPlan& aLeft,const TPlan& aRight)
24 TUint lpos=aLeft.Type();
25 TUint rpos=aRight.Type();
26 __ASSERT(lpos!=0 && rpos!=0 ); // should be no table iterators
30 RDbAccessPlan::TPlan::TType RDbAccessPlan::TPlan::Type() const
32 // flag values: 0=A, 1=C, 2=B, 3=D, 8=E/F, 10=G/H, 16=M/N, 18=S/T, 20=I/J, 21=K/L, 22=O/P, 23=Q/R
33 // This determines order of plans
36 const TUint KPosition[]={EPlanA,EPlanC,EPlanB,EPlanD,0,0,0,0,EPlanEF,0,EPlanGH,0,0,0,0,0,EPlanMN,
37 0,EPlanST,0,EPlanIJ,EPlanKL,EPlanOP,EPlanQR};
38 return TType(KPosition[iFlags&EMask]);
41 // Class RDbAccessPlan::TBounds
43 RDbAccessPlan::TBounds::TBounds(const TPlan& aPlan)
44 : iLowerPred(aPlan.iLower),iUpperPred(aPlan.iUpper),iLower(0),iUpper(0),iInclusion(0)
48 if (aPlan.iIndex->Key()[0].iOrder==TDbKeyCol::EDesc)
50 TDbLookupKey* t=iLower;
53 iInclusion=(iInclusion>>1)|(iInclusion<<1);
57 void RDbAccessPlan::TBounds::GetLookupKey(const CSqlCompPredicate& aCompPredicate,TDbLookupKey& aLookup)
59 const RSqlLiteral& value=aCompPredicate.Value();
60 switch (aCompPredicate.ColType())
72 aLookup.Add(value.Int64());
76 aLookup.Add(value.Real64());
79 aLookup.Add(value.Time());
83 aLookup.Add(value.Text8());
86 case EDbColLongText16:
87 aLookup.Add(value.Text16());
92 void RDbAccessPlan::TBounds::SetLowerBounds()
94 if (!iLowerPred) // iLower already set to 0
96 GetLookupKey(*iLowerPred,iLowerKey);
97 switch (iLowerPred->NodeType())
101 case CSqlSearchCondition::ELessEqual:
102 case CSqlSearchCondition::ELess:
105 case CSqlSearchCondition::EEqual:
106 case CSqlSearchCondition::EGreaterEqual:
107 iInclusion|=CDbRecordIndex::EIncludeLower;
108 case CSqlSearchCondition::EGreater:
114 void RDbAccessPlan::TBounds::SetUpperBounds()
118 GetLookupKey(*iUpperPred,iUpperKey);
119 switch (iUpperPred->NodeType())
123 case CSqlSearchCondition::EGreaterEqual:
124 case CSqlSearchCondition::EGreater:
127 case CSqlSearchCondition::EEqual:
128 case CSqlSearchCondition::ELessEqual:
129 iInclusion|=CDbRecordIndex::EIncludeUpper;
130 case CSqlSearchCondition::ELess:
136 // Class RDbAccessPlan::CDbCompPredicateList
138 RDbAccessPlan::CDbCompPredicateList* RDbAccessPlan::CDbCompPredicateList::NewLC(CSqlQuery& aQuery,TDbTextComparison aComparison,const CDbTableDef& aTableDef)
140 CDbCompPredicateList* self=new(ELeave) CDbCompPredicateList(aTableDef,aComparison);
141 CleanupStack::PushL(self);
142 CSqlSearchCondition& sc=aQuery.SearchCondition();
143 self->ConstructL(sc);
147 void RDbAccessPlan::CDbCompPredicateList::ConstructL(CSqlSearchCondition& aSearchCondition)
149 // fill the list with valid comp pred's
152 TUint type=Type(aSearchCondition.NodeType());
155 CSqlCompPredicate* cp=aSearchCondition.CompPredicate();
156 const TDesC& colName=cp->ColumnName();
157 if (IsIndexed(colName))
164 CSqlMultiNode* multiNode=aSearchCondition.MultiNode();
165 for (TInt ii=multiNode->Count();ii--;)
167 CSqlSearchCondition* node=multiNode->SubNode(ii);
175 TUint RDbAccessPlan::CDbCompPredicateList::Type(CSqlSearchCondition::TType aType) const
177 // converts CSqlSearchCondition::TType into flag
182 case CSqlSearchCondition::EAnd:
184 case CSqlSearchCondition::ELess:
186 case CSqlSearchCondition::ELessEqual:
188 case CSqlSearchCondition::EEqual:
190 case CSqlSearchCondition::EGreaterEqual:
191 return EGreaterEqual;
192 case CSqlSearchCondition::EGreater:
199 TBool RDbAccessPlan::CDbCompPredicateList::IsIndexed(const TDesC& aColumnName)
201 // Checks if aColumnName is indexed. If its a text column the comparison method should be the same
204 const CDbTableIndexDef* key=iTableDef.Key(aColumnName);
207 const TDbColumnDef* colDef=NULL;
208 TRAPD(errCode, colDef=iTableDef.Columns().ColumnL(aColumnName));
209 if(errCode != KErrNone)
211 if (colDef->Type()>EDbColDateTime && key->Key().Comparison()!=iComparison)
216 CSqlCompPredicate* RDbAccessPlan::CDbCompPredicateList::CompPredicate(TDbColNo aColNo,TUint aType)
218 // Returns first CompPredicate found in the list with required type & col no, and removes from list
221 for (TInt ii=Count();ii--;)
223 CSqlCompPredicate* cp=At(ii);
224 TUint type=Type(cp->NodeType());
225 TDbColNo colNo=cp->ColNo();
226 if (!type&aType || aColNo!=colNo)
236 void Validate::NameL(const TDesC& aName)
238 if (aName.Length()<=KDbMaxName)
241 if (!lex.Eos() && lex.Get().IsAlpha())
249 } while (c.IsAlphaDigit()||c=='_');
252 __LEAVE(KErrBadName);
255 void Validate::UniqueNameL(TDesC const** aNames,TInt aCount,const TDesC& aName)
257 // Ensure that aName is not a duplicate of any of aNames, and add
258 // the new name to the collection. Binary search is used for speed
265 TInt mid=(left+right)>>1;
266 TInt c=aNames[mid]->CompareF(aName);
272 __LEAVE(KErrArgument);
274 Mem::Move(aNames+left+1,aNames+left,(aCount-left)*sizeof(TDesC const*));
278 void Validate::ColSetL(const CDbColSet& aColSet)
280 TDbColSetIter iter(aColSet);
282 __LEAVE(KErrArgument);
283 TDesC const** names=(TDesC const**)User::AllocLC(aColSet.Count()*sizeof(TDesC const*));
286 const TDbCol& col=*iter;
288 UniqueNameL(names,iter.Col()-1,col.iName);
289 TInt type=TInt(col.iType);
290 if (type<TInt(EDbColBit)||type>TInt(EDbColLongBinary))
291 __LEAVE(KErrNotSupported);
292 else if (col.iMaxLength<1&&col.iMaxLength!=KDbUndefinedLength)
293 __LEAVE(KErrArgument);
294 else if (col.iAttributes&~(TDbCol::ENotNull|TDbCol::EAutoIncrement))
295 __LEAVE(KErrNotSupported); // unknown attributes
296 else if (type>EDbColUint32 && col.iAttributes&TDbCol::EAutoIncrement)
297 __LEAVE(KErrArgument); // auto increment on non-integral type
299 CleanupStack::PopAndDestroy();
302 void Validate::KeyL(const CDbKey& aKey,const HDbColumnSet& aColumns)
304 // Check that the key is valid for the table
307 TInt max=aKey.Count()-1;
309 __LEAVE(KErrArgument);
310 for (TInt ii=0;ii<=max;++ii)
312 const TDbKeyCol& kCol=aKey[ii];
313 HDbColumnSet::TIteratorC col=aColumns.ColumnL(kCol.iName);
315 __LEAVE(KErrNotFound);
316 TInt len=kCol.iLength;
317 if (len!=KDbUndefinedLength)
319 if (col->iType<=EDbColDateTime)
320 __LEAVE(KErrArgument);
321 TInt cLen=col->iMaxLength;
325 __LEAVE(KErrNotSupported);
329 __LEAVE(KErrArgument);
330 else if (cLen!=KDbUndefinedLength && cLen<len)
331 __LEAVE(KErrArgument);
336 // Class RDbAccessPlan
338 TUint RDbAccessPlan::FindMatchL(const CDbTableIndexDef* aIndex)
340 // Checks if index best matches the order specified
343 CDbKey& order=iQuery->SortSpecification();
344 TInt count=order.Count();
345 TInt columnLength=iTable->Def().Columns().ColumnL(order[count-1].iName)->iMaxLength;
346 const CDbKey& key=aIndex->Key();
348 if (TextKeyL(order) && order.Comparison()!=key.Comparison())
350 TInt kCount=key.Count();
351 for (TInt ii=0,rev=0;;)
353 const TDbKeyCol& kcol=key[ii];
354 const TDbKeyCol& ocol=order[ii];
355 if (kcol.iName.CompareF(ocol.iName)!=0)
357 TInt revcol=kcol.iOrder^ocol.iOrder;
360 else if (rev!=revcol)
362 if (++ii==count) // end of order key
365 if (kcol.iLength!=columnLength)
371 if (ii==kCount) // end of index key
375 { // will provide the right order by, use it
386 TBool RDbAccessPlan::TextKeyL(const CDbKey& anOrder)
388 // return whether any of the keys are text columns
391 const HDbColumnSet& cols=iTable->Def().Columns();
392 TInt count=anOrder.Count();
393 for (TInt ii=0;ii<count;++ii)
395 switch (cols.ColumnL(anOrder[ii].iName)->Type())
399 case EDbColLongText8:
400 case EDbColLongText16:
409 CDbTableSource* RDbAccessPlan::TableLC(CDbTableDatabase& aDatabase,const TDesC& aTable)
412 CDbTableSource* source=aDatabase.TableSourceL(aTable);
414 iTable=&source->Table();
415 CleanupStack::PushL(TCleanupItem(Cleanup,this));
419 void RDbAccessPlan::Insert(CDbDataStage* aStage)
422 aStage->SetSource(iSource);
426 void RDbAccessPlan::Cleanup(TAny* aPtr)
428 RDbAccessPlan& self=*STATIC_CAST(RDbAccessPlan*,aPtr);
433 CDbRecordIter* RDbAccessPlan::IteratorL(const TPlan& aPlan)
435 // Returns the right iterator
438 if (aPlan.iFlags&TPlan::EIndex)
439 return iTable->IteratorL(*aPlan.iIndex);
440 if (aPlan.iFlags&TPlan::EBounded)
441 return BoundedIteratorL(aPlan);
442 return iTable->IteratorL();
445 CDbRecordIter* RDbAccessPlan::BoundedIteratorL(const TPlan& aPlan)
447 TBounds bounds(aPlan);
448 CDbRecordIter* iter=iTable->IteratorL(*aPlan.iIndex,bounds.iInclusion,bounds.iLower,bounds.iUpper);
450 iQuery->RemovePredicate(aPlan.iLower);
451 if (aPlan.iUpper && aPlan.iLower!=aPlan.iUpper)
452 iQuery->RemovePredicate(aPlan.iUpper);
456 void RDbAccessPlan::RestrictionL()
458 CDbRestrictStage* restriction=new(ELeave) CDbRestrictStage(iComparison);
460 CSqlSearchCondition* searchcondition=iQuery->AdoptSearchCondition();
461 restriction->SetRestriction(searchcondition);
464 void RDbAccessPlan::OrderByL(const RDbTableRow& aRowBuf)
466 CDbOrderByStage* ordering=new(ELeave) CDbOrderByStage(aRowBuf);
468 ordering->ConstructL(iQuery->SortSpecification());
471 void RDbAccessPlan::ProjectionL()
473 CDbProjectStage* projection=new(ELeave) CDbProjectStage;
475 projection->ConstructL(iQuery->ColumnList(),iTable->Def().Columns());
478 void RDbAccessPlan::WindowL(const TPlan& aPlan,const TDbWindow& aWindow)
480 if (aPlan.iFlags&TPlan::EWindow)
481 Insert(new(ELeave) CDbWindowStage(KDbUnlimitedWindow));
482 else if (aWindow.Size()!=aWindow.ENone && aWindow.Size()!=aWindow.EUnlimited)
483 Insert(new(ELeave) CDbWindowStage(aWindow));
486 TBool RDbAccessPlan::IsIndexIteratorL(TPlan& aPlan,const CDbTableIndexDef* aIndex)
488 // If an index iterator can be used, sets aPlan, else returns EFalse
491 if (!iQuery->HasSortSpecification())
493 TUint ret=FindMatchL(aIndex);
496 // can use index iterator
497 aPlan.iFlags&=~TPlan::EOrder;
499 aPlan.iFlags|=TPlan::EReverse;
500 aPlan.iFlags|=TPlan::EIndex;
505 TBool RDbAccessPlan::IsBoundedIteratorL(TPlan& aPlan,const CDbTableIndexDef* aIndex)
507 // If a bounded iterator can be used, sets aPlan, else returns EFalse
510 if (!iQuery->HasSearchCondition())
512 TDbColNo keyColNo=iTable->Def().Columns().ColNoL(aIndex->Key()[0].iName);
513 CDbCompPredicateList* list=CDbCompPredicateList::NewLC(*iQuery,iComparison,iTable->Def());
514 CSqlCompPredicate* cp=list->CompPredicate(keyColNo,CDbCompPredicateList::EEqual);
515 if (cp==0 && (cp=list->CompPredicate(keyColNo))==0)
517 CleanupStack::PopAndDestroy(); // list
521 TUint type=list->Type(cp->NodeType());
522 aPlan.iLower=type&(CDbCompPredicateList::ELess|CDbCompPredicateList::ELessEqual)?0:cp;
523 aPlan.iUpper=type&(CDbCompPredicateList::EGreater|CDbCompPredicateList::EGreaterEqual)?0:cp;
524 // find other boundary, if present
525 if (list->Count()!=0 && cp->NodeType()!=CSqlSearchCondition::EEqual)
527 TUint nextType=type&(CDbCompPredicateList::ELess|CDbCompPredicateList::ELessEqual) ?
528 CDbCompPredicateList::EGreater|CDbCompPredicateList::EGreaterEqual :
529 CDbCompPredicateList::ELess|CDbCompPredicateList::ELessEqual;
530 CSqlCompPredicate* cp2=list->CompPredicate(keyColNo,nextType);
533 if (nextType&(CDbCompPredicateList::ELess|CDbCompPredicateList::ELessEqual))
539 // check which order the index is in and reverse if descending
540 const TDbKeyCol& key=aIndex->Key()[0];
541 if ((key.iOrder==TDbKeyCol::EDesc && !aPlan.iUpper) || (key.iOrder==TDbKeyCol::EAsc && !aPlan.iLower))
542 aPlan.iFlags|=TPlan::EReverse; // optimise the bounding for forwards iteration
543 if (!list->IsRestriction() && list->Count()==0)
544 aPlan.iFlags&=~TPlan::ERestrict;
545 CleanupStack::PopAndDestroy(); // list
546 aPlan.iFlags|=TPlan::EBounded;
551 void RDbAccessPlan::EvaluatePlansL()
553 // try to find a bounded or index iterator
558 if (iQuery->HasSearchCondition())
559 plan.iFlags|=TPlan::ERestrict;
560 if (iQuery->HasSortSpecification())
561 plan.iFlags|=TPlan::EOrder;
562 // find the right type of iterator
563 TSglQueIterC<CDbTableIndexDef> indexes(iTable->Def().Indexes().AsQue());
564 for (const CDbTableIndexDef* index;(index=indexes++)!=0;)
565 { // only on first column
567 TBool foundIter=IsBoundedIteratorL(newPlan,index);
569 foundIter=IsIndexIteratorL(newPlan,index);
571 EvaluateReorderStage(newPlan,index);
574 EvaluateWindowStage(newPlan);
575 __LEAVE_IF_ERROR(iPlans.Append(newPlan));
580 void RDbAccessPlan::ChoosePlanL(TPlan& aPlan)
583 if (iPlans.Count()==0)
585 CreateTableIteratorPlan(aPlan);
588 TPlan::TType type=iPlans[0].Type();
589 if (!iQuery->HasSearchCondition())
591 __ASSERT(type==TPlan::EPlanEF);
592 GetSmallestKeySize(aPlan,TPlan::EPlanEF);
594 else if (!iQuery->HasSortSpecification())
596 if (type==TPlan::EPlanIJ)
598 GetSmallestKeySize(aPlan,TPlan::EPlanIJ);
599 TInt r=IndexSpanL(aPlan);
600 if (r!=CDbTable::EUnavailableSpan && !iWindow && r>60)
601 CreateTableIteratorPlan(aPlan);
603 else if (type==TPlan::EPlanOP)
605 TInt r=GetTightestRestrictionL(aPlan,TPlan::EPlanOP);
606 if (r==CDbTable::EUnavailableSpan) // no index stats available
607 aPlan=iPlans[0]; // use first O/P as a guess
608 else if ((!iWindow && r>55) || (iWindow && r>60))
609 CreateTableIteratorPlan(aPlan);
614 else if (type==TPlan::EPlanMN)
616 GetSmallestKeySize(aPlan,TPlan::EPlanMN);
617 if (iAccess==RDbRowSet::EUpdatable || iWindow)
618 aPlan.iFlags|=TPlan::EWindow;
620 else if (type==TPlan::EPlanKL)
622 GetSmallestKeySize(aPlan,TPlan::EPlanKL);
623 TInt r=IndexSpanL(aPlan);
624 if (r!=CDbTable::EUnavailableSpan && r>60)
625 { // don't use K plan
626 if (r<75 || GetSmallestKeySize(aPlan,TPlan::EPlanGH)==KErrNotFound)
627 CreateTableIteratorPlan(aPlan);
630 else if (type==TPlan::EPlanQR)
632 TInt r=GetTightestRestrictionL(aPlan,TPlan::EPlanQR);
633 if (r==CDbTable::EUnavailableSpan) // no index stats available
634 aPlan=iPlans[0]; // use first Q/R as a guess
636 CreateTableIteratorPlan(aPlan);
640 __ASSERT(type==TPlan::EPlanGH);
641 // don't use this plan without further data, resort to default
642 CreateTableIteratorPlan(aPlan);
646 void RDbAccessPlan::EvaluateWindowStage(TPlan& aPlan)
650 TUint f=aPlan.iFlags|TPlan::EWindow;
651 if (f&TPlan::EReorder)
653 if (f&TPlan::ERestrict)
655 if (f&TPlan::EOrder) // order-by stage includes window
660 TInt RDbAccessPlan::GetTightestRestrictionL(TPlan& aPlan,TPlan::TType aType)
662 // aPlan is set to the smallest restricted plan with aType
667 for (TInt ii=iPlans.Count();ii--;)
669 if (iPlans[ii].Type()!=aType)
671 TInt t=IndexSpanL(iPlans[ii]);
672 if (t==CDbTable::EUnavailableSpan)
674 if (t<span || (t==span && iPlans[ii].iIndex->Key().Count()<plan.iIndex->Key().Count()))
681 return span!=KMaxTInt?span:CDbTable::EUnavailableSpan;
684 TInt RDbAccessPlan::GetSmallestKeySize(TPlan& aPlan,TPlan::TType aType)
686 // aPlan is set to the plan with smallest index with aType
691 for (TInt ii=iPlans.Count();ii--;)
693 if (iPlans[ii].Type()!=aType)
695 __ASSERT(iPlans[ii].iIndex);
696 TInt count=iPlans[ii].iIndex->Key().Count();
704 return cols!=KMaxTInt?cols:KErrNotFound;
707 TInt RDbAccessPlan::IndexSpanL(const TPlan& aPlan)
709 __ASSERT(aPlan.iIndex);
710 TBounds bounds(aPlan);
711 return iTable->IndexSpanL(*aPlan.iIndex,bounds.iInclusion,bounds.iLower,bounds.iUpper);
714 void RDbAccessPlan::ReducePlans()
716 for (TInt ii=iPlans.Count();--ii>=0;)
718 switch (iPlans[ii].Type())
724 iPlans.Remove(ii); // remove Gw/Hw
727 iPlans[ii].iFlags|=(TPlan::EReorder|TPlan::EOrder); // convert S/T to Q/R
728 EvaluateWindowStage(iPlans[ii]);
732 // explicit conversion required as GCC can't find the TLinearOrder instantiation
733 iPlans.Sort(TLinearOrder<TPlan>(TPlan::OrderByPlan));
736 void RDbAccessPlan::CreateTableIteratorPlan(TPlan& aPlan)
738 aPlan.iFlags&=~(TPlan::EIndex|TPlan::EBounded);
739 if (iQuery->HasSearchCondition())
740 aPlan.iFlags=TPlan::ERestrict;
741 if (iQuery->HasSortSpecification())
742 aPlan.iFlags|=TPlan::EOrder;
743 EvaluateWindowStage(aPlan);
746 void RDbAccessPlan::EvaluateReorderStage(TPlan& aPlan,const CDbTableIndexDef* aIndex)
748 // for a bounded iter with an order by - can the index be used?
751 aPlan.iFlags|=TPlan::EReorder;
752 if (!iQuery->HasSortSpecification())
755 TRAPD(errCode, ret=FindMatchL(aIndex));
756 if (errCode==KErrNone && ret&EMatch)
757 {// do we really need a reorder stage?
758 aPlan.iFlags&=~TPlan::EOrder; // don't need to order it
759 aPlan.iFlags&=~TPlan::EReorder; // don't need a reorder stage
761 aPlan.iFlags|=TPlan::EReverse;
763 aPlan.iFlags&=~TPlan::EReverse;
767 void RDbAccessPlan::PrepareQueryL(CDbTableSource* aSource)
769 if (iQuery->HasSearchCondition())
771 CSqlSearchCondition& sc=iQuery->SearchCondition();
772 sc.BindL(aSource->Row());
774 if (iQuery->HasSortSpecification())
776 CDbKey& order=iQuery->SortSpecification();
777 order.SetComparison(iComparison);
778 Validate::KeyL(order,iTable->Def().Columns());
783 void RDbAccessPlan::BuildLC(CDbTableDatabase& aDatabase,RDbRowSet::TAccess aAccess,const TDbWindow& aWindow)
785 // Prepare the data pipeline
789 CDbTableSource* source=TableLC(aDatabase,iQuery->Table());
791 if (aAccess!=RDbRowSet::EInsertOnly)
792 { // insert only views do not use Iterators, Restrictions or Windows
793 iWindow=aWindow.Size()==aWindow.EUnlimited;
795 PrepareQueryL(source);
799 source->SetIterator(IteratorL(plan));
800 if (plan.iFlags&TPlan::EReorder)
801 Insert(new(ELeave) CDbReorderWindowStage);
802 if (plan.iFlags&TPlan::EReverse)
803 source->ReverseIteratorL();
804 if (plan.iFlags&TPlan::ERestrict)
806 if (plan.iFlags&TPlan::EOrder)
807 OrderByL(source->Row());
808 WindowL(plan,aWindow);
811 if (iQuery->HasColumnList())
815 void RDbAccessPlan::BuildLC(CDbTableDatabase& aDatabase,const TDesC& aTable,RDbRowSet::TAccess aAccess)
817 CDbTableSource* source=TableLC(aDatabase,aTable);
818 if (aAccess!=RDbRowSet::EInsertOnly)
819 source->SetIterator(iTable->IteratorL());