#![allow(clippy::implicit_hasher)]
use std::fmt;
use diesel::pg::PgConnection;
use diesel::result::Error;
use diesel::*;
use diesel::{insert_into};
use crate::concerns::CortexInsertable;
use crate::schema::log_errors;
use crate::schema::log_fatals;
use crate::schema::log_infos;
use crate::schema::log_invalids;
use crate::schema::log_warnings;
use super::tasks::Task;
#[derive(Identifiable, Queryable, AsChangeset, Associations, Clone, Debug)]
#[belongs_to(Task)]
pub struct LogInfo {
pub id: i64,
pub task_id: i64,
pub category: String,
pub what: String,
pub details: String,
}
#[derive(Insertable, Clone, Debug)]
#[table_name = "log_infos"]
pub struct NewLogInfo {
pub task_id: i64,
pub category: String,
pub what: String,
pub details: String,
}
#[derive(Identifiable, Queryable, AsChangeset, Associations, Clone, Debug)]
#[belongs_to(Task)]
pub struct LogWarning {
pub id: i64,
pub task_id: i64,
pub category: String,
pub what: String,
pub details: String,
}
#[derive(Insertable, Clone, Debug)]
#[table_name = "log_warnings"]
pub struct NewLogWarning {
pub task_id: i64,
pub category: String,
pub what: String,
pub details: String,
}
#[derive(Identifiable, Queryable, AsChangeset, Associations, Clone, Debug)]
#[belongs_to(Task)]
pub struct LogError {
pub id: i64,
pub task_id: i64,
pub category: String,
pub what: String,
pub details: String,
}
#[derive(Insertable, Clone, Debug)]
#[table_name = "log_errors"]
pub struct NewLogError {
pub task_id: i64,
pub category: String,
pub what: String,
pub details: String,
}
#[derive(Identifiable, Queryable, AsChangeset, Associations, Clone, Debug)]
#[belongs_to(Task)]
pub struct LogFatal {
pub id: i64,
pub task_id: i64,
pub category: String,
pub what: String,
pub details: String,
}
#[derive(Insertable, Clone, Debug)]
#[table_name = "log_fatals"]
pub struct NewLogFatal {
pub category: String,
pub task_id: i64,
pub what: String,
pub details: String,
}
#[derive(Identifiable, Queryable, AsChangeset, Clone, Associations, Debug)]
#[belongs_to(Task)]
pub struct LogInvalid {
pub id: i64,
pub task_id: i64,
pub category: String,
pub what: String,
pub details: String,
}
#[derive(Insertable, Clone, Debug)]
#[table_name = "log_invalids"]
pub struct NewLogInvalid {
pub task_id: i64,
pub category: String,
pub what: String,
pub details: String,
}
pub trait LogRecord {
fn task_id(&self) -> i64;
fn category(&self) -> &str;
fn what(&self) -> &str;
fn details(&self) -> &str;
fn set_details(&mut self, new_details: String);
fn severity(&self) -> &str;
fn debug(&self, f: &mut fmt::Formatter) -> fmt::Result {
writeln!(
f,
"{}(category: {},\n\twhat: {},\n\tdetails: {})",
self.severity(),
self.category(),
self.what(),
self.details()
)
}
}
impl fmt::Debug for dyn LogRecord {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { self.debug(f) }
}
impl fmt::Display for dyn LogRecord {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { self.debug(f) }
}
impl LogRecord for LogInfo {
fn task_id(&self) -> i64 { self.task_id }
fn category(&self) -> &str { &self.category }
fn what(&self) -> &str { &self.what }
fn details(&self) -> &str { &self.details }
fn set_details(&mut self, new_details: String) { self.details = new_details; }
fn severity(&self) -> &str { "info" }
}
impl LogRecord for NewLogInfo {
fn task_id(&self) -> i64 { self.task_id }
fn category(&self) -> &str { &self.category }
fn what(&self) -> &str { &self.what }
fn details(&self) -> &str { &self.details }
fn set_details(&mut self, new_details: String) { self.details = new_details; }
fn severity(&self) -> &str { "info" }
}
impl CortexInsertable for NewLogInfo {
fn create(&self, connection: &PgConnection) -> Result<usize, Error> {
insert_into(log_infos::table)
.values(self)
.execute(connection)
}
}
impl LogRecord for LogWarning {
fn task_id(&self) -> i64 { self.task_id }
fn category(&self) -> &str { &self.category }
fn what(&self) -> &str { &self.what }
fn details(&self) -> &str { &self.details }
fn set_details(&mut self, new_details: String) { self.details = new_details; }
fn severity(&self) -> &str { "warning" }
}
impl LogRecord for NewLogWarning {
fn task_id(&self) -> i64 { self.task_id }
fn category(&self) -> &str { &self.category }
fn what(&self) -> &str { &self.what }
fn details(&self) -> &str { &self.details }
fn set_details(&mut self, new_details: String) { self.details = new_details; }
fn severity(&self) -> &str { "warning" }
}
impl CortexInsertable for NewLogWarning {
fn create(&self, connection: &PgConnection) -> Result<usize, Error> {
insert_into(log_warnings::table)
.values(self)
.execute(connection)
}
}
impl LogRecord for LogError {
fn task_id(&self) -> i64 { self.task_id }
fn category(&self) -> &str { &self.category }
fn what(&self) -> &str { &self.what }
fn details(&self) -> &str { &self.details }
fn set_details(&mut self, new_details: String) { self.details = new_details; }
fn severity(&self) -> &str { "error" }
}
impl LogRecord for NewLogError {
fn task_id(&self) -> i64 { self.task_id }
fn category(&self) -> &str { &self.category }
fn what(&self) -> &str { &self.what }
fn details(&self) -> &str { &self.details }
fn set_details(&mut self, new_details: String) { self.details = new_details; }
fn severity(&self) -> &str { "error" }
}
impl CortexInsertable for NewLogError {
fn create(&self, connection: &PgConnection) -> Result<usize, Error> {
insert_into(log_errors::table)
.values(self)
.execute(connection)
}
}
impl LogRecord for LogFatal {
fn task_id(&self) -> i64 { self.task_id }
fn category(&self) -> &str { &self.category }
fn what(&self) -> &str { &self.what }
fn details(&self) -> &str { &self.details }
fn set_details(&mut self, new_details: String) { self.details = new_details; }
fn severity(&self) -> &str { "fatal" }
}
impl LogRecord for NewLogFatal {
fn task_id(&self) -> i64 { self.task_id }
fn category(&self) -> &str { &self.category }
fn what(&self) -> &str { &self.what }
fn details(&self) -> &str { &self.details }
fn set_details(&mut self, new_details: String) { self.details = new_details; }
fn severity(&self) -> &str { "fatal" }
}
impl CortexInsertable for NewLogFatal {
fn create(&self, connection: &PgConnection) -> Result<usize, Error> {
insert_into(log_fatals::table)
.values(self)
.execute(connection)
}
}
impl LogRecord for LogInvalid {
fn task_id(&self) -> i64 { self.task_id }
fn category(&self) -> &str { &self.category }
fn what(&self) -> &str { &self.what }
fn details(&self) -> &str { &self.details }
fn set_details(&mut self, new_details: String) { self.details = new_details; }
fn severity(&self) -> &str { "invalid" }
}
impl LogRecord for NewLogInvalid {
fn task_id(&self) -> i64 { self.task_id }
fn category(&self) -> &str { &self.category }
fn what(&self) -> &str { &self.what }
fn details(&self) -> &str { &self.details }
fn set_details(&mut self, new_details: String) { self.details = new_details; }
fn severity(&self) -> &str { "invalid" }
}
impl CortexInsertable for NewLogInvalid {
fn create(&self, connection: &PgConnection) -> Result<usize, Error> {
insert_into(log_invalids::table)
.values(self)
.execute(connection)
}
}