2 #include "catalog/catalog.h"
7 if (!_bfm->FileExists(ALL_TABLE_PATH)){
8 _bfm->createEmptyFile(ALL_TABLE_PATH);
11 char* buffer = _bfm->getPage(ALL_TABLE_PATH, 0, p_Id);
12 _bfm->modifyPage(p_Id);
13 std::string str_buffer = buffer;
14 std::string star =
"*";
15 std::string::size_type idx;
16 idx = str_buffer.find(star);
17 if(idx == std::string::npos)
23 while(buffer[i]!=
'*'){
30 tableNames.emplace(str_buffer.substr(a + 1, i - a - 1));
36 tableNames.emplace(str_buffer.substr(a + 1, i - a - 1));
38 _bfm->flushPage(p_Id);
42 for(
const auto& name : tableNames){
43 auto index_cat = getIndex(name);
44 for (
size_t j = 0; j < index_cat.number; ++j){
45 indexName2tableName.emplace(index_cat.index_name[j], name);
50 CatalogManager::~CatalogManager(){
52 std::string allTableInfo;
53 for (
auto name : tableNames){
54 allTableInfo +=
"@" + name;
58 pageId_t alltable_pId;
59 char *allTableFile = _bfm->
getPage(ALL_TABLE_PATH, 0, alltable_pId);
62 strcpy(allTableFile, allTableInfo.c_str());
66 auto iter = tableNames.find(table_name);
67 return (iter != tableNames.end());
73 for (
int i = 0; i<attr.
num; i++){
74 if(attr_name == attr.
name[i])
81 void CatalogManager::rewriteAttribute(
const std::string &table_name,
const Attribute &attr,
const Index &index)
86 char* buffer = _bfm->
getPage(PATH::CATALOG_PATH + table_name, 0, buffer_pId);
91 std::string attr_index_info_str;
92 attr_index_info_str = std::to_string(attr.
num);
93 for (
int i=0; i<attr.
num; i++){
94 attr_index_info_str +=
" " + std::to_string((
int)attr.type[i]) +
" " + attr.
name[i] +
" " + std::to_string(attr.
is_unique[i]);
96 attr_index_info_str +=
"#" + std::to_string(attr.
primary_Key);
99 attr_index_info_str +=
"#" + std::to_string(index.
number);
100 for (
int i=0; i < index.
number; i++){
101 attr_index_info_str +=
" " + index.
index_name[i] +
" "+ std::to_string(index.
location[i]);
103 attr_index_info_str +=
"\n";
105 auto attr_index_start = str.find_first_of(
'%');
106 attr_index_start += 1;
107 str.replace(attr_index_start, (str.size() - attr_index_start), attr_index_info_str);
109 strcpy(buffer,str.c_str());
132 std::cout<<
"Error the table has already exist!!!"<<std::endl;
133 throw DB_TABLE_ALREADY_EXIST;
136 tableNames.emplace(table_name);
142 _bfm->createEmptyFile(PATH::CATALOG_PATH + table_name);
143 char* buffer = _bfm->
getPage(PATH::CATALOG_PATH + table_name, 0, buffer_pId);
147 str =
"@" + table_name;
148 str = str +
"%" + std::to_string(attr.
num);
149 for (
int i=0; i<attr.
num; i++){
150 str +=
" " + std::to_string((
int)attr.type[i]) +
" " + attr.
name[i] +
" " + std::to_string(attr.
is_unique[i]);
152 str = str +
"#" + std::to_string(attr.
primary_Key);
154 str = str +
"#" + std::to_string(index.
number);
155 for (
int i=0; i < index.
number; i++){
160 strcpy(buffer,str.c_str());
168 tableNames.erase(table_name);
176 throw DB_TABLE_NOT_EXIST;
179 throw DB_COLUMN_NAME_NOT_EXIST;
181 if(index_record.
number>=10){
184 for(
int i=0; i<index_record.
number; i++){
186 throw DB_INDEX_ALREADY_EXIST;
189 throw DB_INDEX_ALREADY_EXIST;
194 for (
int i = 0; i<attr.
num; i++){
195 if(attr_name == attr.
name[i]){
202 rewriteAttribute(table_name, attr, index_record);
217 throw DB_TABLE_NOT_EXIST;
221 for (
int i = 0; i<index_record.
number; i++){
229 throw DB_INDEX_NOT_FOUND;
233 int theLast = index_record.
number;
237 rewriteAttribute(table_name, attr, index_record);
244 char* buffer = _bfm->
getPage(PATH::CATALOG_PATH + table_name,0);
246 std::string table_info = buffer;
247 int current = table_info.find_last_of(
'#');
249 table_info.erase(0, current + 1);
252 while(table_info[current]!=
' '){
255 std::string indexNum;
256 indexNum = table_info.substr(0,current);
257 index_record.
number = atoi(indexNum.c_str());
258 table_info.erase(0, current + 1);
260 if(index_record.
number>10){
263 for(
int i = 0; i<index_record.
number; i++){
265 while(table_info[current]!=
' '){
268 index_record.
index_name[i] = table_info.substr(0,current);
269 table_info.erase(0, current + 1);
272 while(table_info[current]!=
' '){
273 if(table_info[current]==
'\n'){
278 index_record.
location[i] = atoi(table_info.substr(0, current).c_str());
279 table_info.erase(0, current + 1);
287 throw DB_TABLE_NOT_EXIST;
290 char* buffer = _bfm->
getPage(PATH::CATALOG_PATH + table_name,0, p_id);
294 std::string attr_info(buffer);
296 while(attr_info[current] !=
'%'){
301 attr_info.erase(0, current);
303 attr_record.
num = atoi(attr_info.substr(0, 1).c_str());
305 attr_info.erase(0, 2);
307 for(
int i = 0; i < attr_record.
num; i++){
308 for(
int j = 0; j<2; j++){
310 while(attr_info[current] !=
' '){
314 attr_record.type[i] = (BASE_SQL_ValType)atoi(attr_info.substr(0,current).c_str());
316 attr_record.
name[i] = attr_info.substr(0,current);
317 attr_info.erase(0, current+1);
322 while(attr_info[current]!=
' '){
323 if(attr_info[current]==
'#'){
328 if(attr_info.substr(0,current) ==
"1")
333 attr_info.erase(0, current+1);
338 while(attr_info[current]!=
'#'){
341 attr_record.
primary_Key = atoi(attr_info.substr(0,current).c_str());
345 for(
int i=0; i<index_record.
number; i++)
359 for (
int i = 0; i<index_record.
number; i++){
366 throw DB_INDEX_NOT_FOUND;
376 std::cout<<
"Table name:"<<table_name<<std::endl;
380 std::string attr_type;
381 std::cout<<
"Attribute number:"<<attr_record.
num<<std::endl;
382 std::cout <<
"########\n";
383 for(
int i = 0; i<attr_record.
num; i++){
384 switch (attr_record.type[i]){
385 case BASE_SQL_ValType::INT:
388 case BASE_SQL_ValType::FLOAT:
392 attr_type =
"std::string";
396 std::cout<<
"Attr_type : ["<<attr_type <<
"]\n";
397 std::cout<<
"Attr_name : ["<<attr_record.
name[i]<<
"]\n";
398 std::cout <<
"Attr_unique : [" << (attr_record.
is_unique[i] ?
"Yes" :
"No") <<
"]\n";
400 std::cout<<
"Primary Key"<<std::endl;
402 std::cout <<
"#######\n";
404 std::cout<<
"Index number : ["<<index_record.
number<<
"]\n";
405 for (
int i = 0; i<index_record.
number; i++){
406 std::cout<<
"Index name : ["<<index_record.
index_name[i]<<
"]\n";
407 std::cout<<
"Index location : ["<<index_record.
location[i]<<
"]\n";
411 std::string CatalogManager::getIndexName(
const std::string& table_name,
const std::string& attr_name){
415 for(
int i = 0; i < attr.
num; i++)
417 if(attr_name == attr.
name[i]){
422 for(
int j = 0; j < 10; j++)
429 throw DB_INDEX_NOT_FOUND;
432 void CatalogManager::ShowAllTable() {
433 std::cout <<
"----------------------------------------------\n";
434 for (
const auto & name : tableNames){
436 std::cout <<
"-------------------------------------------------\n";