-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtableCatalogue.cpp
61 lines (56 loc) · 1.45 KB
/
tableCatalogue.cpp
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
#include "global.h"
void TableCatalogue::insertTable(Table* table)
{
logger.log("TableCatalogue::~insertTable");
this->tables[table->tableName] = table;
}
void TableCatalogue::deleteTable(string tableName)
{
logger.log("TableCatalogue::deleteTable");
this->tables[tableName]->unload();
delete this->tables[tableName];
this->tables.erase(tableName);
}
Table* TableCatalogue::getTable(string tableName)
{
logger.log("TableCatalogue::getTable");
Table *table = this->tables[tableName];
return table;
}
bool TableCatalogue::isTable(string tableName)
{
logger.log("TableCatalogue::isTable");
if (this->tables.count(tableName))
return true;
return false;
}
bool TableCatalogue::isColumnFromTable(string columnName, string tableName)
{
logger.log("TableCatalogue::isColumnFromTable");
if (this->isTable(tableName))
{
Table* table = this->getTable(tableName);
if (table->isColumn(columnName))
return true;
}
return false;
}
void TableCatalogue::print()
{
logger.log("TableCatalogue::print");
cout << "\nRELATIONS" << endl;
int rowCount = 0;
for (auto rel : this->tables)
{
cout << rel.first << endl;
rowCount++;
}
printRowCount(rowCount);
}
TableCatalogue::~TableCatalogue(){
logger.log("TableCatalogue::~TableCatalogue");
for(auto table: this->tables){
table.second->unload();
delete table.second;
}
}