page.h 1.6 KB
Newer Older
羽飞's avatar
羽飞 已提交
1
/* Copyright (c) 2021 OceanBase and/or its affiliates. All rights reserved.
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
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. */

//
// Created by Wangyunlai on 2023/03/07.
//

#pragma once

#include <stdint.h>

using TrxID = int32_t;
using SpaceID = int32_t;

/// 磁盘文件,包括存放数据的文件和索引(B+-Tree)文件,都按照页来组织
/// 每一页都有一个编号,称为PageNum
using PageNum = int32_t;

/// 数据文件中按照页来组织,每一页会存放一些行数据(row),或称为记录(record)
/// 每一行(row/record),都占用一个槽位(slot),这些槽有一个编号,称为SlotNum
using SlotNum = int32_t;

/// LSN for log sequence number
using LSN = int32_t;

static constexpr int BP_INVALID_PAGE_NUM = -1;
static constexpr int INVALID_TRX_ID   = -1;
static constexpr int INVALID_LSN      = -1;

static constexpr PageNum BP_HEADER_PAGE   = 0;

static constexpr int LOG_BUFFER_SIZE = 1<<10; // TODO move to log record

static constexpr const int BP_PAGE_SIZE = (1 << 13);
static constexpr const int BP_PAGE_DATA_SIZE = (BP_PAGE_SIZE - sizeof(PageNum) - sizeof(LSN));

struct Page
{
  PageNum page_num;
  LSN     lsn;
  char data[BP_PAGE_DATA_SIZE];
};