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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
use crate::db_object::{DBObject, OrderTypes};
use crate::df_world::{DBDFWorld, HistoricalEvent};
use crate::schema::historical_events_n_o;
use crate::DbConnection;
use df_st_core::fillable::{Fillable, Filler};
use df_st_core::item_count::ItemCount;
use df_st_derive::Fillable;
use diesel::expression_methods::ExpressionMethods;
use diesel::prelude::*;
use diesel::query_dsl::RunQueryDsl;
use failure::Error;
use std::collections::HashMap;
use std::hash::{Hash, Hasher};

#[derive(
    Clone, Debug, AsChangeset, Identifiable, Associations, Queryable, Insertable, Fillable, Default,
)]
#[table_name = "historical_events_n_o"]
#[primary_key(he_id)]
#[belongs_to(HistoricalEvent, foreign_key = "he_id")]
pub struct HistoricalEventNO {
    pub he_id: i32,
    pub world_id: i32,

    pub name_only: Option<bool>,
    pub new_ab_id: Option<i32>,
    pub new_account: Option<i32>,
    pub new_artifact_id: Option<i32>,
    pub new_caste: Option<i32>,
    pub new_equipment_level: Option<i32>,
    pub new_leader_hf_id: Option<i32>,
    pub new_race_id: Option<String>,
    pub new_site_civ_id: Option<i32>,
    pub new_job: Option<String>,
    pub new_structure_id: Option<i32>,
    pub no_defeat_mention: Option<bool>,
    pub no_prison_available: Option<bool>,

    pub occasion_id: Option<i32>,
    pub old_ab_id: Option<i32>,
    pub old_account: Option<i32>,
    pub old_artifact_id: Option<i32>,
    pub old_caste: Option<i32>,
    pub old_race_id: Option<String>,
    pub outcome: Option<String>,
    pub overthrown_hf_id: Option<i32>,
    pub old_job: Option<String>,
    pub old_structure_id: Option<i32>,
}

impl HistoricalEventNO {
    pub fn new() -> Self {
        Self::default()
    }
}

impl DBObject<df_st_core::HistoricalEvent, HistoricalEventNO> for HistoricalEventNO {
    fn add_missing_data_advanced(_core_world: &df_st_core::DFWorld, _world: &mut DBDFWorld) {
        // Nothing to add
    }

    #[rustfmt::skip]
    #[cfg(feature = "postgres")]
    fn insert_into_db(conn: &DbConnection, historical_events_n_o: &[HistoricalEventNO]) {
        use diesel::pg::upsert::excluded;
        diesel::insert_into(historical_events_n_o::table)
            .values(historical_events_n_o)
            .on_conflict((
                historical_events_n_o::he_id,
                historical_events_n_o::world_id,
            ))
            .do_update()
            .set((
                historical_events_n_o::name_only.eq(excluded(historical_events_n_o::name_only)),
                historical_events_n_o::new_ab_id.eq(excluded(historical_events_n_o::new_ab_id)),
                historical_events_n_o::new_account.eq(excluded(historical_events_n_o::new_account)),
                historical_events_n_o::new_artifact_id.eq(excluded(historical_events_n_o::new_artifact_id)),
                historical_events_n_o::new_caste.eq(excluded(historical_events_n_o::new_caste)),
                historical_events_n_o::new_equipment_level.eq(excluded(historical_events_n_o::new_equipment_level)),
                historical_events_n_o::new_leader_hf_id.eq(excluded(historical_events_n_o::new_leader_hf_id)),
                historical_events_n_o::new_race_id.eq(excluded(historical_events_n_o::new_race_id)),
                historical_events_n_o::new_site_civ_id.eq(excluded(historical_events_n_o::new_site_civ_id)),
                historical_events_n_o::new_job.eq(excluded(historical_events_n_o::new_job)),
                historical_events_n_o::new_structure_id.eq(excluded(historical_events_n_o::new_structure_id)),
                historical_events_n_o::no_defeat_mention.eq(excluded(historical_events_n_o::no_defeat_mention)),
                historical_events_n_o::no_prison_available.eq(excluded(historical_events_n_o::no_prison_available)),
                historical_events_n_o::occasion_id.eq(excluded(historical_events_n_o::occasion_id)),
                historical_events_n_o::old_ab_id.eq(excluded(historical_events_n_o::old_ab_id)),
                historical_events_n_o::old_account.eq(excluded(historical_events_n_o::old_account)),
                historical_events_n_o::old_artifact_id.eq(excluded(historical_events_n_o::old_artifact_id)),
                historical_events_n_o::old_caste.eq(excluded(historical_events_n_o::old_caste)),
                historical_events_n_o::old_race_id.eq(excluded(historical_events_n_o::old_race_id)),
                historical_events_n_o::outcome.eq(excluded(historical_events_n_o::outcome)),
                historical_events_n_o::overthrown_hf_id.eq(excluded(historical_events_n_o::overthrown_hf_id)),
                historical_events_n_o::old_job.eq(excluded(historical_events_n_o::old_job)),
                historical_events_n_o::old_structure_id.eq(excluded(historical_events_n_o::old_structure_id)),
            ))
            .execute(conn)
            .expect("Error saving historical_events_n_o");
    }

