iT邦幫忙

2019 iT 邦幫忙鐵人賽

DAY 22
2
Software Development

Let's build a DBMS: StellarSQL -- a minimal SQL DBMS written in Rust系列 第 22

StellarSQL 21: First Implementation for Database Components

21: First Implementation for Database Components

2018/11/5

It's recommended to read on Gitbook

I found that, before I finish the parser and the worker of SQL. I should implement the components of a database first.

So, other modules could use components. No matter the parser or the worker, if there are no information and data of components, they cannot do anything.

There are four layers of a database, which are database, table, field, and datatype.

  • Database has many tables.
  • Table has many fields, and some traits, which are primary_key, foreign_key, and reference_table.
  • Field has datatype, value, not_null, and check
  • Datatype are the same enum as in Symbol

Let's take a look:

!FILENAME component/database.rs

use component::table::Table;
#[derive(Debug, Clone)]
pub struct Database {
    name: String,
    tables: Vec<Table>
}
impl Database {
    fn new(name: &str) -> Database {
        Database {
            name: name.to_string(),
            tables: vec![],
        }
    }
}

!FILENAME component/table.rs

use std::collections::HashMap;
use component::field::Field;
#[derive(Debug, Clone)]
pub struct Table {
    name: String,
    fields: HashMap<String,Field>,
    primary_key: Vec<String>,
    foreign_key: Vec<String>,
    reference_table: Option<String>,
}
impl Table {
    fn new(name: &str) -> Table {
        Table {
            name: name.to_string(),
            fields: HashMap::new(),
            primary_key: vec![],
            foreign_key: vec![],
            reference_table: None,
        }
    }
}

!FILENAME component/field.rs

use component::datatype::DataType;
use component::datatype::Value;
#[derive(Debug, Clone)]
pub struct Field {
    name: String,
    datatype: DataType,
    value: Value,
    not_null: bool,
    check: Checker,
}
#[derive(Debug, Clone)]
pub enum Checker {
    None,
    Some(Operator, Value)
}
#[derive(Debug, Clone)]
enum Operator {
    LT, // <
    LE, // <=
    EQ, // =
    NE, // !=
    GT, // >
    GE, // >=
}
impl Field {
    fn new(name: &str, datatype: DataType, value: Value, not_null: bool, check: Checker) -> Field {
        Field {
            name: name.to_string(),
            datatype,
            value,
            not_null,
            check,
        }
    }
}

!FILENAME component/datatype.rs

#[derive(Debug, Clone)]
pub enum DataType {
    Char,
    Double,
    Float,
    Int,
    Varchar,
}
#[derive(Debug, Clone)]
pub enum Value{
    Char(u8, String),
    Double(f64),
    Float(f32),
    Int(i32),
    Varchar(u8, String),
}

This is just the initialization. I will implement methods later.


Quick Link
1.StellarSQL Repository
2.Gitbook of this series

Author
Liu, An-Chi (劉安齊). A software engineer, who loves writing code and promoting CS to people. Welcome to follow me at Facebook Page. More information on Personal Site and Github.


上一篇
StellarSQL 20: Parser Implementation (4)
下一篇
StellarSQL 22: Update Components of Database
系列文
Let's build a DBMS: StellarSQL -- a minimal SQL DBMS written in Rust30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言