default_handler.cpp 4.6 KB
Newer Older
羽飞's avatar
羽飞 已提交
1 2 3 4 5 6 7 8 9 10 11
/* Copyright (c) 2021 Xie Meiyi(xiemeiyi@hust.edu.cn) and OceanBase and/or its affiliates. All rights reserved.
miniob is licensed under Mulan PSL v2.
You can use this software according to the terms and conditions of the Mulan PSL v2.
You may obtain a copy of Mulan PSL v2 at:
         http://license.coscl.org.cn/MulanPSL2
THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
See the Mulan PSL v2 for more details. */

//
12
// Created by Meiyi & Longda on 2021/4/13.
羽飞's avatar
羽飞 已提交
13 14 15 16 17 18 19 20 21
//

#include "storage/default/default_handler.h"

#include <string>

#include "common/os/path.h"
#include "common/log/log.h"
#include "common/lang/string.h"
羽飞's avatar
羽飞 已提交
22
#include "storage/record/record_manager.h"
羽飞's avatar
羽飞 已提交
23
#include "storage/index/bplus_tree.h"
羽飞's avatar
羽飞 已提交
24
#include "storage/table/table.h"
羽飞's avatar
羽飞 已提交
25
#include "storage/common/condition_filter.h"
26
#include "storage/clog/clog.h"
羽飞's avatar
羽飞 已提交
27

羽飞's avatar
羽飞 已提交
28 29 30 31 32 33 34 35 36 37 38
static DefaultHandler *default_handler = nullptr;

void DefaultHandler::set_default(DefaultHandler *handler)
{
  if (default_handler != nullptr && handler != nullptr) {
    LOG_ERROR("default handler is setted");
    abort();
  }
  default_handler = handler;
}

39 40
DefaultHandler &DefaultHandler::get_default()
{
羽飞's avatar
羽飞 已提交
41
  return *default_handler;
羽飞's avatar
羽飞 已提交
42 43
}

44 45
DefaultHandler::DefaultHandler()
{}
羽飞's avatar
羽飞 已提交
46

47 48
DefaultHandler::~DefaultHandler() noexcept
{
羽飞's avatar
羽飞 已提交
49 50 51
  destroy();
}

52 53
RC DefaultHandler::init(const char *base_dir)
{
羽飞's avatar
羽飞 已提交
54 55 56 57 58
  // 检查目录是否存在,或者创建
  std::string tmp(base_dir);
  tmp += "/db";
  if (!common::check_directory(tmp)) {
    LOG_ERROR("Cannot access base dir: %s. msg=%d:%s", tmp.c_str(), errno, strerror(errno));
羽飞's avatar
羽飞 已提交
59
    return RC::INTERNAL;
羽飞's avatar
羽飞 已提交
60 61 62 63 64 65 66 67 68
  }

  base_dir_ = base_dir;
  db_dir_ = tmp + "/";

  LOG_INFO("Default handler init with %s success", base_dir);
  return RC::SUCCESS;
}

69 70
void DefaultHandler::destroy()
{
羽飞's avatar
羽飞 已提交
71 72
  sync();

73
  for (const auto &iter : opened_dbs_) {
羽飞's avatar
羽飞 已提交
74 75 76 77 78
    delete iter.second;
  }
  opened_dbs_.clear();
}

79 80
RC DefaultHandler::create_db(const char *dbname)
{
羽飞's avatar
羽飞 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93 94
  if (nullptr == dbname || common::is_blank(dbname)) {
    LOG_WARN("Invalid db name");
    return RC::INVALID_ARGUMENT;
  }

  // 如果对应名录已经存在,返回错误
  std::string dbpath = db_dir_ + dbname;
  if (common::is_directory(dbpath.c_str())) {
    LOG_WARN("Db already exists: %s", dbname);
    return RC::SCHEMA_DB_EXIST;
  }

  if (!common::check_directory(dbpath)) {
    LOG_ERROR("Create db fail: %s", dbpath.c_str());
羽飞's avatar
羽飞 已提交
95
    return RC::INTERNAL;  // io error
羽飞's avatar
羽飞 已提交
96 97 98 99
  }
  return RC::SUCCESS;
}

