feat: config module implemented

This commit is contained in:
2026-05-31 13:20:01 +02:00
parent ef206958a6
commit cc22d3b719
4 changed files with 42 additions and 14 deletions

View File

@@ -1,5 +1 @@
database_source localhost
database_port 666
database_user wordsmith
database_password wordsmith
database_name wordsmith
database_path localhost

View File

@@ -1,17 +1,12 @@
use std::{env, fs::read_to_string};
use crate::modules::config::read_config;
const DEFAULT_CONFIG_PATH: &'static str = "./src/assets/wordsmith_default.conf";
mod modules;
fn main() {
let args: Vec<String> = env::args().collect();
let config = read_config(None); // TODO: read config from param
println!("Hello, world!");
for line in read_to_string(DEFAULT_CONFIG_PATH).unwrap().lines() {
if let Some((key, value)) = line.split_once(" ") {
println!("Config {0} {1}", key, value);
}
}
// CREATE DB IF DOES NOT EXISTS
}

36
src/modules/config/mod.rs Normal file
View File

@@ -0,0 +1,36 @@
use std::fs::read_to_string;
#[derive(Clone)]
pub struct Config {
pub database_path: String,
}
const DEFAULT_CONFIG_PATH: &'static str = "./src/assets/wordsmith_default.conf";
const DEFAULT_DATABASE_PATH: &'static str = "~/.config/wordsmith/wordsmith.db";
pub fn read_config(path: Option<&str>) -> Config {
let target_path: &str = {
if let Some(p) = path {
p
} else {
DEFAULT_CONFIG_PATH
}
};
let mut config = Config {
database_path: DEFAULT_DATABASE_PATH.to_string(),
};
for line in read_to_string(target_path).unwrap().lines() {
if let Some((key, value)) = line.split_once(" ") {
match key {
"database_path" => {
config.database_path = value.to_string();
}
_ => {}
}
}
}
config
}

1
src/modules/mod.rs Normal file
View File

@@ -0,0 +1 @@
pub mod config;