Add AppState to Controller and split up models
This commit is contained in:
parent
8dc9072fe8
commit
83c1f033d5
11 changed files with 260 additions and 150 deletions
BIN
Cargo.lock
generated
BIN
Cargo.lock
generated
Binary file not shown.
6
Makefile
6
Makefile
|
@ -3,7 +3,7 @@ build:
|
||||||
cargo build
|
cargo build
|
||||||
|
|
||||||
sqlx-prepare:
|
sqlx-prepare:
|
||||||
rm ./emgauwa-dev.sqlite || true
|
rm -f ./emgauwa-dev.sqlite
|
||||||
cargo sqlx database create
|
cargo sqlx database create
|
||||||
cargo sqlx migrate run
|
cargo sqlx migrate run
|
||||||
|
|
||||||
|
@ -14,9 +14,7 @@ build-rpi:
|
||||||
cross build --target arm-unknown-linux-gnueabihf
|
cross build --target arm-unknown-linux-gnueabihf
|
||||||
|
|
||||||
clean-db:
|
clean-db:
|
||||||
rm ./emgauwa-dev.sqlite || true
|
rm ./emgauwa-*.sqlite || true
|
||||||
rm ./emgauwa-core.sqlite || true
|
|
||||||
rm ./emgauwa-controller.sqlite || true
|
|
||||||
$(MAKE) sqlx-prepare
|
$(MAKE) sqlx-prepare
|
||||||
|
|
||||||
format:
|
format:
|
||||||
|
|
|
@ -7,6 +7,8 @@ authors = ["Tobias Reisinger <tobias@msrg.cc>"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
emgauwa-lib = { path = "../emgauwa-lib" }
|
emgauwa-lib = { path = "../emgauwa-lib" }
|
||||||
|
|
||||||
|
actix = "0.13"
|
||||||
|
|
||||||
tokio = { version = "1.34", features = ["io-std", "macros", "rt-multi-thread"] }
|
tokio = { version = "1.34", features = ["io-std", "macros", "rt-multi-thread"] }
|
||||||
tokio-tungstenite = "0.20"
|
tokio-tungstenite = "0.20"
|
||||||
|
|
||||||
|
|
48
emgauwa-controller/src/app_state.rs
Normal file
48
emgauwa-controller/src/app_state.rs
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
use actix::{Actor, Context, Handler, Message};
|
||||||
|
use emgauwa_lib::errors::EmgauwaError;
|
||||||
|
use emgauwa_lib::models::Controller;
|
||||||
|
use futures::executor::block_on;
|
||||||
|
use sqlx::{Pool, Sqlite};
|
||||||
|
|
||||||
|
#[derive(Message)]
|
||||||
|
#[rtype(result = "Result<(), EmgauwaError>")]
|
||||||
|
pub struct Reload {}
|
||||||
|
|
||||||
|
#[derive(Message)]
|
||||||
|
#[rtype(result = "Controller")]
|
||||||
|
pub struct GetThis {}
|
||||||
|
|
||||||
|
pub struct AppState {
|
||||||
|
pub pool: Pool<Sqlite>,
|
||||||
|
pub this: Controller,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl AppState {
|
||||||
|
pub fn new(pool: Pool<Sqlite>, this: Controller) -> AppState {
|
||||||
|
AppState { pool, this }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Actor for AppState {
|
||||||
|
type Context = Context<Self>;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Handler<Reload> for AppState {
|
||||||
|
type Result = Result<(), EmgauwaError>;
|
||||||
|
|
||||||
|
fn handle(&mut self, _msg: Reload, _ctx: &mut Self::Context) -> Self::Result {
|
||||||
|
let mut pool_conn = block_on(self.pool.acquire())?;
|
||||||
|
|
||||||
|
self.this.reload(&mut pool_conn)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Handler<GetThis> for AppState {
|
||||||
|
type Result = Controller;
|
||||||
|
|
||||||
|
fn handle(&mut self, _msg: GetThis, _ctx: &mut Self::Context) -> Self::Result {
|
||||||
|
self.this.clone()
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,21 +1,24 @@
|
||||||
|
use actix::Actor;
|
||||||
use emgauwa_lib::constants::WEBSOCKET_RETRY_TIMEOUT;
|
use emgauwa_lib::constants::WEBSOCKET_RETRY_TIMEOUT;
|
||||||
|
use emgauwa_lib::db;
|
||||||
use emgauwa_lib::db::{DbController, DbJunctionRelaySchedule, DbRelay, DbSchedule};
|
use emgauwa_lib::db::{DbController, DbJunctionRelaySchedule, DbRelay, DbSchedule};
|
||||||
use emgauwa_lib::errors::EmgauwaError;
|
use emgauwa_lib::errors::EmgauwaError;
|
||||||
use emgauwa_lib::models::{Controller, FromDbModel};
|
use emgauwa_lib::models::{Controller, FromDbModel};
|
||||||
use emgauwa_lib::types::ControllerUid;
|
use emgauwa_lib::types::ControllerUid;
|
||||||
use emgauwa_lib::{db, utils};
|
use emgauwa_lib::utils::init_logging;
|
||||||
use sqlx::pool::PoolConnection;
|
use sqlx::pool::PoolConnection;
|
||||||
use sqlx::Sqlite;
|
use sqlx::Sqlite;
|
||||||
use tokio::time;
|
use tokio::time;
|
||||||
use utils::init_logging;
|
|
||||||
|
|
||||||
use crate::relay_loop::run_relay_loop;
|
use crate::relay_loop::run_relay_loop;
|
||||||
use crate::settings::Settings;
|
use crate::settings::Settings;
|
||||||
use crate::ws::run_websocket;
|
use crate::ws::run_websocket;
|
||||||
|
|
||||||
|
mod app_state;
|
||||||
mod driver;
|
mod driver;
|
||||||
mod relay_loop;
|
mod relay_loop;
|
||||||
mod settings;
|
mod settings;
|
||||||
|
mod utils;
|
||||||
mod ws;
|
mod ws;
|
||||||
|
|
||||||
async fn create_this_controller(
|
async fn create_this_controller(
|
||||||
|
@ -55,7 +58,7 @@ async fn create_this_relay(
|
||||||
Ok(relay)
|
Ok(relay)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::main]
|
#[actix::main]
|
||||||
async fn main() -> Result<(), std::io::Error> {
|
async fn main() -> Result<(), std::io::Error> {
|
||||||
let settings = settings::init()?;
|
let settings = settings::init()?;
|
||||||
init_logging(&settings.logging.level)?;
|
init_logging(&settings.logging.level)?;
|
||||||
|
@ -98,6 +101,10 @@ async fn main() -> Result<(), std::io::Error> {
|
||||||
.await
|
.await
|
||||||
.map_err(EmgauwaError::from)?;
|
.map_err(EmgauwaError::from)?;
|
||||||
|
|
||||||
|
let this = Controller::from_db_model(&mut conn, db_controller).map_err(EmgauwaError::from)?;
|
||||||
|
|
||||||
|
let app_state = app_state::AppState::new(pool.clone(), this).start();
|
||||||
|
|
||||||
let url = format!(
|
let url = format!(
|
||||||
"ws://{}:{}/api/v1/ws/controllers",
|
"ws://{}:{}/api/v1/ws/controllers",
|
||||||
settings.core.host, settings.core.port
|
settings.core.host, settings.core.port
|
||||||
|
@ -106,14 +113,7 @@ async fn main() -> Result<(), std::io::Error> {
|
||||||
tokio::spawn(run_relay_loop(settings));
|
tokio::spawn(run_relay_loop(settings));
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
let db_controller = db_controller
|
let run_result = run_websocket(pool.clone(), &app_state, &url).await;
|
||||||
.reload(&mut conn)
|
|
||||||
.await
|
|
||||||
.map_err(EmgauwaError::from)?;
|
|
||||||
let this =
|
|
||||||
Controller::from_db_model(&mut conn, db_controller).map_err(EmgauwaError::from)?;
|
|
||||||
|
|
||||||
let run_result = run_websocket(pool.clone(), this.clone(), &url).await;
|
|
||||||
if let Err(err) = run_result {
|
if let Err(err) = run_result {
|
||||||
log::error!("Error running websocket: {}", err);
|
log::error!("Error running websocket: {}", err);
|
||||||
}
|
}
|
||||||
|
|
9
emgauwa-controller/src/utils.rs
Normal file
9
emgauwa-controller/src/utils.rs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
use actix::Addr;
|
||||||
|
use emgauwa_lib::errors::EmgauwaError;
|
||||||
|
use emgauwa_lib::models::Controller;
|
||||||
|
|
||||||
|
use crate::app_state::{AppState, GetThis};
|
||||||
|
|
||||||
|
pub async fn get_this(app_state: &Addr<AppState>) -> Result<Controller, EmgauwaError> {
|
||||||
|
app_state.send(GetThis {}).await.map_err(EmgauwaError::from)
|
||||||
|
}
|
|
@ -1,3 +1,4 @@
|
||||||
|
use actix::Addr;
|
||||||
use emgauwa_lib::db::DbController;
|
use emgauwa_lib::db::DbController;
|
||||||
use emgauwa_lib::errors::{DatabaseError, EmgauwaError};
|
use emgauwa_lib::errors::{DatabaseError, EmgauwaError};
|
||||||
use emgauwa_lib::models::Controller;
|
use emgauwa_lib::models::Controller;
|
||||||
|
@ -8,9 +9,13 @@ use sqlx::{Pool, Sqlite};
|
||||||
use tokio_tungstenite::tungstenite::Message;
|
use tokio_tungstenite::tungstenite::Message;
|
||||||
use tokio_tungstenite::{connect_async, tungstenite};
|
use tokio_tungstenite::{connect_async, tungstenite};
|
||||||
|
|
||||||
|
use crate::app_state;
|
||||||
|
use crate::app_state::AppState;
|
||||||
|
use crate::utils::get_this;
|
||||||
|
|
||||||
pub async fn run_websocket(
|
pub async fn run_websocket(
|
||||||
pool: Pool<Sqlite>,
|
pool: Pool<Sqlite>,
|
||||||
this: Controller,
|
app_state: &Addr<AppState>,
|
||||||
url: &str,
|
url: &str,
|
||||||
) -> Result<(), EmgauwaError> {
|
) -> Result<(), EmgauwaError> {
|
||||||
match connect_async(url).await {
|
match connect_async(url).await {
|
||||||
|
@ -19,7 +24,7 @@ pub async fn run_websocket(
|
||||||
|
|
||||||
let (mut write, read) = ws_stream.split();
|
let (mut write, read) = ws_stream.split();
|
||||||
|
|
||||||
let ws_action = ControllerWsAction::Register(this.clone());
|
let ws_action = ControllerWsAction::Register(get_this(app_state).await?);
|
||||||
|
|
||||||
let ws_action_json = serde_json::to_string(&ws_action)?;
|
let ws_action_json = serde_json::to_string(&ws_action)?;
|
||||||
if let Err(err) = write.send(Message::text(ws_action_json)).await {
|
if let Err(err) = write.send(Message::text(ws_action_json)).await {
|
||||||
|
@ -27,7 +32,7 @@ pub async fn run_websocket(
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
let read_handler = read.for_each(|msg| handle_message(pool.clone(), this.clone(), msg));
|
let read_handler = read.for_each(|msg| handle_message(pool.clone(), app_state, msg));
|
||||||
|
|
||||||
read_handler.await;
|
read_handler.await;
|
||||||
|
|
||||||
|
@ -42,7 +47,7 @@ pub async fn run_websocket(
|
||||||
|
|
||||||
async fn handle_message(
|
async fn handle_message(
|
||||||
pool: Pool<Sqlite>,
|
pool: Pool<Sqlite>,
|
||||||
this: Controller,
|
app_state: &Addr<AppState>,
|
||||||
message_result: Result<Message, tungstenite::Error>,
|
message_result: Result<Message, tungstenite::Error>,
|
||||||
) {
|
) {
|
||||||
let msg = match message_result {
|
let msg = match message_result {
|
||||||
|
@ -52,8 +57,8 @@ async fn handle_message(
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
match msg {
|
if let Message::Text(text) = msg {
|
||||||
Message::Text(text) => match serde_json::from_str(&text) {
|
match serde_json::from_str(&text) {
|
||||||
Ok(action) => {
|
Ok(action) => {
|
||||||
log::debug!("Received action: {:?}", action);
|
log::debug!("Received action: {:?}", action);
|
||||||
let mut pool_conn = match pool.acquire().await {
|
let mut pool_conn = match pool.acquire().await {
|
||||||
|
@ -63,7 +68,7 @@ async fn handle_message(
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
let action_res = handle_action(&mut pool_conn, this, action).await;
|
let action_res = handle_action(&mut pool_conn, app_state, action).await;
|
||||||
if let Err(e) = action_res {
|
if let Err(e) = action_res {
|
||||||
log::error!("Error handling action: {:?}", e);
|
log::error!("Error handling action: {:?}", e);
|
||||||
}
|
}
|
||||||
|
@ -71,19 +76,18 @@ async fn handle_message(
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
log::error!("Error deserializing action: {:?}", e);
|
log::error!("Error deserializing action: {:?}", e);
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
_ => (),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn handle_action(
|
pub async fn handle_action(
|
||||||
conn: &mut PoolConnection<Sqlite>,
|
conn: &mut PoolConnection<Sqlite>,
|
||||||
this: Controller,
|
app_state: &Addr<AppState>,
|
||||||
action: ControllerWsAction,
|
action: ControllerWsAction,
|
||||||
) -> Result<(), EmgauwaError> {
|
) -> Result<(), EmgauwaError> {
|
||||||
match action {
|
match action {
|
||||||
ControllerWsAction::Controller(controller) => {
|
ControllerWsAction::Controller(controller) => {
|
||||||
handle_controller(conn, this, controller).await
|
handle_controller(conn, app_state, controller).await
|
||||||
}
|
}
|
||||||
_ => Ok(()),
|
_ => Ok(()),
|
||||||
}
|
}
|
||||||
|
@ -91,9 +95,10 @@ pub async fn handle_action(
|
||||||
|
|
||||||
pub async fn handle_controller(
|
pub async fn handle_controller(
|
||||||
conn: &mut PoolConnection<Sqlite>,
|
conn: &mut PoolConnection<Sqlite>,
|
||||||
this: Controller,
|
app_state: &Addr<AppState>,
|
||||||
controller: Controller,
|
controller: Controller,
|
||||||
) -> Result<(), EmgauwaError> {
|
) -> Result<(), EmgauwaError> {
|
||||||
|
let this = get_this(app_state).await?;
|
||||||
if controller.c.uid != this.c.uid {
|
if controller.c.uid != this.c.uid {
|
||||||
return Err(EmgauwaError::Other(String::from(
|
return Err(EmgauwaError::Other(String::from(
|
||||||
"Controller UID mismatch during update",
|
"Controller UID mismatch during update",
|
||||||
|
@ -105,5 +110,7 @@ pub async fn handle_controller(
|
||||||
.update(conn, controller.c.name.as_str(), this.c.relay_count)
|
.update(conn, controller.c.name.as_str(), this.c.relay_count)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
|
app_state.send(app_state::Reload {}).await??;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
51
emgauwa-lib/src/models/controller.rs
Normal file
51
emgauwa-lib/src/models/controller.rs
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
use actix::MessageResponse;
|
||||||
|
use futures::executor::block_on;
|
||||||
|
use serde_derive::{Deserialize, Serialize};
|
||||||
|
use sqlx::pool::PoolConnection;
|
||||||
|
use sqlx::Sqlite;
|
||||||
|
|
||||||
|
use crate::db::DbController;
|
||||||
|
use crate::errors::{DatabaseError, EmgauwaError};
|
||||||
|
use crate::models::{convert_db_list_cache, FromDbModel, Relay};
|
||||||
|
|
||||||
|
#[derive(Serialize, Deserialize, Debug, Clone, MessageResponse)]
|
||||||
|
pub struct Controller {
|
||||||
|
#[serde(flatten)]
|
||||||
|
pub c: DbController,
|
||||||
|
pub relays: Vec<Relay>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl FromDbModel for Controller {
|
||||||
|
type DbModel = DbController;
|
||||||
|
type DbModelCache = Vec<Relay>;
|
||||||
|
|
||||||
|
fn from_db_model(
|
||||||
|
conn: &mut PoolConnection<Sqlite>,
|
||||||
|
db_model: Self::DbModel,
|
||||||
|
) -> Result<Self, DatabaseError> {
|
||||||
|
let relays_db = block_on(db_model.get_relays(conn))?;
|
||||||
|
let cache = convert_db_list_cache(conn, relays_db, db_model.clone())?;
|
||||||
|
Self::from_db_model_cache(conn, db_model, cache)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn from_db_model_cache(
|
||||||
|
_conn: &mut PoolConnection<Sqlite>,
|
||||||
|
db_model: Self::DbModel,
|
||||||
|
cache: Self::DbModelCache,
|
||||||
|
) -> Result<Self, DatabaseError> {
|
||||||
|
Ok(Controller {
|
||||||
|
c: db_model,
|
||||||
|
relays: cache,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Controller {
|
||||||
|
pub fn reload(&mut self, conn: &mut PoolConnection<Sqlite>) -> Result<(), EmgauwaError> {
|
||||||
|
self.c = block_on(self.c.reload(conn))?;
|
||||||
|
for relay in &mut self.relays {
|
||||||
|
relay.reload(conn)?;
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,12 +1,14 @@
|
||||||
use futures::executor;
|
mod controller;
|
||||||
use serde_derive::{Deserialize, Serialize};
|
mod relay;
|
||||||
|
mod schedule;
|
||||||
|
|
||||||
|
pub use controller::Controller;
|
||||||
|
pub use relay::Relay;
|
||||||
|
pub use schedule::Schedule;
|
||||||
use sqlx::pool::PoolConnection;
|
use sqlx::pool::PoolConnection;
|
||||||
use sqlx::Sqlite;
|
use sqlx::Sqlite;
|
||||||
|
|
||||||
use crate::db::{DbController, DbJunctionRelaySchedule, DbRelay, DbSchedule};
|
|
||||||
use crate::errors::DatabaseError;
|
use crate::errors::DatabaseError;
|
||||||
use crate::types::{ControllerUid, Weekday};
|
|
||||||
use crate::utils;
|
|
||||||
|
|
||||||
pub trait FromDbModel {
|
pub trait FromDbModel {
|
||||||
type DbModel: Clone;
|
type DbModel: Clone;
|
||||||
|
@ -28,124 +30,6 @@ pub trait FromDbModel {
|
||||||
Self: Sized;
|
Self: Sized;
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Schedule {
|
|
||||||
#[serde(flatten)]
|
|
||||||
pub s: DbSchedule,
|
|
||||||
pub tags: Vec<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Relay {
|
|
||||||
#[serde(flatten)]
|
|
||||||
pub r: DbRelay,
|
|
||||||
pub controller: DbController,
|
|
||||||
pub controller_id: ControllerUid,
|
|
||||||
pub schedules: Vec<DbSchedule>,
|
|
||||||
pub active_schedule: DbSchedule,
|
|
||||||
pub tags: Vec<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
||||||
pub struct Controller {
|
|
||||||
#[serde(flatten)]
|
|
||||||
pub c: DbController,
|
|
||||||
pub relays: Vec<Relay>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl FromDbModel for Schedule {
|
|
||||||
type DbModel = DbSchedule;
|
|
||||||
type DbModelCache = Vec<String>;
|
|
||||||
|
|
||||||
fn from_db_model(
|
|
||||||
conn: &mut PoolConnection<Sqlite>,
|
|
||||||
db_model: Self::DbModel,
|
|
||||||
) -> Result<Self, DatabaseError> {
|
|
||||||
let cache = executor::block_on(db_model.get_tags(conn))?;
|
|
||||||
Self::from_db_model_cache(conn, db_model, cache)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn from_db_model_cache(
|
|
||||||
_conn: &mut PoolConnection<Sqlite>,
|
|
||||||
db_model: Self::DbModel,
|
|
||||||
cache: Self::DbModelCache,
|
|
||||||
) -> Result<Self, DatabaseError> {
|
|
||||||
let schedule = db_model.clone();
|
|
||||||
|
|
||||||
Ok(Schedule {
|
|
||||||
s: schedule,
|
|
||||||
tags: cache,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl FromDbModel for Relay {
|
|
||||||
type DbModel = DbRelay;
|
|
||||||
type DbModelCache = DbController;
|
|
||||||
|
|
||||||
fn from_db_model(
|
|
||||||
conn: &mut PoolConnection<Sqlite>,
|
|
||||||
db_model: Self::DbModel,
|
|
||||||
) -> Result<Self, DatabaseError> {
|
|
||||||
let cache = executor::block_on(db_model.get_controller(conn))?;
|
|
||||||
Self::from_db_model_cache(conn, db_model, cache)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn from_db_model_cache(
|
|
||||||
conn: &mut PoolConnection<Sqlite>,
|
|
||||||
db_model: Self::DbModel,
|
|
||||||
cache: Self::DbModelCache,
|
|
||||||
) -> Result<Self, DatabaseError> {
|
|
||||||
let tags = executor::block_on(db_model.get_tags(conn))?;
|
|
||||||
let controller_id = cache.uid.clone();
|
|
||||||
|
|
||||||
let schedules =
|
|
||||||
executor::block_on(DbJunctionRelaySchedule::get_schedules(conn, &db_model))?;
|
|
||||||
|
|
||||||
let weekday = utils::get_weekday();
|
|
||||||
let active_schedule = executor::block_on(DbJunctionRelaySchedule::get_schedule(
|
|
||||||
conn,
|
|
||||||
&db_model,
|
|
||||||
weekday as Weekday,
|
|
||||||
))?
|
|
||||||
.ok_or(DatabaseError::NotFound)?;
|
|
||||||
|
|
||||||
Ok(Relay {
|
|
||||||
r: db_model,
|
|
||||||
controller: cache,
|
|
||||||
controller_id,
|
|
||||||
schedules,
|
|
||||||
active_schedule,
|
|
||||||
tags,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl FromDbModel for Controller {
|
|
||||||
type DbModel = DbController;
|
|
||||||
type DbModelCache = Vec<Relay>;
|
|
||||||
|
|
||||||
fn from_db_model(
|
|
||||||
conn: &mut PoolConnection<Sqlite>,
|
|
||||||
db_model: Self::DbModel,
|
|
||||||
) -> Result<Self, DatabaseError> {
|
|
||||||
let relays_db = executor::block_on(db_model.get_relays(conn))?;
|
|
||||||
let cache = convert_db_list_cache(conn, relays_db, db_model.clone())?;
|
|
||||||
Self::from_db_model_cache(conn, db_model, cache)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn from_db_model_cache(
|
|
||||||
_conn: &mut PoolConnection<Sqlite>,
|
|
||||||
db_model: Self::DbModel,
|
|
||||||
cache: Self::DbModelCache,
|
|
||||||
) -> Result<Self, DatabaseError> {
|
|
||||||
Ok(Controller {
|
|
||||||
c: db_model,
|
|
||||||
relays: cache,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn convert_db_list_generic<T: FromDbModel>(
|
fn convert_db_list_generic<T: FromDbModel>(
|
||||||
conn: &mut PoolConnection<Sqlite>,
|
conn: &mut PoolConnection<Sqlite>,
|
||||||
db_models: Vec<T::DbModel>,
|
db_models: Vec<T::DbModel>,
|
||||||
|
|
70
emgauwa-lib/src/models/relay.rs
Normal file
70
emgauwa-lib/src/models/relay.rs
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
use futures::executor::block_on;
|
||||||
|
use serde_derive::{Deserialize, Serialize};
|
||||||
|
use sqlx::pool::PoolConnection;
|
||||||
|
use sqlx::Sqlite;
|
||||||
|
|
||||||
|
use crate::db::{DbController, DbJunctionRelaySchedule, DbRelay, DbSchedule};
|
||||||
|
use crate::errors::DatabaseError;
|
||||||
|
use crate::models::FromDbModel;
|
||||||
|
use crate::types::{ControllerUid, Weekday};
|
||||||
|
use crate::utils;
|
||||||
|
|
||||||
|
#[derive(Serialize, Deserialize, Debug, Clone)]
|
||||||
|
pub struct Relay {
|
||||||
|
#[serde(flatten)]
|
||||||
|
pub r: DbRelay,
|
||||||
|
pub controller: DbController,
|
||||||
|
pub controller_id: ControllerUid,
|
||||||
|
pub schedules: Vec<DbSchedule>,
|
||||||
|
pub active_schedule: DbSchedule,
|
||||||
|
pub tags: Vec<String>,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
impl FromDbModel for Relay {
|
||||||
|
type DbModel = DbRelay;
|
||||||
|
type DbModelCache = DbController;
|
||||||
|
|
||||||
|
fn from_db_model(
|
||||||
|
conn: &mut PoolConnection<Sqlite>,
|
||||||
|
db_model: Self::DbModel,
|
||||||
|
) -> Result<Self, DatabaseError> {
|
||||||
|
let cache = block_on(db_model.get_controller(conn))?;
|
||||||
|
Self::from_db_model_cache(conn, db_model, cache)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn from_db_model_cache(
|
||||||
|
conn: &mut PoolConnection<Sqlite>,
|
||||||
|
db_model: Self::DbModel,
|
||||||
|
cache: Self::DbModelCache,
|
||||||
|
) -> Result<Self, DatabaseError> {
|
||||||
|
let tags = block_on(db_model.get_tags(conn))?;
|
||||||
|
let controller_id = cache.uid.clone();
|
||||||
|
|
||||||
|
let schedules = block_on(DbJunctionRelaySchedule::get_schedules(conn, &db_model))?;
|
||||||
|
|
||||||
|
let weekday = utils::get_weekday();
|
||||||
|
let active_schedule = block_on(DbJunctionRelaySchedule::get_schedule(
|
||||||
|
conn,
|
||||||
|
&db_model,
|
||||||
|
weekday as Weekday,
|
||||||
|
))?
|
||||||
|
.ok_or(DatabaseError::NotFound)?;
|
||||||
|
|
||||||
|
Ok(Relay {
|
||||||
|
r: db_model,
|
||||||
|
controller: cache,
|
||||||
|
controller_id,
|
||||||
|
schedules,
|
||||||
|
active_schedule,
|
||||||
|
tags,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Relay {
|
||||||
|
pub fn reload(&mut self, conn: &mut PoolConnection<Sqlite>) -> Result<(), DatabaseError> {
|
||||||
|
self.r = block_on(self.r.reload(conn))?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
41
emgauwa-lib/src/models/schedule.rs
Normal file
41
emgauwa-lib/src/models/schedule.rs
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
use futures::executor::block_on;
|
||||||
|
use serde_derive::{Deserialize, Serialize};
|
||||||
|
use sqlx::pool::PoolConnection;
|
||||||
|
use sqlx::Sqlite;
|
||||||
|
|
||||||
|
use crate::db::DbSchedule;
|
||||||
|
use crate::errors::DatabaseError;
|
||||||
|
use crate::models::FromDbModel;
|
||||||
|
|
||||||
|
#[derive(Serialize, Deserialize, Debug, Clone)]
|
||||||
|
pub struct Schedule {
|
||||||
|
#[serde(flatten)]
|
||||||
|
pub s: DbSchedule,
|
||||||
|
pub tags: Vec<String>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl FromDbModel for Schedule {
|
||||||
|
type DbModel = DbSchedule;
|
||||||
|
type DbModelCache = Vec<String>;
|
||||||
|
|
||||||
|
fn from_db_model(
|
||||||
|
conn: &mut PoolConnection<Sqlite>,
|
||||||
|
db_model: Self::DbModel,
|
||||||
|
) -> Result<Self, DatabaseError> {
|
||||||
|
let cache = block_on(db_model.get_tags(conn))?;
|
||||||
|
Self::from_db_model_cache(conn, db_model, cache)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn from_db_model_cache(
|
||||||
|
_conn: &mut PoolConnection<Sqlite>,
|
||||||
|
db_model: Self::DbModel,
|
||||||
|
cache: Self::DbModelCache,
|
||||||
|
) -> Result<Self, DatabaseError> {
|
||||||
|
let schedule = db_model.clone();
|
||||||
|
|
||||||
|
Ok(Schedule {
|
||||||
|
s: schedule,
|
||||||
|
tags: cache,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue