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
#[cfg(feature = "diesel")]
pub(in crate) mod diesel;
mod error;
#[cfg(feature = "diesel")]
pub use self::diesel::DieselCommitStore;
pub use error::CommitStoreError;
#[derive(Clone, Debug, Serialize, PartialEq)]
pub struct Commit {
pub commit_id: String,
pub commit_num: i64,
pub service_id: Option<String>,
}
#[derive(Clone, Debug, Serialize, PartialEq)]
pub struct ChainRecord {
pub start_commit_num: i64,
pub end_commit_num: i64,
pub service_id: Option<String>,
}
#[derive(Clone, Eq, PartialEq)]
pub enum StateChange {
Set { key: String, value: Vec<u8> },
Delete { key: String },
}
#[derive(Clone)]
pub struct CommitEvent {
pub service_id: Option<String>,
pub id: String,
pub height: Option<u64>,
pub state_changes: Vec<StateChange>,
}
pub trait CommitStore: Send + Sync {
fn add_commit(&self, commit: Commit) -> Result<(), CommitStoreError>;
fn get_commit_by_commit_num(&self, commit_num: i64)
-> Result<Option<Commit>, CommitStoreError>;
fn get_current_commit_id(&self) -> Result<Option<String>, CommitStoreError>;
fn get_current_service_commits(&self) -> Result<Vec<Commit>, CommitStoreError>;
fn get_next_commit_num(&self) -> Result<i64, CommitStoreError>;
fn resolve_fork(&self, commit_num: i64) -> Result<(), CommitStoreError>;
fn create_db_commit_from_commit_event(
&self,
event: &CommitEvent,
) -> Result<Option<Commit>, CommitStoreError>;
}
impl<CS> CommitStore for Box<CS>
where
CS: CommitStore + ?Sized,
{
fn add_commit(&self, commit: Commit) -> Result<(), CommitStoreError> {
(**self).add_commit(commit)
}
fn get_commit_by_commit_num(
&self,
commit_num: i64,
) -> Result<Option<Commit>, CommitStoreError> {
(**self).get_commit_by_commit_num(commit_num)
}
fn get_current_commit_id(&self) -> Result<Option<String>, CommitStoreError> {
(**self).get_current_commit_id()
}
fn get_current_service_commits(&self) -> Result<Vec<Commit>, CommitStoreError> {
(**self).get_current_service_commits()
}
fn get_next_commit_num(&self) -> Result<i64, CommitStoreError> {
(**self).get_next_commit_num()
}
fn resolve_fork(&self, commit_num: i64) -> Result<(), CommitStoreError> {
(**self).resolve_fork(commit_num)
}
fn create_db_commit_from_commit_event(
&self,
event: &CommitEvent,
) -> Result<Option<Commit>, CommitStoreError> {
(**self).create_db_commit_from_commit_event(event)
}
}