/* Copyright (c) 2021 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. */ // // Created by Wangyunlai on 2023/03/07. // #pragma once #include #include "common/types.h" 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]; };