    #[cfg(not(feature = "postgres"))]
    fn insert_into_db(conn: &DbConnection, historical_events_n_o: &[HistoricalEventNO]) {
        diesel::insert_into(historical_events_n_o::table)
            .values(historical_events_n_o)
            .execute(conn)
            .expect("Error saving historical_events_n_o");
    }

    /// Get a list of HistoricalEventNO from the database
    fn find_db_list(
        _conn: &DbConnection,
        _id_filter: HashMap<String, i32>,
        _string_filter: HashMap<String, String>,
        _offset: i64,
        _limit: i64,
        _order: Option<OrderTypes>,
        _order_by: Option<String>,
        _id_list: Option<Vec<i32>>,
    ) -> Result<Vec<HistoricalEventNO>, Error> {
        /*
        use crate::schema::historical_events_n_o::dsl::*;
        let (order_by,asc) = Self::get_order(order, order_by);
        let query = historical_events_n_o.limit(limit).offset(offset);
        let query = query.filter(world_id.eq(id_filter.get("world_id").unwrap_or(&0)));
        optional_filter!{
            query, id_filter,
            [
                "he_id" => he_id,
            ],
            {return Ok(order_by!{
                order_by, asc, query, conn,
                "he_id" => he_id,
                "name_only" => name_only,
                "new_ab_id" => new_ab_id,
                "new_account" => new_account,
                "new_artifact_id" => new_artifact_id,
                "new_caste" => new_caste,
                "new_equipment_level" => new_equipment_level,
                "new_leader_hf_id" => new_leader_hf_id,
                "new_race_id" => new_race_id,
                "new_site_civ_id" => new_site_civ_id,
                "new_job" => new_job,
                "new_structure_id" => new_structure_id,
                "no_defeat_mention" => no_defeat_mention,
                "no_prison_available" => no_prison_available,
                "occasion_id" => occasion_id,
                "old_ab_id" => old_ab_id,
                "old_account" => old_account,
                "old_artifact_id" => old_artifact_id,
                "old_caste" => old_caste,
                "old_race_id" => old_race_id,
                "outcome" => outcome,
                "overthrown_hf_id" => overthrown_hf_id,
                "old_job" => old_job,
                "old_structure_id" => old_structure_id,
            });},
        };
        */
        // This function is not used ATM, replaced with simple result to reduce compile time.
        Ok(vec![])
    }

    fn find_db_item(
        conn: &DbConnection,
        id_filter: HashMap<String, i32>,
    ) -> Result<Option<HistoricalEventNO>, Error> {
        use crate::schema::historical_events_n_o::dsl::*;
        let query = historical_events_n_o;
        let query = query.filter(world_id.eq(id_filter.get("world_id").unwrap_or(&0)));
        let query = query.filter(he_id.eq(id_filter.get("he_id").unwrap_or(&0)));
        Ok(query.first::<HistoricalEventNO>(conn).optional()?)
    }

    fn match_field_by(field: String) -> String {
        match field.as_ref() {
            "name_only" => "name_only",
            "new_ab_id" => "new_ab_id",
            "new_account" => "new_account",
            "new_artifact_id" => "new_artifact_id",
            "new_caste" => "new_caste",
            "new_equipment_level" => "new_equipment_level",
            "new_leader_hf_id" => "new_leader_hf_id",
            "new_race_id" => "new_race_id",
            "new_site_civ_id" => "new_site_civ_id",
            "new_job" => "new_job",
            "new_structure_id" => "new_structure_id",
            "no_defeat_mention" => "no_defeat_mention",
            "no_prison_available" => "no_prison_available",
            "occasion_id" => "occasion_id",
            "old_ab_id" => "old_ab_id",
            "old_account" => "old_account",
            "old_artifact_id" => "old_artifact_id",
            "old_caste" => "old_caste",
            "old_race_id" => "old_race_id",
            "outcome" => "outcome",
            "overthrown_hf_id" => "overthrown_hf_id",
            "old_job" => "old_job",
            "old_structure_id" => "old_structure_id",
            _ => "he_id",
        }
        .to_owned()
    }

    fn add_nested_items(
        _conn: &DbConnection,
        _db_list: &[HistoricalEventNO],
        core_list: Vec<df_st_core::HistoricalEvent>,
    ) -> Result<Vec<df_st_core::HistoricalEvent>, Error> {
        Ok(core_list)
    }

    fn get_count_from_db(
        _conn: &DbConnection,
        _id_filter: HashMap<String, i32>,
        _string_filter: HashMap<String, String>,
        _offset: u32,
        _limit: u32,
        _group_by_opt: Option<String>,
        _id_list: Option<Vec<i32>>,
    ) -> Result<Vec<ItemCount>, Error> {
        /*
        use crate::schema::historical_events_n_o::dsl::*;
        let query = historical_events_n_o.limit(limit as i64).offset(offset as i64);
        let query = query.filter(world_id.eq(id_filter.get("world_id").unwrap_or(&0)));
        optional_filter!{
            query, id_filter,
            [
                "he_id" => he_id,
            ],
            {group_by!{
                group_by_opt, query, conn,
                "he_id" => {he_id: i32},
                "name_only" => {name_only: Option<bool>},
                "new_ab_id" => {new_ab_id: Option<i32>},
                "new_account" => {new_account: Option<i32>},
                "new_artifact_id" => {new_artifact_id: Option<i32>},
                "new_caste" => {new_caste: Option<i32>},
                "new_equipment_level" => {new_equipment_level: Option<i32>},
                "new_leader_hf_id" => {new_leader_hf_id: Option<i32>},
                "new_race_id" => {new_race_id: Option<String>},
                "new_site_civ_id" => {new_site_civ_id: Option<i32>},
                "new_job" => {new_job: Option<String>},
                "new_structure_id" => {new_structure_id: Option<i32>},
                "no_defeat_mention" => {no_defeat_mention: Option<bool>},
                "no_prison_available" => {no_prison_available: Option<bool>},
                "occasion_id" => {occasion_id: Option<i32>},
                "old_ab_id" => {old_ab_id: Option<i32>},
                "old_account" => {old_account: Option<i32>},
                "old_artifact_id" => {old_artifact_id: Option<i32>},
                "old_caste" => {old_caste: Option<i32>},
                "old_race_id" => {old_race_id: Option<String>},
                "outcome" => {outcome: Option<String>},
                "overthrown_hf_id" => {overthrown_hf_id: Option<i32>},
                "old_job" => {old_job: Option<String>},
                "old_structure_id" => {old_structure_id: Option<i32>},
            };},
        };
        */
        // This function is not used ATM, replaced with simple result to reduce compile time.
        Ok(vec![])
    }
}

