page.h 1.1 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
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>
羽飞's avatar
羽飞 已提交
18
#include "common/types.h"
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

using TrxID = 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];
};