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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
use crate::db_object::{DBObject, OrderTypes};
use crate::df_world::{DBDFWorld, HistoricalEvent};
use crate::schema::historical_events_p_p;
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_p_p"]
#[primary_key(he_id)]
#[belongs_to(HistoricalEvent, foreign_key = "he_id")]
pub struct HistoricalEventPP {
    pub he_id: i32,
    pub world_id: i32,

    pub partial_incorporation: Option<bool>,
    pub payer_entity_id: Option<i32>,
    pub payer_hf_id: Option<i32>,
    pub persecutor_en_id: Option<i32>,
    pub persecutor_hf_id: Option<i32>,
    pub plotter_hf_id: Option<i32>,
    pub pop_fl_id: Option<i32>,
    pub pop_number_moved: Option<i32>,
    pub pop_race: Option<i32>,
    pub pop_sr_id: Option<i32>,
    pub pos_taker_hf_id: Option<i32>,
    pub position_id: Option<i32>,
    pub position_profile_id: Option<i32>,
    pub prison_months: Option<i32>,
    pub production_zone_id: Option<i32>,
    pub promise_to_hf_id: Option<i32>,
    pub property_confiscated_from_hf_id: Option<i32>,
    pub purchased_unowned: Option<bool>,
    pub part_lost: Option<bool>,
    pub pile_type: Option<String>,
    pub position: Option<String>,
    pub props_item_mat: Option<String>,
    pub props_item_mat_index: Option<i32>,
    pub props_item_mat_type: Option<i32>,
    pub props_item_subtype: Option<String>,
    pub props_item_type: Option<String>,
    pub props_pile_type: Option<i32>,
}

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

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

    #[cfg(feature = "postgres")]
    fn insert_into_db(conn: &DbConnection, historical_events_p_p: &[HistoricalEventPP]) {
        use diesel::pg::upsert::excluded;
        diesel::insert_into(historical_events_p_p::table)
            .values(historical_events_p_p)
            .on_conflict((
                historical_events_p_p::he_id,
                historical_events_p_p::world_id,
            ))
            .do_update()
            .set((
                historical_events_p_p::partial_incorporation
                    .eq(excluded(historical_events_p_p::partial_incorporation)),
                historical_events_p_p::payer_entity_id
                    .eq(excluded(historical_events_p_p::payer_entity_id)),
                historical_events_p_p::payer_hf_id.eq(excluded(historical_events_p_p::payer_hf_id)),
                historical_events_p_p::persecutor_en_id
                    .eq(excluded(historical_events_p_p::persecutor_en_id)),
                historical_events_p_p::persecutor_hf_id
                    .eq(excluded(historical_events_p_p::persecutor_hf_id)),
                historical_events_p_p::plotter_hf_id
                    .eq(excluded(historical_events_p_p::plotter_hf_id)),
                historical_events_p_p::pop_fl_id.eq(excluded(historical_events_p_p::pop_fl_id)),
                historical_events_p_p::pop_number_moved
                    .eq(excluded(historical_events_p_p::pop_number_moved)),
                historical_events_p_p::pop_race.eq(excluded(historical_events_p_p::pop_race)),
                historical_events_p_p::pop_sr_id.eq(excluded(historical_events_p_p::pop_sr_id)),
                historical_events_p_p::pos_taker_hf_id
                    .eq(excluded(historical_events_p_p::pos_taker_hf_id)),
                historical_events_p_p::position_id.eq(excluded(historical_events_p_p::position_id)),
                historical_events_p_p::position_profile_id
                    .eq(excluded(historical_events_p_p::position_profile_id)),
                historical_events_p_p::prison_months
                    .eq(excluded(historical_events_p_p::prison_months)),
                historical_events_p_p::production_zone_id
                    .eq(excluded(historical_events_p_p::production_zone_id)),
                historical_events_p_p::promise_to_hf_id
                    .eq(excluded(historical_events_p_p::promise_to_hf_id)),
                historical_events_p_p::property_confiscated_from_hf_id.eq(excluded(
                    historical_events_p_p::property_confiscated_from_hf_id,
                )),
                historical_events_p_p::purchased_unowned
                    .eq(excluded(historical_events_p_p::purchased_unowned)),
                historical_events_p_p::part_lost.eq(excluded(historical_events_p_p::part_lost)),
                historical_events_p_p::pile_type.eq(excluded(historical_events_p_p::pile_type)),
                historical_events_p_p::position.eq(excluded(historical_events_p_p::position)),
                historical_events_p_p::props_item_mat
                    .eq(excluded(historical_events_p_p::props_item_mat)),
                historical_events_p_p::props_item_mat_index
                    .eq(excluded(historical_events_p_p::props_item_mat_index)),
                historical_events_p_p::props_item_mat_type
                    .eq(excluded(historical_events_p_p::props_item_mat_type)),
                historical_events_p_p::props_item_subtype
                    .eq(excluded(historical_events_p_p::props_item_subtype)),
                historical_events_p_p::props_item_type
                    .eq(excluded(historical_events_p_p::props_item_type)),
                historical_events_p_p::props_pile_type
                    .eq(excluded(historical_events_p_p::props_pile_type)),
            ))
            .execute(conn)
            .expect("Error saving historical_events_p_p");
    }

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

    /// Get a list of HistoricalEventPP 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<HistoricalEventPP>, Error> {
        /*
        use crate::schema::historical_events_p_p::dsl::*;
        let (order_by,asc) = Self::get_order(order, order_by);
        let query = historical_events_p_p.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,
                "partial_incorporation" => partial_incorporation,
                "payer_entity_id" => payer_entity_id,
                "payer_hf_id" => payer_hf_id,
                "persecutor_en_id" => persecutor_en_id,
                "persecutor_hf_id" => persecutor_hf_id,
                "plotter_hf_id" => plotter_hf_id,
                "pop_fl_id" => pop_fl_id,
                "pop_number_moved" => pop_number_moved,
                "pop_race" => pop_race,
                "pop_sr_id" => pop_sr_id,
                "pos_taker_hf_id" => pos_taker_hf_id,
                "position_id" => position_id,
                "position_profile_id" => position_profile_id,
                "prison_months" => prison_months,
                "production_zone_id" => production_zone_id,
                "promise_to_hf_id" => promise_to_hf_id,
                "property_confiscated_from_hf_id" => property_confiscated_from_hf_id,
                "purchased_unowned" => purchased_unowned,
                "part_lost" => part_lost,
                "pile_type" => pile_type,
                "position" => position,
                "props_item_mat" => props_item_mat,
                "props_item_mat_index" => props_item_mat_index,
                "props_item_mat_type" => props_item_mat_type,
                "props_item_subtype" => props_item_subtype,
                "props_item_type" => props_item_type,
                "props_pile_type" => props_pile_type,
            });},
        };
        */
        // 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<HistoricalEventPP>, Error> {
        use crate::schema::historical_events_p_p::dsl::*;
        let query = historical_events_p_p;
        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::<HistoricalEventPP>(conn).optional()?)
    }

    fn match_field_by(field: String) -> String {
        match field.as_ref() {
            "partial_incorporation" => "partial_incorporation",
            "payer_entity_id" => "payer_entity_id",
            "payer_hf_id" => "payer_hf_id",
            "persecutor_en_id" => "persecutor_en_id",
            "persecutor_hf_id" => "persecutor_hf_id",
            "plotter_hf_id" => "plotter_hf_id",
            "pop_fl_id" => "pop_fl_id",
            "pop_number_moved" => "pop_number_moved",
            "pop_race" => "pop_race",
            "pop_sr_id" => "pop_sr_id",
            "pos_taker_hf_id" => "pos_taker_hf_id",
            "position_id" => "position_id",
            "position_profile_id" => "position_profile_id",
            "prison_months" => "prison_months",
            "production_zone_id" => "production_zone_id",
            "promise_to_hf_id" => "promise_to_hf_id",
            "property_confiscated_from_hf_id" => "property_confiscated_from_hf_id",
            "purchased_unowned" => "purchased_unowned",
            "part_lost" => "part_lost",
            "pile_type" => "pile_type",
            "position" => "position",
            "props_item_mat" => "props_item_mat",
            "props_item_mat_index" => "props_item_mat_index",
            "props_item_mat_type" => "props_item_mat_type",
            "props_item_subtype" => "props_item_subtype",
            "props_item_type" => "props_item_type",
            "props_pile_type" => "props_pile_type",
            _ => "he_id",
        }
        .to_owned()
    }

    fn add_nested_items(
        _conn: &DbConnection,
        _db_list: &[HistoricalEventPP],
        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_p_p::dsl::*;
        let query = historical_events_p_p.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},
                "partial_incorporation" => {partial_incorporation: Option<bool>},
                "payer_entity_id" => {payer_entity_id: Option<i32>},
                "payer_hf_id" => {payer_hf_id: Option<i32>},
                "persecutor_en_id" => {persecutor_en_id: Option<i32>},
                "persecutor_hf_id" => {persecutor_hf_id: Option<i32>},
                "plotter_hf_id" => {plotter_hf_id: Option<i32>},
                "pop_fl_id" => {pop_fl_id: Option<i32>},
                "pop_number_moved" => {pop_number_moved: Option<i32>},
                "pop_race" => {pop_race: Option<i32>},
                "pop_sr_id" => {pop_sr_id: Option<i32>},
                "pos_taker_hf_id" => {pos_taker_hf_id: Option<i32>},
                "position_id" => {position_id: Option<i32>},
                "position_profile_id" => {position_profile_id: Option<i32>},
                "prison_months" => {prison_months: Option<i32>},
                "production_zone_id" => {production_zone_id: Option<i32>},
                "promise_to_hf_id" => {promise_to_hf_id: Option<i32>},
                "property_confiscated_from_hf_id" => {property_confiscated_from_hf_id: Option<i32>},
                "purchased_unowned" => {purchased_unowned: Option<bool>},
                "part_lost" => {part_lost: Option<bool>},
                "pile_type" => {pile_type: Option<String>},
                "position" => {position: Option<String>},
                "props_item_mat" => {props_item_mat: Option<String>},
                "props_item_mat_index" => {props_item_mat_index: Option<i32>},
                "props_item_mat_type" => {props_item_mat_type: Option<i32>},
                "props_item_subtype" => {props_item_subtype: Option<String>},
                "props_item_type" => {props_item_type: Option<String>},
                "props_pile_type" => {props_pile_type: Option<i32>},
            };},
        };
        */
        // This function is not used ATM, replaced with simple result to reduce compile time.
        Ok(vec![])
    }
}