/// From Core to DB
#[rustfmt::skip]
impl Filler<HistoricalEventNO, df_st_core::HistoricalEvent> for HistoricalEventNO {
    fn add_missing_data(&mut self, source: &df_st_core::HistoricalEvent) {
        self.he_id.add_missing_data(&source.id);
        self.name_only.add_missing_data(&source.name_only);
        self.new_ab_id.add_missing_data(&source.new_ab_id);
        self.new_account.add_missing_data(&source.new_account);
        self.new_artifact_id.add_missing_data(&source.new_artifact_id);
        self.new_caste.add_missing_data(&source.new_caste);
        self.new_equipment_level.add_missing_data(&source.new_equipment_level);
        self.new_leader_hf_id.add_missing_data(&source.new_leader_hf_id);
        self.new_race_id.add_missing_data(&source.new_race_id);
        self.new_site_civ_id.add_missing_data(&source.new_site_civ_id);
        self.new_job.add_missing_data(&source.new_job);
        self.new_structure_id.add_missing_data(&source.new_structure_id);
        self.no_defeat_mention.add_missing_data(&source.no_defeat_mention);
        self.no_prison_available.add_missing_data(&source.no_prison_available);
        self.occasion_id.add_missing_data(&source.occasion_id);
        self.old_ab_id.add_missing_data(&source.old_ab_id);
        self.old_account.add_missing_data(&source.old_account);
        self.old_artifact_id.add_missing_data(&source.old_artifact_id);
        self.old_caste.add_missing_data(&source.old_caste);
        self.old_race_id.add_missing_data(&source.old_race_id);
        self.outcome.add_missing_data(&source.outcome);
        self.overthrown_hf_id.add_missing_data(&source.overthrown_hf_id);
        self.old_job.add_missing_data(&source.old_job);
        self.old_structure_id.add_missing_data(&source.old_structure_id);
    }
}

/// From DB to Core
#[rustfmt::skip]
impl Filler<df_st_core::HistoricalEvent, HistoricalEventNO> for df_st_core::HistoricalEvent {
    fn add_missing_data(&mut self, source: &HistoricalEventNO) {
        self.id.add_missing_data(&source.he_id);
        self.name_only.add_missing_data(&source.name_only);
        self.new_ab_id.add_missing_data(&source.new_ab_id);
        self.new_account.add_missing_data(&source.new_account);
        self.new_artifact_id.add_missing_data(&source.new_artifact_id);
        self.new_caste.add_missing_data(&source.new_caste);
        self.new_equipment_level.add_missing_data(&source.new_equipment_level);
        self.new_leader_hf_id.add_missing_data(&source.new_leader_hf_id);
        self.new_race_id.add_missing_data(&source.new_race_id);
        self.new_site_civ_id.add_missing_data(&source.new_site_civ_id);
        self.new_job.add_missing_data(&source.new_job);
        self.new_structure_id.add_missing_data(&source.new_structure_id);
        self.no_defeat_mention.add_missing_data(&source.no_defeat_mention);
        self.no_prison_available.add_missing_data(&source.no_prison_available);
        self.occasion_id.add_missing_data(&source.occasion_id);
        self.old_ab_id.add_missing_data(&source.old_ab_id);
        self.old_account.add_missing_data(&source.old_account);
        self.old_artifact_id.add_missing_data(&source.old_artifact_id);
        self.old_caste.add_missing_data(&source.old_caste);
        self.old_race_id.add_missing_data(&source.old_race_id);
        self.outcome.add_missing_data(&source.outcome);
        self.overthrown_hf_id.add_missing_data(&source.overthrown_hf_id);
        self.old_job.add_missing_data(&source.old_job);
        self.old_structure_id.add_missing_data(&source.old_structure_id);
    }
}

impl PartialEq for HistoricalEventNO {
    fn eq(&self, other: &Self) -> bool {
        self.he_id == other.he_id
    }
}

impl Hash for HistoricalEventNO {
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.he_id.hash(state);
    }
}

impl PartialEq<HistoricalEventNO> for df_st_core::HistoricalEvent {
    fn eq(&self, other: &HistoricalEventNO) -> bool {
        self.id == other.he_id
    }
}

impl PartialEq<df_st_core::HistoricalEvent> for HistoricalEventNO {
    fn eq(&self, other: &df_st_core::HistoricalEvent) -> bool {
        self.he_id == other.id
    }
}