submitting patch from enterprise version
[csql.git] / include / Field.h
blob497237ffbc62a122424c9a589af51b891aed7335
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 #ifndef FIELD_H
17 #define FIELD_H
18 #include<os.h>
19 #include<DataType.h>
20 #include<ErrorType.h>
22 //used by FieldNameList
23 class FieldNameNode
25 public:
26 char fldName[IDENTIFIER_LENGTH];
27 FieldNameNode *next;
31 class FieldDef
33 public:
34 FieldDef()
36 init();
38 void init() {
39 type_ = typeUnknown;
40 length_ = 0;
41 offset_ = 0;
42 bindVal_ = NULL;
43 isDefault_ = false;
44 isNull_ = false;
45 isPrimary_ = false;
46 isUnique_ = false;
47 isAutoIncrement_=false;
48 strcpy(fldName_, "");
50 char fldName_[IDENTIFIER_LENGTH];
51 DataType type_;
52 size_t length_;
53 size_t offset_;
54 //currently default value is supported for string and binary
55 //less than length 32 bytes
56 char defaultValueBuf_[DEFAULT_VALUE_BUF_LENGTH];
58 //used only in case of binding fields
59 void *bindVal_;
61 bool isNull_;
62 bool isPrimary_;
63 bool isDefault_;
64 bool isUnique_;
65 bool isAutoIncrement_;
66 //TODO::width and scale
69 class FieldNode
71 public:
72 FieldDef fldDef;
73 FieldNode *next;
77 class FieldIterator
79 public:
80 FieldNode *iter;
81 FieldIterator(FieldNode *ptr) { iter = ptr; }
82 bool hasElement()
84 if (iter == NULL) return false; else return true;
86 FieldDef* nextElement()
88 if (iter == NULL) { return NULL;}
89 FieldNode *node = iter;
90 iter = iter ->next;
91 return &(node->fldDef);
95 class FieldInfo;
97 //Internal class used to implement the field list information
98 //to create the table
99 class FieldList
101 public:
102 FieldNode *head;
103 FieldList(){ head = NULL;}
105 //TODO::pass by reference instead of value
106 DbRetVal append(FieldDef fDef);
108 DbRetVal remove(const char* fldName);
110 DbRetVal removeAll();
112 DbRetVal updateBindVal(const char *fldName, void *val);
113 void * getBindField(const char *fldName);
114 int getFieldOffset(const char *fldName);
115 int getFieldOffset(int fldpos);
117 //Returns position of field in the list:count starting from 1
118 int getFieldPosition(const char *fldName);
120 DataType getFieldType(const char *fldName);
122 size_t getFieldLength(const char *fldName);
124 DbRetVal getFieldInfo(const char *fldName, FieldInfo *&info);
126 int getTupleSize();
128 FieldIterator getIterator()
130 FieldIterator iter(head);
131 return iter;
134 #endif