Finished up initial sqlite implemention

Co-Authored-By: kay@zed.dev
This commit is contained in:
Mikayla Maki 2022-10-18 15:58:05 -07:00
parent b06366ebb7
commit 84c7aa9cad
11 changed files with 136 additions and 60 deletions

12
Cargo.lock generated
View file

@ -1607,6 +1607,8 @@ dependencies = [
"parking_lot 0.11.2", "parking_lot 0.11.2",
"rusqlite", "rusqlite",
"rusqlite_migration", "rusqlite_migration",
"serde",
"serde_rusqlite",
"tempdir", "tempdir",
] ]
@ -5267,6 +5269,16 @@ dependencies = [
"syn", "syn",
] ]
[[package]]
name = "serde_rusqlite"
version = "0.31.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "538b51f10ee271375cbd9caa04fa6e3e50af431a21db97caae48da92a074244a"
dependencies = [
"rusqlite",
"serde",
]
[[package]] [[package]]
name = "serde_urlencoded" name = "serde_urlencoded"
version = "0.7.1" version = "0.7.1"

View file

@ -40,7 +40,7 @@ pub struct AutoUpdater {
current_version: AppVersion, current_version: AppVersion,
http_client: Arc<dyn HttpClient>, http_client: Arc<dyn HttpClient>,
pending_poll: Option<Task<()>>, pending_poll: Option<Task<()>>,
db: Arc<project::Db>, db: project::Db,
server_url: String, server_url: String,
} }
@ -55,7 +55,7 @@ impl Entity for AutoUpdater {
} }
pub fn init( pub fn init(
db: Arc<project::Db>, db: project::Db,
http_client: Arc<dyn HttpClient>, http_client: Arc<dyn HttpClient>,
server_url: String, server_url: String,
cx: &mut MutableAppContext, cx: &mut MutableAppContext,
@ -116,7 +116,7 @@ impl AutoUpdater {
fn new( fn new(
current_version: AppVersion, current_version: AppVersion,
db: Arc<project::Db>, db: project::Db,
http_client: Arc<dyn HttpClient>, http_client: Arc<dyn HttpClient>,
server_url: String, server_url: String,
) -> Self { ) -> Self {

View file

@ -1072,7 +1072,7 @@ impl Client {
self.peer.respond_with_error(receipt, error) self.peer.respond_with_error(receipt, error)
} }
pub fn start_telemetry(&self, db: Arc<Db>) { pub fn start_telemetry(&self, db: Db) {
self.telemetry.start(db); self.telemetry.start(db);
} }

View file

@ -135,7 +135,7 @@ impl Telemetry {
Some(self.state.lock().log_file.as_ref()?.path().to_path_buf()) Some(self.state.lock().log_file.as_ref()?.path().to_path_buf())
} }
pub fn start(self: &Arc<Self>, db: Arc<Db>) { pub fn start(self: &Arc<Self>, db: Db) {
let this = self.clone(); let this = self.clone();
self.executor self.executor
.spawn( .spawn(

View file

@ -19,6 +19,8 @@ log = { version = "0.4.16", features = ["kv_unstable_serde"] }
parking_lot = "0.11.1" parking_lot = "0.11.1"
rusqlite = { version = "0.28.0", features = ["bundled", "serde_json"] } rusqlite = { version = "0.28.0", features = ["bundled", "serde_json"] }
rusqlite_migration = "1.0.0" rusqlite_migration = "1.0.0"
serde = { workspace = true }
serde_rusqlite = "0.31.0"
[dev-dependencies] [dev-dependencies]
gpui = { path = "../gpui", features = ["test-support"] } gpui = { path = "../gpui", features = ["test-support"] }

View file

@ -1,7 +1,8 @@
mod kvp; mod kvp;
mod migrations; mod migrations;
use std::path::Path; use std::fs;
use std::path::{Path, PathBuf};
use std::sync::Arc; use std::sync::Arc;
use anyhow::Result; use anyhow::Result;
@ -11,58 +12,108 @@ use rusqlite::Connection;
use migrations::MIGRATIONS; use migrations::MIGRATIONS;
#[derive(Clone)]
pub enum Db { pub enum Db {
Real { Real(Arc<RealDb>),
connection: Mutex<Connection>,
in_memory: bool,
},
Null, Null,
} }
// To make a migration: pub struct RealDb {
// Add to the migrations directory, a file with the name: connection: Mutex<Connection>,
// <NUMBER>_<DESCRIPTION>.sql. Migrations are executed in order of number path: Option<PathBuf>,
}
impl Db { impl Db {
/// Open or create a database at the given file path. Falls back to in memory database if the /// Open or create a database at the given directory path.
/// database at the given path is corrupted pub fn open(db_dir: &Path) -> Self {
pub fn open(path: &Path) -> Arc<Self> { // Use 0 for now. Will implement incrementing and clearing of old db files soon TM
Connection::open(path) let current_db_dir = db_dir.join(Path::new("0"));
fs::create_dir_all(&current_db_dir)
.expect("Should be able to create the database directory");
let db_path = current_db_dir.join(Path::new("db.sqlite"));
Connection::open(db_path)
.map_err(Into::into) .map_err(Into::into)
.and_then(|connection| Self::initialize(connection, false)) .and_then(|connection| Self::initialize(connection))
.map(|connection| {
Db::Real(Arc::new(RealDb {
connection,
path: Some(db_dir.to_path_buf()),
}))
})
.unwrap_or_else(|e| { .unwrap_or_else(|e| {
error!( error!(
"Connecting to db failed. Falling back to in memory db. {}", "Connecting to file backed db failed. Reverting to null db. {}",
e e
); );
Self::open_in_memory() Self::Null
}) })
} }
/// Open a in memory database for testing and as a fallback. /// Open a in memory database for testing and as a fallback.
pub fn open_in_memory() -> Arc<Self> { #[cfg(any(test, feature = "test-support"))]
pub fn open_in_memory() -> Self {
Connection::open_in_memory() Connection::open_in_memory()
.map_err(Into::into) .map_err(Into::into)
.and_then(|connection| Self::initialize(connection, true)) .and_then(|connection| Self::initialize(connection))
.map(|connection| {
Db::Real(Arc::new(RealDb {
connection,
path: None,
}))
})
.unwrap_or_else(|e| { .unwrap_or_else(|e| {
error!("Connecting to in memory db failed. Reverting to null db. {}"); error!(
Arc::new(Self::Null) "Connecting to in memory db failed. Reverting to null db. {}",
e
);
Self::Null
}) })
} }
fn initialize(mut conn: Connection, in_memory: bool) -> Result<Arc<Self>> { fn initialize(mut conn: Connection) -> Result<Mutex<Connection>> {
MIGRATIONS.to_latest(&mut conn)?; MIGRATIONS.to_latest(&mut conn)?;
Ok(Arc::new(Self::Real { conn.pragma_update(None, "journal_mode", "WAL")?;
connection: Mutex::new(conn), conn.pragma_update(None, "synchronous", "NORMAL")?;
in_memory, conn.pragma_update(None, "foreign_keys", true)?;
})) conn.pragma_update(None, "case_sensitive_like", true)?;
Ok(Mutex::new(conn))
} }
fn persisting(&self) -> bool { pub fn persisting(&self) -> bool {
self.real().and_then(|db| db.path.as_ref()).is_some()
}
pub fn real(&self) -> Option<&RealDb> {
match self { match self {
Db::Real { in_memory, .. } => *in_memory, Db::Real(db) => Some(&db),
_ => false, _ => None,
} }
} }
} }
impl Drop for Db {
fn drop(&mut self) {
match self {
Db::Real(real_db) => {
let lock = real_db.connection.lock();
let _ = lock.pragma_update(None, "analysis_limit", "500");
let _ = lock.pragma_update(None, "optimize", "");
}
Db::Null => {}
}
}
}
#[cfg(test)]
mod tests {
use crate::migrations::MIGRATIONS;
#[test]
fn test_migrations() {
assert!(MIGRATIONS.validate().is_ok());
}
}

View file

@ -3,7 +3,7 @@ use rusqlite::OptionalExtension;
use super::Db; use super::Db;
pub(crate) const KVP_M_1: &str = " pub(crate) const KVP_M_1_UP: &str = "
CREATE TABLE kv_store( CREATE TABLE kv_store(
key TEXT PRIMARY KEY, key TEXT PRIMARY KEY,
value TEXT NOT NULL value TEXT NOT NULL
@ -12,31 +12,44 @@ CREATE TABLE kv_store(
impl Db { impl Db {
pub fn read_kvp(&self, key: &str) -> Result<Option<String>> { pub fn read_kvp(&self, key: &str) -> Result<Option<String>> {
let lock = self.connection.lock(); self.real()
let mut stmt = lock.prepare_cached("SELECT value FROM kv_store WHERE key = (?)")?; .map(|db| {
let lock = db.connection.lock();
let mut stmt = lock.prepare_cached("SELECT value FROM kv_store WHERE key = (?)")?;
Ok(stmt.query_row([key], |row| row.get(0)).optional()?) Ok(stmt.query_row([key], |row| row.get(0)).optional()?)
} })
.unwrap_or(Ok(None))
pub fn delete_kvp(&self, key: &str) -> Result<()> {
let lock = self.connection.lock();
let mut stmt = lock.prepare_cached("DELETE FROM kv_store WHERE key = (?)")?;
stmt.execute([key])?;
Ok(())
} }
pub fn write_kvp(&self, key: &str, value: &str) -> Result<()> { pub fn write_kvp(&self, key: &str, value: &str) -> Result<()> {
let lock = self.connection.lock(); self.real()
.map(|db| {
let lock = db.connection.lock();
let mut stmt = let mut stmt = lock.prepare_cached(
lock.prepare_cached("INSERT OR REPLACE INTO kv_store(key, value) VALUES ((?), (?))")?; "INSERT OR REPLACE INTO kv_store(key, value) VALUES ((?), (?))",
)?;
stmt.execute([key, value])?; stmt.execute([key, value])?;
Ok(()) Ok(())
})
.unwrap_or(Ok(()))
}
pub fn delete_kvp(&self, key: &str) -> Result<()> {
self.real()
.map(|db| {
let lock = db.connection.lock();
let mut stmt = lock.prepare_cached("DELETE FROM kv_store WHERE key = (?)")?;
stmt.execute([key])?;
Ok(())
})
.unwrap_or(Ok(()))
} }
} }
@ -48,7 +61,7 @@ mod tests {
#[test] #[test]
fn test_kvp() -> Result<()> { fn test_kvp() -> Result<()> {
let db = Db::open_in_memory()?; let db = Db::open_in_memory();
assert_eq!(db.read_kvp("key-1")?, None); assert_eq!(db.read_kvp("key-1")?, None);

View file

@ -1,7 +1,7 @@
use rusqlite_migration::{Migrations, M}; use rusqlite_migration::{Migrations, M};
// use crate::items::ITEMS_M_1; // use crate::items::ITEMS_M_1;
use crate::kvp::KVP_M_1; use crate::kvp::KVP_M_1_UP;
// This must be ordered by development time! Only ever add new migrations to the end!! // This must be ordered by development time! Only ever add new migrations to the end!!
// Bad things will probably happen if you don't monotonically edit this vec!!!! // Bad things will probably happen if you don't monotonically edit this vec!!!!
@ -9,7 +9,7 @@ use crate::kvp::KVP_M_1;
// file system and so everything we do here is locked in _f_o_r_e_v_e_r_. // file system and so everything we do here is locked in _f_o_r_e_v_e_r_.
lazy_static::lazy_static! { lazy_static::lazy_static! {
pub static ref MIGRATIONS: Migrations<'static> = Migrations::new(vec![ pub static ref MIGRATIONS: Migrations<'static> = Migrations::new(vec![
M::up(KVP_M_1), M::up(KVP_M_1_UP),
// M::up(ITEMS_M_1), // M::up(ITEMS_M_1),
]); ]);
} }

View file

@ -52,11 +52,9 @@ fn main() {
.or_else(|| app.platform().app_version().ok()) .or_else(|| app.platform().app_version().ok())
.map_or("dev".to_string(), |v| v.to_string()); .map_or("dev".to_string(), |v| v.to_string());
init_panic_hook(app_version, http.clone(), app.background()); init_panic_hook(app_version, http.clone(), app.background());
let db = app.background().spawn(async move { let db = app
project::Db::open(&*zed::paths::DB) .background()
.log_err() .spawn(async move { project::Db::open(&*zed::paths::DB_DIR) });
.unwrap_or_else(project::Db::open_in_memory())
});
load_embedded_fonts(&app); load_embedded_fonts(&app);

View file

@ -6,7 +6,6 @@ lazy_static::lazy_static! {
pub static ref LOGS_DIR: PathBuf = HOME.join("Library/Logs/Zed"); pub static ref LOGS_DIR: PathBuf = HOME.join("Library/Logs/Zed");
pub static ref LANGUAGES_DIR: PathBuf = HOME.join("Library/Application Support/Zed/languages"); pub static ref LANGUAGES_DIR: PathBuf = HOME.join("Library/Application Support/Zed/languages");
pub static ref DB_DIR: PathBuf = HOME.join("Library/Application Support/Zed/db"); pub static ref DB_DIR: PathBuf = HOME.join("Library/Application Support/Zed/db");
pub static ref DB: PathBuf = DB_DIR.join("zed.sqlite");
pub static ref SETTINGS: PathBuf = CONFIG_DIR.join("settings.json"); pub static ref SETTINGS: PathBuf = CONFIG_DIR.join("settings.json");
pub static ref KEYMAP: PathBuf = CONFIG_DIR.join("keymap.json"); pub static ref KEYMAP: PathBuf = CONFIG_DIR.join("keymap.json");
pub static ref LAST_USERNAME: PathBuf = CONFIG_DIR.join("last-username.txt"); pub static ref LAST_USERNAME: PathBuf = CONFIG_DIR.join("last-username.txt");

View file

@ -63,6 +63,7 @@ actions!(
DecreaseBufferFontSize, DecreaseBufferFontSize,
ResetBufferFontSize, ResetBufferFontSize,
InstallCommandLineInterface, InstallCommandLineInterface,
ResetDatabase,
] ]
); );