100 101
RC DefaultHandler::drop_db(const char *dbname)
{
羽飞's avatar
羽飞 已提交
102
  return RC::INTERNAL;
羽飞's avatar
羽飞 已提交
103 104
}

105 106
RC DefaultHandler::open_db(const char *dbname)
{
羽飞's avatar
羽飞 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
  if (nullptr == dbname || common::is_blank(dbname)) {
    LOG_WARN("Invalid db name");
    return RC::INVALID_ARGUMENT;
  }

  if (opened_dbs_.find(dbname) != opened_dbs_.end()) {
    return RC::SUCCESS;
  }

  std::string dbpath = db_dir_ + dbname;
  if (!common::is_directory(dbpath.c_str())) {
    return RC::SCHEMA_DB_NOT_EXIST;
  }

  // open db
  Db *db = new Db();
  RC ret = RC::SUCCESS;
  if ((ret = db->init(dbname, dbpath.c_str())) != RC::SUCCESS) {
125 126 127 128
    LOG_ERROR("Failed to open db: %s. error=%s", dbname, strrc(ret));
    delete db;
  } else {
    opened_dbs_[dbname] = db;
羽飞's avatar
羽飞 已提交
129
  }
130
  return ret;
羽飞's avatar
羽飞 已提交
131 132
}

133 134
RC DefaultHandler::close_db(const char *dbname)
{
羽飞's avatar
羽飞 已提交
135
  return RC::UNIMPLENMENT;
羽飞's avatar
羽飞 已提交
136 137
}

138 139
RC DefaultHandler::execute(const char *sql)
{
羽飞's avatar
羽飞 已提交
140
  return RC::UNIMPLENMENT;
羽飞's avatar
羽飞 已提交
141 142
}

143 144 145
RC DefaultHandler::create_table(
    const char *dbname, const char *relation_name, int attribute_count, const AttrInfo *attributes)
{
羽飞's avatar
羽飞 已提交
146 147 148 149 150 151 152
  Db *db = find_db(dbname);
  if (db == nullptr) {
    return RC::SCHEMA_DB_NOT_OPENED;
  }
  return db->create_table(relation_name, attribute_count, attributes);
}

153 154
RC DefaultHandler::drop_table(const char *dbname, const char *relation_name)
{
羽飞's avatar
羽飞 已提交
155
  return RC::UNIMPLENMENT;
羽飞's avatar
羽飞 已提交
156 157
}

158 159 160
Db *DefaultHandler::find_db(const char *dbname) const
{
  std::map<std::string, Db *>::const_iterator iter = opened_dbs_.find(dbname);
羽飞's avatar
羽飞 已提交
161 162 163 164 165 166
  if (iter == opened_dbs_.end()) {
    return nullptr;
  }
  return iter->second;
}

167 168
Table *DefaultHandler::find_table(const char *dbname, const char *table_name) const
{
羽飞's avatar
羽飞 已提交
169 170 171 172 173 174 175 176 177 178 179 180
  if (dbname == nullptr || table_name == nullptr) {
    LOG_WARN("Invalid argument. dbname=%p, table_name=%p", dbname, table_name);
    return nullptr;
  }
  Db *db = find_db(dbname);
  if (nullptr == db) {
    return nullptr;
  }

  return db->find_table(table_name);
}

181 182
RC DefaultHandler::sync()
{
羽飞's avatar
羽飞 已提交
183
  RC rc = RC::SUCCESS;
184
  for (const auto &db_pair : opened_dbs_) {
羽飞's avatar
羽飞 已提交
185 186 187 188 189 190 191 192
    Db *db = db_pair.second;
    rc = db->sync();
    if (rc != RC::SUCCESS) {
      LOG_ERROR("Failed to sync db. name=%s, rc=%d:%s", db->name(), rc, strrc(rc));
      return rc;
    }
  }
  return rc;
羽飞's avatar
羽飞 已提交
193
}