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.
14 // SQL AND and OR node class
20 // class CSqlMultiNode
22 inline CSqlMultiNode::CSqlMultiNode( TType aType )
23 : CSqlSearchCondition( aType )
24 { __ASSERT( aType == EOr || aType == EAnd ); }
26 inline TInt CSqlMultiNode::Size() const
27 { return ( const TUint8* )iEnd - ( const TUint8* )this; }
29 inline TBool CSqlMultiNode::IsFull() const
30 { return ( Size() & ( EGranularity - 1 ) ) == 0; }
32 inline TInt CSqlMultiNode::Size( TInt aLeaves )
33 { return _FOFF( CSqlMultiNode, iLeaves[ aLeaves ] ); }
35 CSqlMultiNode::~CSqlMultiNode()
43 CSqlMultiNode* CSqlMultiNode::New( TType aType, TInt aSize )
45 aSize = ( aSize + ( EGranularity - 1 ) ) & ~( EGranularity - 1 );
46 __ASSERT( aSize >= static_cast<TInt>( sizeof( CSqlMultiNode ) ) );
47 aSize -= sizeof( CSqlMultiNode );
48 return new( aSize ) CSqlMultiNode( aType ); // get the extra size for the entries
51 CSqlMultiNode* CSqlMultiNode::Grow( CSqlMultiNode* aNode, TInt aExtraSize )
53 TInt size = aNode->Size();
54 CSqlMultiNode* self = New( aNode->NodeType(), size + aExtraSize );
57 aNode->iEnd = aNode->iLeaves;
58 self->iEnd = ( TEntry* )Mem::Copy( self->iLeaves, aNode->iLeaves, size - Size( 0 ) );
64 CSqlMultiNode* CSqlMultiNode::Concatenate( CSqlMultiNode* aLeft, CSqlMultiNode* aRight )
66 TInt lsize = aLeft->Size();
67 TInt rsize = aRight->Size();
69 return Concatenate( aRight, aLeft ); // right node larger--flip over
71 if ( (aLeft->IsFull()) || // if left node is already full
72 (( lsize & ( EGranularity - 1 ) ) + rsize > EGranularity ) ) // or available space in the left node is not enough for a new data
73 aLeft = Grow( aLeft, rsize ); // then increase left node to accomadate right node
76 aRight->iEnd = aRight->iLeaves;
77 aLeft->iEnd = ( TEntry* )Mem::Copy( aLeft->iEnd, aRight->iLeaves, rsize );
83 CSqlSearchCondition* CSqlMultiNode::New( TType aType, CSqlSearchCondition* aLeft, CSqlSearchCondition* aRight )
85 // Full NULL propagation, cleaning up any of either node on failure
88 if ( aLeft && aRight )
90 if ( aLeft->NodeType() == aType )
91 { // we can merge into aLeft
92 CSqlMultiNode* left = aLeft->MultiNode();
93 if ( aRight->NodeType() == aType )
94 return Concatenate( left, aRight->MultiNode() );
96 // append right subnode onto left
99 left = Grow( left, sizeof( TEntry ) );
103 TEntry* e = left->iEnd;
108 else if ( aRight->NodeType() == aType )
109 return New( aType, aRight, aLeft ); // swap left and right
111 { // neither node is not of the required type
112 CSqlMultiNode* self = New( aType, Size( 2 ) );
115 TEntry* e = self->iLeaves;
129 void CSqlMultiNode::Remove( CSqlSearchCondition* aSubNode )
131 // Remove the subnode from the leaf-set
134 TEntry* p = iLeaves - 1;
139 } while ( *++p != aSubNode );
148 CSqlSearchCondition* CSqlMultiNode::Reduce (CSqlMultiNode* aNode )
150 // If we have less than two leaves, then simplify the expression
153 CSqlSearchCondition* node = aNode;
154 if ( aNode->iEnd - aNode->iLeaves <= 1 )
156 if ( aNode->iEnd - aNode->iLeaves == 1 )
158 aNode->iEnd = aNode->iLeaves;
159 node = aNode->iLeaves[ 0 ];
168 void CSqlMultiNode::BindL( const RDbTableRow& aSource )
170 __ASSERT( iEnd - iLeaves > 1 );
171 const TEntry* p = iLeaves;
172 const TEntry* e = iEnd;
173 do ( *p++ )->BindL( aSource );
177 TBool CSqlMultiNode::EvaluateL( const TTextOps& aTextOp ) const
179 __ASSERT( iEnd - iLeaves > 1 );
180 const TEntry* p = iLeaves;
181 const TEntry* e = iEnd - 1; // all except the last sub-node
184 TBool b = ( *p++ )->EvaluateL( aTextOp );
185 if ( NodeType() == EOr )
196 return ( *p )->EvaluateL( aTextOp ); // the last subnode