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
use std::rc::Rc;

use crate::{index::IndexEntryProperty, HitEntry, ObjectValue};
use crate::{object_data::ObjectValues, Hit};
use crate::{HitError, Id, Model};

pub trait InitEntryPlugin {
    fn on_init_add_entry(
        &mut self,
        model: Rc<Model>,
        id: &str,
        data: ObjectValues,
        parent: Option<IndexEntryProperty>,
    );
}

pub trait AfterImportPlugin {
    fn after_import(&mut self, hit: &Hit) -> Result<(), HitError>;
}

pub trait InitEntryAfterIndexPlugin {
    fn for_each_entry(
        &mut self,
        model: Rc<Model>,
        id: &str,
        data: ObjectValues,
        parent: Option<IndexEntryProperty>,
    );
}

pub trait DeletePlugin {
    fn on_before_delete_entry(
        &mut self,
        entry: &HitEntry,
        instance: &mut Hit,
    ) -> Result<(), HitError>;
    fn on_after_delete_entry(
        &mut self,
        entry: &HitEntry,
        instance: &mut Hit,
    ) -> Result<(), HitError>;
}
pub trait ReferencePlugin {
    fn on_before_add_reference(
        &mut self,
        instance: &mut Hit,
        reference_id: &Id,
        target: &IndexEntryProperty,
    ) -> Result<(), HitError>;
    fn on_after_add_reference(
        &mut self,
        instance: &mut Hit,
        reference_id: &Id,
        target: &IndexEntryProperty,
    ) -> Result<(), HitError>;
    fn on_before_remove_reference(
        &mut self,
        instance: &mut Hit,
        reference_id: &Id,
        target: &IndexEntryProperty,
    ) -> Result<(), HitError>;
    fn on_after_remove_reference(
        &mut self,
        instance: &mut Hit,
        reference_id: &Id,
        target: &IndexEntryProperty,
    ) -> Result<(), HitError>;
}

pub trait Plugin {
    fn on_before_add_entry(
        &mut self,
        model: Rc<Model>,
        id: &str,
        data: ObjectValues,
        parent: IndexEntryProperty,
        before_id: &Option<Id>,
        instance: &Hit,
    ) -> Result<(), HitError>;

    fn on_after_add_entry(
        &mut self,
        model: Rc<Model>,
        id: &str,
        data: ObjectValues,
        parent: IndexEntryProperty,
        before_id: &Option<Id>,
        instance: &mut Hit,
    ) -> Result<(), HitError>;

    fn on_before_set_value(
        &mut self,
        property: IndexEntryProperty,
        value: &ObjectValue,
        old_value: &Option<ObjectValue>,
        instance: &Hit,
    ) -> Result<(), HitError>;

    fn on_after_set_value(
        &mut self,
        property: IndexEntryProperty,
        value: &ObjectValue,
        old_value: &Option<ObjectValue>,
        instance: &mut Hit,
    ) -> Result<(), HitError>;

    fn on_before_move_subobject(
        &mut self,
        id: &str,
        target: IndexEntryProperty,
        before_id: Option<String>,
        instance: &Hit,
    ) -> Result<(), HitError>;

    fn on_after_move_subobject(
        &mut self,
        id: &str,
        target: IndexEntryProperty,
        original_parent: IndexEntryProperty,
        before_id: Option<String>,
        instance: &mut Hit,
    ) -> Result<(), HitError>;
}