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>
25 void TableDef::reset()
30 int TableDef::addField(const char *name
, DataType type
, size_t length
,
31 const void *defaultValue
, bool notNull
)
33 if (name
== NULL
) return (int)ErrBadArg
;
36 printError(ErrBadRange
,"Field name shpuldnot exceed 64 character");
37 return (int)ErrBadRange
;
39 // The following code checks for duplicates
40 FieldIterator iter
= getFieldIterator();
41 while (iter
.hasElement())
43 FieldDef
*def
= iter
.nextElement();
44 if (! strcmp(def
->fldName_
, name
)) {
45 printError(ErrAlready
, "Field %s already Exists", name
);
46 return (int) ErrAlready
;
50 strcpy(fldDef
.fldName_
, name
);
51 fldDef
.fldName_
[IDENTIFIER_LENGTH
] = '\0';
53 fldDef
.length_
= os::align(length
);
55 if (defaultValue
!= NULL
)
57 fldDef
.isDefault_
= true;
58 if (typeBinary
== type
) {
59 const char *p
= (const char *) defaultValue
;
61 if (! isxdigit((int)(*p
++)) ) {
62 printError(ErrBadArg
, "Invalid hexadecimal value");
63 return (int) ErrBadArg
;
67 os::memcpy(fldDef
.defaultValueBuf_
, defaultValue
, DEFAULT_VALUE_BUF_LENGTH
);
71 fldDef
.isDefault_
= false;
72 os::memset(fldDef
.defaultValueBuf_
,0, DEFAULT_VALUE_BUF_LENGTH
);
74 fldDef
.isNull_
= notNull
;
79 fldDef
.length_
= os::align(length
);
82 fldDef
.length_
= os::align(AllDataType::size(type
));
85 fldDef
.offset_
= fldList
.getTupleSize();
86 int ret
= fldList
.append(fldDef
);
87 if (0 == ret
) fldCount
++;
91 int TableDef::dropField(const char *name
)
93 int ret
= fldList
.remove(name
);
94 if (0 == ret
) fldCount
--;
98 int TableDef::getFieldCount()
103 size_t TableDef::getTupleSize()
106 FieldIterator iter
= getFieldIterator();
107 while (iter
.hasElement())
109 FieldDef
*def
= iter
.nextElement();
110 length
= length
+ os::align(def
->length_
);