mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-03 17:48:17 +00:00

We need to check for rowid alias elsewhere too with ORDER BY, for example, so let's extract a small helper for that.
235 lines
6.5 KiB
Rust
235 lines
6.5 KiB
Rust
use anyhow::Result;
|
|
use core::fmt;
|
|
use fallible_iterator::FallibleIterator;
|
|
use log::trace;
|
|
use sqlite3_parser::{
|
|
ast::{Cmd, CreateTableBody, QualifiedName, Stmt},
|
|
lexer::sql::Parser,
|
|
};
|
|
use std::collections::HashMap;
|
|
|
|
use crate::util::normalize_ident;
|
|
|
|
pub struct Schema {
|
|
pub tables: HashMap<String, Table>,
|
|
}
|
|
|
|
impl Schema {
|
|
pub fn new() -> Self {
|
|
let mut tables: HashMap<String, Table> = HashMap::new();
|
|
tables.insert("sqlite_schema".to_string(), sqlite_schema_table());
|
|
Self { tables }
|
|
}
|
|
|
|
pub fn add_table(&mut self, table: Table) {
|
|
let name = normalize_ident(&table.name);
|
|
self.tables.insert(name, table);
|
|
}
|
|
|
|
pub fn get_table(&self, name: &str) -> Option<&Table> {
|
|
let name = normalize_ident(name);
|
|
self.tables.get(&name)
|
|
}
|
|
}
|
|
|
|
pub struct Table {
|
|
pub root_page: usize,
|
|
pub name: String,
|
|
pub columns: Vec<Column>,
|
|
}
|
|
|
|
impl Table {
|
|
pub fn column_is_rowid_alias(&self, col: &Column) -> bool {
|
|
let composite_primary_key = self
|
|
.columns
|
|
.iter()
|
|
.filter(|col| col.primary_key)
|
|
.count()
|
|
> 1;
|
|
col.primary_key && col.ty == Type::Integer && !composite_primary_key
|
|
}
|
|
|
|
pub fn get_column(&self, name: &str) -> Option<(usize, &Column)> {
|
|
let name = normalize_ident(name);
|
|
for (i, column) in self.columns.iter().enumerate() {
|
|
if column.name == name {
|
|
return Some((i, column));
|
|
}
|
|
}
|
|
None
|
|
}
|
|
|
|
pub fn from_sql(sql: &str, root_page: usize) -> Result<Table> {
|
|
let mut parser = Parser::new(sql.as_bytes());
|
|
let cmd = parser.next()?;
|
|
match cmd {
|
|
Some(cmd) => match cmd {
|
|
Cmd::Stmt(stmt) => match stmt {
|
|
Stmt::CreateTable { tbl_name, body, .. } => {
|
|
create_table(tbl_name, body, root_page)
|
|
}
|
|
_ => {
|
|
anyhow::bail!("Expected CREATE TABLE statement");
|
|
}
|
|
},
|
|
_ => {
|
|
anyhow::bail!("Expected CREATE TABLE statement");
|
|
}
|
|
},
|
|
None => {
|
|
anyhow::bail!("Expected CREATE TABLE statement");
|
|
}
|
|
}
|
|
}
|
|
|
|
#[allow(dead_code)] // used in tests
|
|
pub fn to_sql(&self) -> String {
|
|
let mut sql = format!("CREATE TABLE {} (\n", self.name);
|
|
for (i, column) in self.columns.iter().enumerate() {
|
|
if i > 0 {
|
|
sql.push_str(",\n");
|
|
}
|
|
sql.push_str(" ");
|
|
sql.push_str(&column.name);
|
|
sql.push(' ');
|
|
sql.push_str(&column.ty.to_string());
|
|
}
|
|
sql.push_str(");\n");
|
|
sql
|
|
}
|
|
}
|
|
|
|
fn create_table(tbl_name: QualifiedName, body: CreateTableBody, root_page: usize) -> Result<Table> {
|
|
let table_name = normalize_ident(&tbl_name.name.0);
|
|
trace!("Creating table {}", table_name);
|
|
let mut cols = vec![];
|
|
match body {
|
|
CreateTableBody::ColumnsAndConstraints { columns, .. } => {
|
|
for column in columns {
|
|
let name = column.col_name.0.to_string();
|
|
let ty = match column.col_type {
|
|
Some(data_type) => {
|
|
let type_name = data_type.name.as_str();
|
|
if type_name.contains("INTEGER") {
|
|
Type::Integer
|
|
} else if type_name.contains("CHAR")
|
|
|| type_name.contains("CLOB")
|
|
|| type_name.contains("TEXT")
|
|
{
|
|
Type::Text
|
|
} else if type_name.contains("BLOB") || type_name.is_empty() {
|
|
Type::Blob
|
|
} else if type_name.contains("REAL")
|
|
|| type_name.contains("FLOA")
|
|
|| type_name.contains("DOUB")
|
|
{
|
|
Type::Real
|
|
} else {
|
|
Type::Numeric
|
|
}
|
|
}
|
|
None => Type::Null,
|
|
};
|
|
let primary_key = column.constraints.iter().any(|c| {
|
|
matches!(
|
|
c.constraint,
|
|
sqlite3_parser::ast::ColumnConstraint::PrimaryKey { .. }
|
|
)
|
|
});
|
|
cols.push(Column {
|
|
name,
|
|
ty,
|
|
primary_key,
|
|
});
|
|
}
|
|
}
|
|
CreateTableBody::AsSelect(_) => todo!(),
|
|
};
|
|
Ok(Table {
|
|
root_page,
|
|
name: table_name,
|
|
columns: cols,
|
|
})
|
|
}
|
|
|
|
pub struct Column {
|
|
pub name: String,
|
|
pub ty: Type,
|
|
pub primary_key: bool,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
|
pub enum Type {
|
|
Null,
|
|
Text,
|
|
Numeric,
|
|
Integer,
|
|
Real,
|
|
Blob,
|
|
}
|
|
|
|
impl fmt::Display for Type {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
let s = match self {
|
|
Type::Null => "NULL",
|
|
Type::Text => "TEXT",
|
|
Type::Numeric => "NUMERIC",
|
|
Type::Integer => "INTEGER",
|
|
Type::Real => "REAL",
|
|
Type::Blob => "BLOB",
|
|
};
|
|
write!(f, "{}", s)
|
|
}
|
|
}
|
|
|
|
pub fn sqlite_schema_table() -> Table {
|
|
Table {
|
|
root_page: 1,
|
|
name: "sqlite_schema".to_string(),
|
|
columns: vec![
|
|
Column {
|
|
name: "type".to_string(),
|
|
ty: Type::Text,
|
|
primary_key: false,
|
|
},
|
|
Column {
|
|
name: "name".to_string(),
|
|
ty: Type::Text,
|
|
primary_key: false,
|
|
},
|
|
Column {
|
|
name: "tbl_name".to_string(),
|
|
ty: Type::Text,
|
|
primary_key: false,
|
|
},
|
|
Column {
|
|
name: "rootpage".to_string(),
|
|
ty: Type::Integer,
|
|
primary_key: false,
|
|
},
|
|
Column {
|
|
name: "sql".to_string(),
|
|
ty: Type::Text,
|
|
primary_key: false,
|
|
},
|
|
],
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
pub fn test_sqlite_schema() {
|
|
let expected = r#"CREATE TABLE sqlite_schema (
|
|
type TEXT,
|
|
name TEXT,
|
|
tbl_name TEXT,
|
|
rootpage INTEGER,
|
|
sql TEXT);
|
|
"#;
|
|
let actual = sqlite_schema_table().to_sql();
|
|
assert_eq!(expected, actual);
|
|
}
|
|
}
|