adding statment length
[csql.git] / src / server / TupleIterator.cxx
bloba565aeba3d173f15a3e013ab4e3204e4a81b95ef
1 /***************************************************************************
2 * Copyright (C) 2007 by www.databasecache.com *
3 * Contact: praba_tuty@databasecache.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 ***************************************************************************/
16 #include<Table.h>
17 #include<Index.h>
18 #include<CatalogTables.h>
19 #include<Lock.h>
20 #include<Debug.h>
21 #include<TableImpl.h>
22 #include<PredicateImpl.h>
23 DbRetVal TupleIterator::open()
26 if (fullTableScan == scanType_)
28 cIter = new ChunkIterator();
29 *cIter = ((Chunk*)chunkPtr_)->getIterator();
30 }else if (hashIndexScan == scanType_)
32 HashIndexInfo *hIdxInfo = (HashIndexInfo*)info;
33 PredicateImpl *predImpl = (PredicateImpl*) pred_;
34 bool isPtr = false;
35 FieldIterator iter = hIdxInfo->idxFldList.getIterator();
36 char *keyBuffer;
37 keyBuffer = (char*) malloc(hIdxInfo->compLength);
38 void *keyStartBuffer = (void*) keyBuffer, *keyPtr;
39 while(iter.hasElement())
41 FieldDef def = iter.nextElement();
42 keyPtr = (void*)predImpl->valPtrForIndexField(def.fldName_);
43 AllDataType::copyVal(keyBuffer, keyPtr, def.type_, def.length_);
44 keyBuffer = keyBuffer + AllDataType::size(def.type_, def.length_);
47 int bucketNo = HashIndex::computeHashBucket(hIdxInfo->type,
48 keyStartBuffer, hIdxInfo->noOfBuckets, hIdxInfo->compLength);
49 free(keyStartBuffer);
50 Bucket *bucket = &(hIdxInfo->buckets[bucketNo]);
51 int ret = bucket->mutex_.getLock(procSlot);
52 if (ret != 0)
54 printError(ErrLockTimeOut,"Unable to acquire bucket Mutex for bucket %d",bucketNo);
55 return ErrLockTimeOut;
57 HashIndexNode *head = (HashIndexNode*) bucket->bucketList_;
58 if (!head)
60 bucket->mutex_.releaseLock(procSlot);
61 bIter = NULL ;
62 return OK;
64 printDebug(DM_HashIndex, "open:head for bucket %x is :%x", bucket, head);
65 bIter = new BucketIter(head);
66 bucket->mutex_.releaseLock(procSlot);
69 return OK;
73 void* TupleIterator::next()
75 PredicateImpl *predImpl = (PredicateImpl*) pred_;
76 void *tuple = NULL;
77 DbRetVal rv = OK;
78 if (fullTableScan == scanType_)
81 if (NULL == pred_ )
83 //no predicates
84 return cIter->nextElement();
86 else
88 //evaluate till it succeeds
89 bool result = false;
90 while (!result)
92 tuple = cIter->nextElement();
93 if(NULL == tuple) return NULL;
94 //predImpl->setTuple(tuple);
95 printDebug(DM_Table, "Evaluating the predicate from fullTableScan");
96 rv = predImpl->evaluate(result);
97 if (rv != OK) return NULL;
100 }else if (hashIndexScan == scanType_)
102 if (NULL == bIter)
104 //if there are no nodes in bucket bIter will be null
105 return NULL;
107 //evaluate till it succeeds
108 bool result = false;
109 while (!result)
111 HashIndexNode *node = bIter->next();
112 if (node == NULL) return NULL;
113 printDebug(DM_HashIndex, "next: returned HashIndexNode: %x", node);
114 tuple = node->ptrToTuple_;
115 if(NULL == tuple) {
116 printDebug(DM_HashIndex, "next::tuple is null");
117 return NULL;
120 //if (!predImpl->isSingleTerm()) {
121 printDebug(DM_HashIndex, "next: predicate has more than single term");
122 //predImpl->setTuple(tuple);
123 printDebug(DM_Table, "Evaluating the predicate from hashIndexScan: has more than one term");
124 rv = predImpl->evaluate(result);
125 if (rv != OK) return NULL;
126 //}
127 //else
128 // return tuple;
132 return tuple;
135 DbRetVal TupleIterator::close()
137 if (scanType_ == fullTableScan)
139 delete cIter;
140 cIter = NULL;
141 } else if (scanType_ == hashIndexScan)
143 delete bIter;
144 bIter = NULL;
146 scanType_ = unknownScan;
147 return OK;