db.h 2.2 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 & Wangyunlai on 2021/5/12.
羽飞's avatar
羽飞 已提交
13 14
//

羽飞's avatar
羽飞 已提交
15
#pragma once
羽飞's avatar
羽飞 已提交
16 17 18 19

#include <vector>
#include <string>
#include <unordered_map>
20
#include <memory>
羽飞's avatar
羽飞 已提交
21

羽飞's avatar
羽飞 已提交
22
#include "common/rc.h"
羽飞's avatar
羽飞 已提交
23 24 25
#include "sql/parser/parse_defs.h"

class Table;
羽飞's avatar
羽飞 已提交
26
class CLogManager;
羽飞's avatar
羽飞 已提交
27

28 29 30 31 32 33 34
/**
 * @brief 一个DB实例负责管理一批表
 * @details 当前DB的存储模式很简单,一个DB对应一个目录,所有的表和数据都放置在这个目录下。
 * 启动时,从指定的目录下加载所有的表和元数据。
 */
class Db
{
羽飞's avatar
羽飞 已提交
35 36 37 38
public:
  Db() = default;
  ~Db();

39 40 41 42 43 44 45
  /**
   * @brief 初始化一个数据库实例
   * @details 从指定的目录下加载指定名称的数据库。这里就会加载dbpath目录下的数据。
   * @param name   数据库名称
   * @param dbpath 当前数据库放在哪个目录下
   * @note 数据库不是放在dbpath/name下,是直接使用dbpath目录
   */
羽飞's avatar
羽飞 已提交
46 47 48 49 50
  RC init(const char *name, const char *dbpath);

  RC create_table(const char *table_name, int attribute_count, const AttrInfo *attributes);

  Table *find_table(const char *table_name) const;
51
  Table *find_table(int32_t table_id) const;
羽飞's avatar
羽飞 已提交
52 53 54 55 56 57

  const char *name() const;

  void all_tables(std::vector<std::string> &table_names) const;

  RC sync();
58

59
  RC recover();
羽飞's avatar
羽飞 已提交
60

61
  CLogManager *clog_manager();
羽飞's avatar
羽飞 已提交
62

羽飞's avatar
羽飞 已提交
63 64 65 66
private:
  RC open_all_tables();

private:
67 68 69
  std::string name_;
  std::string path_;
  std::unordered_map<std::string, Table *> opened_tables_;
70 71 72 73
  std::unique_ptr<CLogManager> clog_manager_;

  /// 给每个table都分配一个ID,用来记录日志。这里假设所有的DDL都不会并发操作,所以相关的数据都不上锁
  int32_t next_table_id_ = 0;
羽飞's avatar
羽飞 已提交
74
};