field.h 1.5 KB
Newer Older
羽飞's avatar
羽飞 已提交
1
/* Copyright (c) 2021 OceanBase and/or its affiliates. All rights reserved.
羽飞's avatar
羽飞 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14
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 2022/07/05.
//

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

#include "storage/common/table.h"
#include "storage/common/field_meta.h"

羽飞's avatar
羽飞 已提交
20 21
class Field 
{
羽飞's avatar
羽飞 已提交
22 23 24
public:
  Field() = default;
  Field(const Table *table, const FieldMeta *field) : table_(table), field_(field)
羽飞's avatar
羽飞 已提交
25
  {}
羽飞's avatar
羽飞 已提交
26
  Field(const Field &) = default;
羽飞's avatar
羽飞 已提交
27

L
Longda Feng 已提交
28 29 30 31 32 33 34 35
  const Table *table() const
  {
    return table_;
  }
  const FieldMeta *meta() const
  {
    return field_;
  }
羽飞's avatar
羽飞 已提交
36

羽飞's avatar
羽飞 已提交
37 38 39 40
  AttrType attr_type() const
  {
    return field_->type();
  }
羽飞's avatar
羽飞 已提交
41

L
Longda Feng 已提交
42 43 44 45 46 47 48 49
  const char *table_name() const
  {
    return table_->name();
  }
  const char *field_name() const
  {
    return field_->name();
  }
羽飞's avatar
羽飞 已提交
50

羽飞's avatar
羽飞 已提交
51 52 53 54 55 56 57 58
  void set_table(const Table *table)
  {
    this->table_ = table;
  }
  void set_field(const FieldMeta *field)
  {
    this->field_ = field;
  }
L
Longda Feng 已提交
59

羽飞's avatar
羽飞 已提交
60 61 62
  void set_int(Record &record, int value);
  int  get_int(const Record &record);

63 64
  const char *get_data(const Record &record);

羽飞's avatar
羽飞 已提交
65
private:
羽飞's avatar
羽飞 已提交
66 67
  const Table *table_ = nullptr;
  const FieldMeta *field_ = nullptr;
羽飞's avatar
羽飞 已提交
68
};