Added a utils file

Wanted to separate the higher level config folder stuff from just db module

Because the download module will also want to find cache
This commit is contained in:
2025-08-15 02:00:06 +01:00
parent 5dfdff17c1
commit 1462401787
3 changed files with 62 additions and 37 deletions

View File

@@ -1,23 +1,8 @@
use dir_spec::Dir;
use sqlite; use sqlite;
use std::fs; use std::fs;
use std::path::PathBuf; use std::path::PathBuf;
const DATA_FOLDER: &str = "scryfall"; use super::utils::{create_cache_folder, get_local_data_folder, SQLITE_FILENAME};
const SQLITE_FILENAME: &str = "scryfall_db.sqlite3";
fn get_local_data_folder() -> PathBuf {
let cache_folder = Dir::data_home();
match cache_folder {
None => {
panic!("Can't find a cache folder - really don't know what the problem is sorry");
}
Some(mut f) => {
f.push(DATA_FOLDER);
f
}
}
}
fn get_local_data_sqlite_file() -> PathBuf { fn get_local_data_sqlite_file() -> PathBuf {
let mut folder = get_local_data_folder(); let mut folder = get_local_data_folder();
@@ -25,27 +10,6 @@ fn get_local_data_sqlite_file() -> PathBuf {
folder folder
} }
// NOTE: this should be idempotent - creating a dir always is... right?
pub fn create_cache_folder() {
let f = get_local_data_folder();
let ret = fs::create_dir(&f);
match ret {
Ok(_) => (),
Err(e) => {
if e.raw_os_error().unwrap() == 17 {
// This is folder already exists - which is fine for us
// TODO probably should use e.kind() for better readability
return;
}
panic!(
"Couldn't create folder within your cache folder: {}. Error is {}",
f.display(),
e
);
}
}
}
fn create_db_sql() -> String { fn create_db_sql() -> String {
" "
CREATE TABLE cards ( CREATE TABLE cards (

View File

@@ -6,3 +6,5 @@ pub use crate::deser::ScryfallCard;
mod db; mod db;
pub use db::init_db; pub use db::init_db;
mod utils;

View File

@@ -0,0 +1,59 @@
use dir_spec::Dir;
use std::fs;
use std::path::PathBuf;
pub const LOCAL_FOLDER: &str = "scryfall";
pub const SQLITE_FILENAME: &str = "scryfall_db.sqlite3";
pub fn get_local_data_folder() -> PathBuf {
let data_folder = Dir::data_home();
match data_folder {
None => {
panic!("Can't find a data folder - really don't know what the problem is sorry");
}
Some(mut f) => {
f.push(LOCAL_FOLDER);
f
}
}
}
pub fn get_local_cache_folder() -> PathBuf {
let cache_folder = Dir::cache_home();
match cache_folder {
None => {
panic!("Can't find a cache folder - really don't know what the problem is sorry");
}
Some(mut f) => {
f.push(LOCAL_FOLDER);
f
}
}
}
fn get_local_data_sqlite_file() -> PathBuf {
let mut folder = get_local_data_folder();
folder.push(SQLITE_FILENAME);
folder
}
// NOTE: this should be idempotent - creating a dir always is... right?
pub fn create_cache_folder() {
let f = get_local_data_folder();
let ret = fs::create_dir(&f);
match ret {
Ok(_) => (),
Err(e) => {
if e.raw_os_error().unwrap() == 17 {
// 17 = this is folder already exists - which is fine for us
// TODO probably should use e.kind() for better readability
return;
}
panic!(
"Couldn't create folder within your cache folder: {}. Error is {}",
f.display(),
e
);
}
}
}