This repository was archived by the owner on Jun 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCatalog.cpp
More file actions
492 lines (455 loc) · 13.5 KB
/
Copy pathCatalog.cpp
File metadata and controls
492 lines (455 loc) · 13.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
#include<iostream>
#include<string>
#include<sstream>
#include<fstream>
#include<vector>
#include <cstdlib>
#include"Catalog.h"
using namespace std;
Catalog::Catalog() {
cat.clear();
cat_index.clear();
catFile = "./data/Cat.txt";
catIndFile = "./data/CatIndex.txt";
fstream fileC, fileInd;
fileC.open(catFile.c_str(), ios::in);
fileInd.open(catIndFile.c_str(), ios::in);
if (!fileC) {
fileC.open(catFile.c_str(), ios::out);
//cout << catFile << " creat successfully" << endl;
} else {
//cout << catFile << " exit" << endl;
getline(fileC, bufCat);
mapTable();
}
if (!fileInd) {
fileInd.open(catIndFile.c_str(), ios::out);
//cout << catFile << " create successfully" << endl;
} else {
//cout << catIndFile << " exit" << endl;
getline(fileInd, bufInd);
mapIndex();
}
fileC.close();
fileInd.close();
}
Catalog::~Catalog() {
fstream fileC, fileInd;
fileC.open(catFile.c_str(), ios::out);
fileInd.open(catIndFile.c_str(), ios::out);
if (!fileC) {
throw runtime_error( "Catalog:error in write the data back to file TABLE!" );
cout << catFile << "can not open" << endl;
} else {
//cout << catFile << "open" << endl;
fileC << bufCat << endl;
}
if (!fileInd) {
throw runtime_error( "Catalog:error in write the data back to file INDEX!" );
//cout << catIndFile << "can not open" << endl;
} else {
//cout << catIndFile << "open" << endl;
fileInd << bufInd << endl;
}
bufCat.clear();
bufInd.clear();
cat.clear();
cat_index.clear();
}
bool Catalog::invertToInt(string s, int &x) {
x = atoi(s.c_str());
return true;
}
void Catalog::mapTable() {
string str;
istringstream is;
string s, tablename;
int pos = 0, length, position;
while (pos < bufCat.length()) {
str = bufCat.substr(pos, bufCat.length() - pos);
is.str(str);
is >> s;
if (!invertToInt(s, position)) {
//errror condition
return;
}
pos = position + s.size();
is >> s;
if (!invertToInt(s, length)) {
//errror condition
return;
}
pos = pos + length + s.size() + 2;
is >> tablename;
is >> s;
if (s == "1") {
//cout << "map this table named " << tablename << endl;
cat.insert(pair<string, int>(tablename, position));
}
}
}
bool Catalog::hasTable(const string &tablename) {
int pos;
if (cat.find(tablename) != cat.end())
pos = cat[tablename];
else
return false;
string str = bufCat.substr(pos, bufCat.length() - pos);
istringstream is(str);
string s;
is >> s;
is >> s;
is >> s;
is >> s;
//cout<<"the valid of this table is "<<s<<endl;
if (s == "1") {
return true;
} else if (s == "0")
return false;
else {
//errror condition
return false;
}
}
void Catalog::addTable(TableStruct &table) {
ostringstream os, os2;
int pos1, epos;
if (hasTable(table.tableName)) {
//error condtion
throw runtime_error( "Catalog:This tabel has already existed!" );
}
os.clear();
os2.clear();
os << table.tableName;
os << ' ';
os << true;
os << ' ';
os << table.attrs.size();
os << ' ';
for (int i = 0; i < table.attrs.size(); i++) {
os << table.attrs[i].attrName;
os << ' ';
os << table.attrs[i].type;
os << ' ';
os << table.attrs[i].unique;
os << ' ';
os << table.attrs[i].isIndex;
os << ' ';
}
os << table.hasIndex;
os << ' ';
os << table.tupleNum;
os << ' ';
os << ';';
os << ' ';
pos1 = bufCat.size();
epos = os.str().size();
os2 << pos1 << ' ' << epos << ' ' << os.str();
bufCat += os2.str();
cat.insert(pair<string, int>(table.tableName, pos1));
//cout << "add this table successfully" << endl;
}
void Catalog::deleteTable(const string &tablename) {
if (!hasTable(tablename)) {
//cout<<hasTable(tablename)<<endl;
//error condtion
throw runtime_error( "Catalog:This table do not exist while deletetable!" );
}
int pos = cat[tablename];
string str = bufCat.substr(pos, bufCat.length() - pos);
istringstream is(str);
string s;
int position = pos;
dropTableIndex(tablename);
is >> s;
position = position + s.size() + 1;
is >> s;
position = position + s.size() + 1;
is >> s;
position = position + s.size() + 1;
//cout<<"before:the valid of this table is "<<bufCat[position]<<endl;
bufCat[position] = '0';
//cout<<"after:the valid of this table is "<<bufCat[position]<<endl;
cat.erase(tablename);
//cout << "delete this table successfully" << endl;
}
void Catalog::Print_T(TableStruct& table) {
int i;
cout<<"show this table: "<<table.tableName<<" "<<table.hasIndex<<endl;
for(i=0; i<table.attrs.size(); i++) {
cout<<table.attrs[i].attrName<<' '<<table.attrs[i].type<<' ';
cout<<table.attrs[i].unique<<' '<<table.attrs[i].isIndex<<endl;
}
cout<<' '<<table.tupleNum<<endl;
}
TableStruct &Catalog::getTable(const string &tablename) {
if (!hasTable(tablename)) {
//error condition
throw runtime_error( "Catalog:This table do not exist while get table!" );
//cout << "error! don't exit this table " << tablename << endl;
}
bool hasIndex;
size_t tupleNum;
int pos = cat[tablename];
vector<Attribute> attrs;
string str = bufCat.substr(pos, bufCat.length() - pos);
istringstream is(str);
string s;
int i, num;
is >> s;
is >> s;
is >> s;
is >> s;
is >> s;
invertToInt(s, i);
for (; i > 0; i--) {
Attribute *temp = new Attribute;
is >> temp->attrName;
is >> s;
if (s == "-1")
temp->type = -1;
else {
invertToInt(s, num);
temp->type = num;
}
is >> s;
invertToInt(s, num);
temp->unique = num;
is >> s;
invertToInt(s, num);
temp->isIndex = num;
attrs.push_back(*temp);
}
is >> s;
invertToInt(s, num);
hasIndex = num;
is >> s;
invertToInt(s, num);
tupleNum = num;
is >> s;
if (s != ";") {
//error condition
throw runtime_error("Catalog:invalid query format in FILE in getTable!");
}
TableStruct *table = new TableStruct(tablename, attrs, hasIndex, tupleNum);
//Print_T(*table);
return *table;
}
bool Catalog::dropTableIndex(const string &tablename) {
TableStruct &table = getTable(tablename);
string indexname, attriname, name;
for (int i = 0; i < table.attrs.size(); i++) {
if (table.attrs[i].isIndex) {
//cout<<"has index!"<<endl;
attriname = table.attrs[i].attrName;
name = tablename + '_' + attriname;
//cout<<"name: "<<name<<"in the dropTableIndex"<<endl;
indexname = table_index[name];
//cout<<"indexname: "<<indexname<<"in the dropTableIndex"<<endl;
deleteIndex(indexname);
table_index.erase(name);
}
}
}
void Catalog::writeback(TableStruct &table) {
int pos = cat[table.tableName];
string str = bufCat.substr(pos, bufCat.length() - pos);
istringstream is(str);
string s;
ostringstream os, os2;
int pos_b = 0, epos_b = 0;
int pos1, epos;
is >> s;
invertToInt(s, pos_b);
pos1 = pos_b;
is >> s;
invertToInt(s, epos_b);
//cout<<"the normal pos_b is: "<<pos_b<<endl;
//cout<<"the normal epos_b is: "<<epos_b<<endl;
os.clear();
os2.clear();
os << table.tableName;
os << ' ';
os << true;
os << ' ';
os << table.attrs.size();
os << ' ';
for (int i = 0; i < table.attrs.size(); i++) {
os << table.attrs[i].attrName;
os << ' ';
os << table.attrs[i].type;
os << ' ';
os << table.attrs[i].unique;
os << ' ';
os << table.attrs[i].isIndex;
os << ' ';
}
os << table.hasIndex;
os << ' ';
os << table.tupleNum;
os << ' ';
os << ';';
os << ' ';
epos = os.str().size();
os2 << pos1 << ' ' << epos << ' ' << os.str();
//cout<<"the now pos1 is: "<<pos1<<endl;
//cout<<"the now epos is: "<<epos<<endl;
if (epos_b != epos) {
throw runtime_error( "Catalog:the wrong length of new table while write back!" );
} else {
bufCat.replace(pos_b, os2.str().size(), os2.str());
}
}
void Catalog::mapIndex() {
string str;
istringstream is;
string s, indexname, tablename, attriname, name;
int pos = 0, length, position;
while (pos < bufInd.length()) {
str = bufInd.substr(pos, bufInd.length() - pos);
is.str(str);
is >> s;
if (!invertToInt(s, position)) {
//errror condition
throw runtime_error( "Catalog:Can invert while mapIndex!" );
//return;
}
pos = position + s.size();
is >> s;
if (!invertToInt(s, length)) {
//errror condition
throw runtime_error( "Catalog:Can invert while mapIndex!" );
//return;
}
pos = pos + length + s.size() + 2;
is >> indexname;
is >> s;
if (s == "1") {
//cout << "map this index named " << indexname << endl;
cat_index.insert(pair<string, int>(indexname, position));
}
is >> tablename;
is >> attriname;
name = tablename + '_' + attriname;
table_index.insert(pair<string, string>(name, indexname));
is>>s;
}
}
bool Catalog::hasIndex(const string &indexname) {
int pos;
//cout<<"hasIndex: "<<indexname<<endl;
//cout<<"in the has INdex module: "<<cat_index[indexname]<<endl;
if (cat_index.find(indexname) != cat_index.end())
pos = cat_index[indexname];
else
return false;
string str = bufInd.substr(pos, bufInd.length() - pos);
istringstream is(str);
string s;
is >> s;
is >> s;
is >> s;
if (s != indexname) {
//error condition
return false;
}
is >> s;
//cout<<"the valid of this table is "<<s<<endl;
if (s == "1") {
return true;
} else if (s == "0")
return false;
else {
//error condition
return false;
}
}
void Catalog::addIndex(const string &tablename, const string &indexname, const string &attriname) {
ostringstream os, os2;
int pos1, epos;
string name;
int i;
if (hasIndex(indexname)) {
//error condition
throw runtime_error( "Catalog:This index has already exist while add index!" );
//cout << "this index has already exit" << endl;
return;
}
TableStruct &table = getTable(tablename);
for (i = 0; i < table.attrs.size(); i++) {
if (attriname == table.attrs[i].attrName) {
if (table.attrs[i].unique) {
if (table.attrs[i].isIndex) {
throw runtime_error( "Catalog:This index has already exist in this attribute while add index!" );
} else {
//add the index
table.attrs[i].isIndex = true;
break;
}
} else {
throw runtime_error( "Catalog:Thisattributr is not unique while add index!" );
}
}
}
if (i >= table.attrs.size()) {
//errror posotion
throw runtime_error( "Catalog:This can not add index while add index!" );
}
pos1 = bufInd.size();
name=tablename+'_'+attriname;
os << indexname << ' ' << true << ' ' << tablename << ' ' << attriname << ' '<<';';
epos = os.str().size();
os2 << pos1 << ' ' << epos << ' ' << os.str();
bufInd += os2.str();
cat_index.insert(pair<string, int>(indexname, pos1));
table_index.insert(pair<string,string>(name,indexname));
if (!table.hasIndex) {
table.hasIndex = true;
}
//Print_T(table);
writeback(table);
//cout << "add this index successfully" << endl;
}
void Catalog::deleteIndex(const string &indexname) {
if (!hasIndex(indexname)) {
//error condtion
throw runtime_error( "Catalog:This index do not exit in delete index!" );
//cout << "this index do not exit in delete index!" << endl;
//return;
}
int pos = cat_index[indexname];
string str = bufInd.substr(pos, bufInd.length() - pos);
istringstream is(str);
string s, tablename, attrname;
int position = pos;
int i;
int flag=0;
is >> s;
position = position + s.size() + 1;
is >> s;
position = position + s.size() + 1;
is >> s;
position = position + s.size() + 1;
// cout << "before:the valid of this table is " << bufInd[position] << endl;
bufInd[position] = '0';
//cout << "after:the valid of this table is " << bufInd[position] << endl;
is >> s;
is >> tablename;
TableStruct &table = getTable(tablename);
is >> attrname;
//cout<<attrname<<endl;
for (i = 0,flag=0; i < table.attrs.size(); i++) {
if ((table.attrs[i].attrName != attrname) && (table.attrs[i].isIndex))
{
flag=1;
}
else if (table.attrs[i].attrName == attrname)
table.attrs[i].isIndex = false;
}
if (!flag)
table.hasIndex = false;
writeback(table);
cat_index.erase(indexname);
//Print_T(table);
//cout << "delete this index successfully" << endl;
}