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
106
107
108
109
110
111
112
113
114
use diesel::pg::PgConnection;
use diesel::result::Error;
use diesel::*;
use serde::Serialize;
use std::collections::HashMap;
use crate::concerns::CortexInsertable;
use crate::schema::corpora;
use crate::schema::services;
use crate::schema::tasks;
use super::services::Service;
#[derive(Identifiable, Queryable, AsChangeset, Clone, Debug, Serialize)]
#[table_name = "corpora"]
pub struct Corpus {
pub id: i32,
pub path: String,
pub name: String,
pub complex: bool,
pub description: String,
}
impl Corpus {
pub fn find_by_name(name_query: &str, connection: &PgConnection) -> Result<Self, Error> {
use crate::schema::corpora::name;
corpora::table.filter(name.eq(name_query)).first(connection)
}
pub fn find_by_path(path_query: &str, connection: &PgConnection) -> Result<Self, Error> {
use crate::schema::corpora::path;
corpora::table.filter(path.eq(path_query)).first(connection)
}
pub fn to_hash(&self) -> HashMap<String, String> {
let mut hm = HashMap::new();
hm.insert("name".to_string(), self.name.clone());
hm.insert("path".to_string(), self.path.clone());
hm.insert("description".to_string(), self.description.clone());
hm
}
pub fn select_services(&self, connection: &PgConnection) -> Result<Vec<Service>, Error> {
use crate::schema::tasks::dsl::{corpus_id, service_id};
let corpus_service_ids_query = tasks::table
.select(service_id)
.distinct()
.filter(corpus_id.eq(self.id));
let services_query = services::table.filter(services::id.eq_any(corpus_service_ids_query));
let services: Vec<Service> = services_query.get_results(connection)?;
Ok(services)
}
pub fn destroy(self, connection: &PgConnection) -> Result<usize, Error> {
delete(tasks::table)
.filter(tasks::corpus_id.eq(self.id))
.execute(connection)?;
delete(tasks::table)
.filter(tasks::entry.eq(self.path))
.filter(tasks::service_id.eq(1))
.execute(connection)?;
delete(corpora::table)
.filter(corpora::id.eq(self.id))
.execute(connection)
}
}
#[derive(Insertable)]
#[table_name = "corpora"]
pub struct NewCorpus {
pub path: String,
pub name: String,
pub complex: bool,
pub description: String,
}
impl Default for NewCorpus {
fn default() -> Self {
NewCorpus {
name: "mock corpus".to_string(),
path: ".".to_string(),
complex: true,
description: String::new(),
}
}
}
impl CortexInsertable for NewCorpus {
fn create(&self, connection: &PgConnection) -> Result<usize, Error> {
insert_into(corpora::table).values(self).execute(connection)
}
}