From 9ee17f15bb380d31d55d83586ebdf3644cf326af Mon Sep 17 00:00:00 2001 From: Ben Morrison Date: Tue, 27 Aug 2019 00:50:51 -0400 Subject: fleshing out types --- src/db.rs | 81 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/main.rs | 2 ++ 2 files changed, 83 insertions(+) create mode 100644 src/db.rs (limited to 'src') diff --git a/src/db.rs b/src/db.rs new file mode 100644 index 0000000..d3ecd6a --- /dev/null +++ b/src/db.rs @@ -0,0 +1,81 @@ +use rusqlite; +use std::sync::mpsc; + +#[derive(Debug)] +pub struct Post { + id: u32, + title: String, + author: String, + body: String, +} + +pub struct Conn { + db: rusqlite::Connection, + tx: mpsc::Sender, +} + +#[derive(Debug)] +pub enum Cmd { + Create, + Update, + Disconnect, + NOOP, +} + +impl Conn { + fn init() -> rusqlite::Connection { + let conn = rusqlite::Connection::open_with_flags( + "/tmp/db.sql", + rusqlite::OpenFlags::SQLITE_OPEN_FULL_MUTEX + | rusqlite::OpenFlags::SQLITE_OPEN_CREATE + | rusqlite::OpenFlags::SQLITE_OPEN_READ_WRITE, + ) + .expect("Could not connect to DB"); + + conn.execute( + "CREATE TABLE IF NOT EXISTS posts ( + id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, + title TEXT NOT NULL, + author TEXT NOT NULL, + body TEXT NOT NULL + )", + rusqlite::NO_PARAMS, + ) + .expect("Could not initialize DB"); + + conn + } + + pub fn new(tx: mpsc::Sender) -> Self { + Conn { + db: Conn::init(), + tx, + } + } +} + +impl Cmd { + pub fn new(txt: &str) -> Self { + match txt { + "create" => Cmd::Create, + "update" => Cmd::Update, + "disconnect" => Cmd::Disconnect, + _ => Cmd::NOOP, + } + } +} + +impl Post { + pub fn id(&self) -> String { + format!("{}", self.id) + } + pub fn title(&self) -> String { + self.title.clone() + } + pub fn author(&self) -> String { + self.author.clone() + } + pub fn body(&self) -> String { + self.body.clone() + } +} diff --git a/src/main.rs b/src/main.rs index 848bafd..9bc08ad 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,5 @@ +mod db; + fn main() { println!("clinte-0.1-dev"); println!("a community notices system"); -- cgit 1.4.1-2-gfad0