1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
use std::collections::HashMap;
use diesel::pg::PgConnection;
use diesel::result::Error;
use diesel::*;
use diesel::{insert_into};
use crate::schema::services;
use crate::schema::worker_metadata;
use crate::concerns::CortexInsertable;
use super::worker_metadata::WorkerMetadata;
#[derive(Identifiable, Queryable, AsChangeset, Clone, Debug)]
pub struct Service {
pub id: i32,
pub name: String,
pub version: f32,
pub inputformat: String,
pub outputformat: String,
pub inputconverter: Option<String>,
pub complex: bool,
pub description: String,
}
#[derive(Insertable, Clone, Debug)]
#[table_name = "services"]
pub struct NewService {
pub name: String,
pub version: f32,
pub inputformat: String,
pub outputformat: String,
pub inputconverter: Option<String>,
pub complex: bool,
pub description: String,
}
impl CortexInsertable for NewService {
fn create(&self, connection: &PgConnection) -> Result<usize, Error> {
insert_into(services::table)
.values(self)
.execute(connection)
}
}
impl Service {
pub fn find_by_name(name_query: &str, connection: &PgConnection) -> Result<Service, Error> {
use crate::schema::services::name;
services::table
.filter(name.eq(name_query))
.get_result(connection)
}
pub fn to_hash(&self) -> HashMap<String, String> {
let mut hm = HashMap::new();
hm.insert("id".to_string(), self.id.to_string());
hm.insert("name".to_string(), self.name.clone());
hm.insert("description".to_string(), self.description.clone());
hm.insert("version".to_string(), self.version.to_string());
hm.insert("inputformat".to_string(), self.inputformat.clone());
hm.insert("outputformat".to_string(), self.outputformat.clone());
hm.insert(
"inputconverter".to_string(),
match self.inputconverter.clone() {
Some(ic) => ic,
None => "None".to_string(),
},
);
hm.insert("complex".to_string(), self.complex.to_string());
hm
}
pub fn select_workers(&self, connection: &PgConnection) -> Result<Vec<WorkerMetadata>, Error> {
let workers_query = worker_metadata::table
.filter(worker_metadata::service_id.eq(self.id))
.order(worker_metadata::name.asc());
let workers: Vec<WorkerMetadata> = workers_query.get_results(connection)?;
Ok(workers)
}
}