/// From Core to DB
impl Filler<HistoricalEventPP, df_st_core::HistoricalEvent> for HistoricalEventPP {
    fn add_missing_data(&mut self, source: &df_st_core::HistoricalEvent) {
        self.he_id.add_missing_data(&source.id);
        self.partial_incorporation
            .add_missing_data(&source.partial_incorporation);
        self.payer_entity_id
            .add_missing_data(&source.payer_entity_id);
        self.payer_hf_id.add_missing_data(&source.payer_hf_id);
        self.persecutor_en_id
            .add_missing_data(&source.persecutor_en_id);
        self.persecutor_hf_id
            .add_missing_data(&source.persecutor_hf_id);
        self.plotter_hf_id.add_missing_data(&source.plotter_hf_id);
        self.pop_fl_id.add_missing_data(&source.pop_fl_id);
        self.pop_number_moved
            .add_missing_data(&source.pop_number_moved);
        self.pop_race.add_missing_data(&source.pop_race);
        self.pop_sr_id.add_missing_data(&source.pop_sr_id);
        self.pos_taker_hf_id
            .add_missing_data(&source.pos_taker_hf_id);
        self.position_id.add_missing_data(&source.position_id);
        self.position_profile_id
            .add_missing_data(&source.position_profile_id);
        self.prison_months.add_missing_data(&source.prison_months);
        self.production_zone_id
            .add_missing_data(&source.production_zone_id);
        self.promise_to_hf_id
            .add_missing_data(&source.promise_to_hf_id);
        self.property_confiscated_from_hf_id
            .add_missing_data(&source.property_confiscated_from_hf_id);
        self.purchased_unowned
            .add_missing_data(&source.purchased_unowned);
        self.part_lost.add_missing_data(&source.part_lost);
        self.pile_type.add_missing_data(&source.pile_type);
        self.position.add_missing_data(&source.position);
        self.props_item_mat.add_missing_data(&source.props_item_mat);
        self.props_item_mat_index
            .add_missing_data(&source.props_item_mat_index);
        self.props_item_mat_type
            .add_missing_data(&source.props_item_mat_type);
        self.props_item_subtype
            .add_missing_data(&source.props_item_subtype);
        self.props_item_type
            .add_missing_data(&source.props_item_type);
        self.props_pile_type
            .add_missing_data(&source.props_pile_type);
    }
}

/// From DB to Core
impl Filler<df_st_core::HistoricalEvent, HistoricalEventPP> for df_st_core::HistoricalEvent {
    fn add_missing_data(&mut self, source: &HistoricalEventPP) {
        self.id.add_missing_data(&source.he_id);
        self.partial_incorporation
            .add_missing_data(&source.partial_incorporation);
        self.payer_entity_id
            .add_missing_data(&source.payer_entity_id);
        self.payer_hf_id.add_missing_data(&source.payer_hf_id);
        self.persecutor_en_id
            .add_missing_data(&source.persecutor_en_id);
        self.persecutor_hf_id
            .add_missing_data(&source.persecutor_hf_id);
        self.plotter_hf_id.add_missing_data(&source.plotter_hf_id);
        self.pop_fl_id.add_missing_data(&source.pop_fl_id);
        self.pop_number_moved
            .add_missing_data(&source.pop_number_moved);
        self.pop_race.add_missing_data(&source.pop_race);
        self.pop_sr_id.add_missing_data(&source.pop_sr_id);
        self.pos_taker_hf_id
            .add_missing_data(&source.pos_taker_hf_id);
        self.position_id.add_missing_data(&source.position_id);
        self.position_profile_id
            .add_missing_data(&source.position_profile_id);
        self.prison_months.add_missing_data(&source.prison_months);
        self.production_zone_id
            .add_missing_data(&source.production_zone_id);
        self.promise_to_hf_id
            .add_missing_data(&source.promise_to_hf_id);
        self.property_confiscated_from_hf_id
            .add_missing_data(&source.property_confiscated_from_hf_id);
        self.purchased_unowned
            .add_missing_data(&source.purchased_unowned);
        self.part_lost.add_missing_data(&source.part_lost);
        self.pile_type.add_missing_data(&source.pile_type);
        self.position.add_missing_data(&source.position);
        self.props_item_mat.add_missing_data(&source.props_item_mat);
        self.props_item_mat_index
            .add_missing_data(&source.props_item_mat_index);
        self.props_item_mat_type
            .add_missing_data(&source.props_item_mat_type);
        self.props_item_subtype
            .add_missing_data(&source.props_item_subtype);
        self.props_item_type
            .add_missing_data(&source.props_item_type);
        self.props_pile_type
            .add_missing_data(&source.props_pile_type);
    }
}

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

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

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

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