1 /***************************************************************************
2 * Copyright (C) 2007 by www.databasecache.com *
3 * Contact: praba_tuty@databasecache.com *
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. *
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. *
15 ***************************************************************************/
18 #include<CatalogTables.h>
22 //does not check for duplicates
23 DbRetVal
FieldList::append(FieldDef fDef
)
25 FieldNode
*newNode
= new FieldNode();
26 newNode
->fldDef
= fDef
;
28 //If this is the first node, set it as head
29 if (NULL
== head
) { head
= newNode
; return OK
; }
31 FieldNode
*iter
= head
;
32 while (NULL
!= iter
->next
) iter
= iter
->next
;
38 DbRetVal
FieldList::remove(const char* fldName
)
42 printError(ErrNotExists
, "There are no elements in the list. Empty list");
45 FieldNode
*iter
= head
, *prev
= head
;
46 while (iter
->next
!= NULL
)
48 if (0 == strcmp(iter
->fldDef
.fldName_
, fldName
))
50 prev
->next
= iter
->next
;
56 if( iter
== head
) // there is only one node in the list
58 if (0 == strcmp(iter
->fldDef
.fldName_
, fldName
))
66 if( prev
== head
) // there are only two node in the list
68 if (0 == strcmp(iter
->fldDef
.fldName_
, fldName
))
75 printError(ErrNotFound
, "There are no elements in the list");
79 DbRetVal
FieldList::removeAll()
81 if (NULL
== head
) return OK
;
82 FieldNode
*iter
= head
, *next
= head
;
83 while (iter
->next
!= NULL
)
89 delete iter
; //deleting the last element
97 FieldNode
*iter
= head
;
105 //-1->if val is passed NULL
106 //-2->if fld is not present
107 DbRetVal
FieldList::updateBindVal(const char *fldName
, void *val
,
110 if (NULL
== val
&& isNullExplicit
== false)
112 printError(ErrBadArg
, "Value passed is NULL");
115 FieldNode
*iter
= head
;
118 if (strcmp(iter
->fldDef
.fldName_
, fldName
) == 0)
120 if (NULL
== val
) iter
->fldDef
.isNullExplicit_
= true;
121 else iter
->fldDef
.bindVal_
= val
;
126 printError(ErrNotFound
, "Field not present in the list");
129 void *FieldList::getBindField(const char *fldName
)
131 FieldNode
*iter
= head
;
134 if (strcmp(iter
->fldDef
.fldName_
, fldName
) == 0)
136 return iter
->fldDef
.bindVal_
;
140 printError(ErrNotFound
, "Field not present in the list");
143 void FieldList::fillFieldInfo(int fldpos
, void *inp
)
146 FieldNode
*iter
= head
;
147 while (pos
<fldpos
) { iter
= iter
->next
; pos
++; }
148 FieldInfoValue
*info
= (FieldInfoValue
*) inp
;
149 strcpy(info
->fldName
, iter
->fldDef
.fldName_
);
150 info
->length
= iter
->fldDef
.length_
;
151 info
->type
= iter
->fldDef
.type_
;
152 info
->offset
= iter
->fldDef
.offset_
;
153 info
->isNullable
= iter
->fldDef
.isNull_
;
154 info
->isPrimary
= iter
->fldDef
.isPrimary_
;
155 info
->isUnique
= iter
->fldDef
.isUnique_
;
156 info
->isAutoIncrement
= iter
->fldDef
.isAutoIncrement_
;
159 DbRetVal
FieldList::getFieldInfo(const char *fldName
, FieldInfo
*&info
)
162 FieldNode
*iter
= head
;
163 if ('*' == fldName
[0])
165 //the above is for count(*)
166 strcpy(info
->fldName
, iter
->fldDef
.fldName_
);
167 info
->length
= iter
->fldDef
.length_
;
168 info
->type
= iter
->fldDef
.type_
;
169 info
->offset
= iter
->fldDef
.offset_
;
170 info
->isDefault
= iter
->fldDef
.isDefault_
;
172 strcpy(info
->defaultValueBuf
, iter
->fldDef
.defaultValueBuf_
);
173 info
->isNull
= iter
->fldDef
.isNull_
;
174 info
->isPrimary
= iter
->fldDef
.isPrimary_
;
175 info
->isUnique
= iter
->fldDef
.isUnique_
;
176 info
->isAutoIncrement
= iter
->fldDef
.isAutoIncrement_
;
182 if (0 == strcmp(iter
->fldDef
.fldName_
, fldName
))
184 strcpy(info
->fldName
, iter
->fldDef
.fldName_
);
185 info
->length
= iter
->fldDef
.length_
;
186 info
->type
= iter
->fldDef
.type_
;
187 info
->offset
= iter
->fldDef
.offset_
;
188 info
->isDefault
= iter
->fldDef
.isDefault_
;
189 strcpy(info
->defaultValueBuf
, iter
->fldDef
.defaultValueBuf_
);
190 info
->isNull
= iter
->fldDef
.isNull_
;
191 info
->isPrimary
= iter
->fldDef
.isPrimary_
;
192 info
->isUnique
= iter
->fldDef
.isUnique_
;
193 info
->isAutoIncrement
= iter
->fldDef
.isAutoIncrement_
;
201 int FieldList::getFieldOffset(const char *fldName
)
203 FieldNode
*iter
= head
;
207 if (0 == strcmp(iter
->fldDef
.fldName_
, fldName
))
211 if (iter
->fldDef
.type_
!= typeVarchar
)
212 offset
= offset
+ iter
->fldDef
.length_
;
213 else offset
= offset
+ sizeof(void *);
218 int FieldList::getFieldOffset(int fldpos
)
220 if (fldpos
< 1) return -1;
221 FieldNode
*iter
= head
;
226 if (counter
== fldpos
-1)
230 if (iter
->fldDef
.type_
!= typeVarchar
)
231 offset
= offset
+ iter
->fldDef
.length_
;
232 else offset
= offset
+ sizeof(void *);
239 //Returns position of field in the list
240 //Count starting from 1
241 //-1 if field not found in the list
242 int FieldList::getFieldPosition(const char *fldName
)
244 char onlyFldName
[IDENTIFIER_LENGTH
];
245 Table::getFieldNameAlone((char*)fldName
, onlyFldName
);
247 FieldNode
*iter
= head
;
250 if (0 == strcmp(iter
->fldDef
.fldName_
, onlyFldName
))
259 int FieldList::getTupleSize()
261 FieldNode
*iter
= head
;
265 if (iter
->fldDef
.type_
== typeVarchar
) offset
+= sizeof(void *);
266 else offset
= offset
+ iter
->fldDef
.length_
;
274 DataType
FieldList::getFieldType(const char *fldName
)
276 FieldNode
*iter
= head
;
280 if (0 == strcmp(iter
->fldDef
.fldName_
, fldName
))
282 return iter
->fldDef
.type_
;
289 //-1->if field not present in list
290 size_t FieldList::getFieldLength(const char *fldName
)
292 FieldNode
*iter
= head
;
296 if (0 == strcmp(iter
->fldDef
.fldName_
, fldName
))
298 return iter
->fldDef
.length_
;
306 //No check for duplicates
307 //TODO::User exposed so check for duplicates
308 DbRetVal
FieldNameList::append(const char *name
)
310 FieldNameNode
*newNode
= new FieldNameNode();
311 strcpy(newNode
->fldName
, name
);
312 newNode
->next
= NULL
;
313 //If this is the first node, set it as head
314 if (NULL
== head
) { head
= newNode
; return OK
; }
316 FieldNameNode
*it
= head
;
317 while (NULL
!= it
->next
) it
= it
->next
;
321 //-1 -> if there is nothing in list
322 //-2 -> if it is not present in list
323 DbRetVal
FieldNameList::remove(const char* name
)
327 printError(ErrNotExists
, "List is empty");
330 FieldNameNode
*ite
= head
, *prev
= head
;
331 while (ite
->next
!= NULL
)
333 if (0 == strcmp(ite
->fldName
, name
))
335 prev
->next
= ite
->next
;
341 if( ite
== head
) // there is only one node in the list
343 if (0 == strcmp(ite
->fldName
, name
))
351 if( prev
== head
) // there are only two node in the list
353 if (0 == strcmp(ite
->fldName
, name
))
360 printError(ErrNotFound
, "Field name %s not present in the list", name
);
364 DbRetVal
FieldNameList::removeAll()
366 if (NULL
== head
) return OK
;
367 FieldNameNode
*iter
= head
, *next
= head
;
368 while (iter
->next
!= NULL
)
374 delete iter
; //deleting the last element
379 char* FieldNameList::nextFieldName()
381 if (iter
== NULL
) return NULL
;
382 FieldNameNode
*node
= iter
;
384 return node
->fldName
;
387 int FieldNameList::size()
389 FieldNameNode
*it
= head
;
390 if (NULL
== it
) return 0;
392 while (NULL
!= it
->next
) {it
= it
->next
; count
++;}