@@ -20,6 +20,7 @@ use openraft::Entry;
20
20
use openraft:: EntryPayload ;
21
21
use openraft:: LogId ;
22
22
use openraft:: RaftLogId ;
23
+ use openraft:: RaftTypeConfig ;
23
24
use openraft:: SnapshotMeta ;
24
25
use openraft:: StorageError ;
25
26
use openraft:: StorageIOError ;
@@ -38,7 +39,8 @@ pub struct ClientResponse {}
38
39
pub type NodeId = u64 ;
39
40
40
41
openraft:: declare_raft_types!(
41
- pub Config : D = ClientRequest , R = ClientResponse , NodeId = NodeId , Node = ( ) , Entry = Entry <Config >
42
+ pub TypeConfig : D = ClientRequest , R = ClientResponse , NodeId = NodeId , Node = ( ) ,
43
+ Entry = Entry <TypeConfig >, SnapshotData = Cursor <Vec <u8 >>
42
44
) ;
43
45
44
46
#[ derive( Debug ) ]
@@ -55,7 +57,7 @@ pub struct StateMachine {
55
57
56
58
pub struct LogStore {
57
59
vote : RwLock < Option < Vote < NodeId > > > ,
58
- log : RwLock < BTreeMap < u64 , Entry < Config > > > ,
60
+ log : RwLock < BTreeMap < u64 , Entry < TypeConfig > > > ,
59
61
last_purged_log_id : RwLock < Option < LogId < NodeId > > > ,
60
62
}
61
63
@@ -98,11 +100,11 @@ impl StateMachineStore {
98
100
}
99
101
100
102
#[ async_trait]
101
- impl RaftLogReader < Config > for Arc < LogStore > {
103
+ impl RaftLogReader < TypeConfig > for Arc < LogStore > {
102
104
async fn try_get_log_entries < RB : RangeBounds < u64 > + Clone + Debug + Send + Sync > (
103
105
& mut self ,
104
106
range : RB ,
105
- ) -> Result < Vec < Entry < Config > > , StorageError < NodeId > > {
107
+ ) -> Result < Vec < Entry < TypeConfig > > , StorageError < NodeId > > {
106
108
let mut entries = vec ! [ ] ;
107
109
{
108
110
let log = self . log . read ( ) . await ;
@@ -114,7 +116,7 @@ impl RaftLogReader<Config> for Arc<LogStore> {
114
116
Ok ( entries)
115
117
}
116
118
117
- async fn get_log_state ( & mut self ) -> Result < LogState < Config > , StorageError < NodeId > > {
119
+ async fn get_log_state ( & mut self ) -> Result < LogState < TypeConfig > , StorageError < NodeId > > {
118
120
let log = self . log . read ( ) . await ;
119
121
let last_serialized = log. iter ( ) . rev ( ) . next ( ) . map ( |( _, ent) | ent) ;
120
122
@@ -138,9 +140,9 @@ impl RaftLogReader<Config> for Arc<LogStore> {
138
140
}
139
141
140
142
#[ async_trait]
141
- impl RaftSnapshotBuilder < Config , Cursor < Vec < u8 > > > for Arc < StateMachineStore > {
143
+ impl RaftSnapshotBuilder < TypeConfig > for Arc < StateMachineStore > {
142
144
#[ tracing:: instrument( level = "trace" , skip( self ) ) ]
143
- async fn build_snapshot ( & mut self ) -> Result < Snapshot < NodeId , ( ) , Cursor < Vec < u8 > > > , StorageError < NodeId > > {
145
+ async fn build_snapshot ( & mut self ) -> Result < Snapshot < TypeConfig > , StorageError < NodeId > > {
144
146
let data;
145
147
let last_applied_log;
146
148
let last_membership;
@@ -190,7 +192,7 @@ impl RaftSnapshotBuilder<Config, Cursor<Vec<u8>>> for Arc<StateMachineStore> {
190
192
}
191
193
192
194
#[ async_trait]
193
- impl RaftLogStorage < Config > for Arc < LogStore > {
195
+ impl RaftLogStorage < TypeConfig > for Arc < LogStore > {
194
196
#[ tracing:: instrument( level = "trace" , skip( self ) ) ]
195
197
async fn save_vote ( & mut self , vote : & Vote < NodeId > ) -> Result < ( ) , StorageError < NodeId > > {
196
198
let mut v = self . vote . write ( ) . await ;
@@ -225,7 +227,7 @@ impl RaftLogStorage<Config> for Arc<LogStore> {
225
227
226
228
#[ tracing:: instrument( level = "trace" , skip_all) ]
227
229
async fn append < I > ( & mut self , entries : I , callback : LogFlushed < NodeId > ) -> Result < ( ) , StorageError < NodeId > >
228
- where I : IntoIterator < Item = Entry < Config > > + Send {
230
+ where I : IntoIterator < Item = Entry < TypeConfig > > + Send {
229
231
{
230
232
let mut log = self . log . write ( ) . await ;
231
233
log. extend ( entries. into_iter ( ) . map ( |entry| ( entry. get_log_id ( ) . index , entry) ) ) ;
@@ -242,9 +244,7 @@ impl RaftLogStorage<Config> for Arc<LogStore> {
242
244
}
243
245
244
246
#[ async_trait]
245
- impl RaftStateMachine < Config > for Arc < StateMachineStore > {
246
- type SnapshotData = Cursor < Vec < u8 > > ;
247
-
247
+ impl RaftStateMachine < TypeConfig > for Arc < StateMachineStore > {
248
248
async fn applied_state (
249
249
& mut self ,
250
250
) -> Result < ( Option < LogId < NodeId > > , StoredMembership < NodeId , ( ) > ) , StorageError < NodeId > > {
@@ -253,7 +253,7 @@ impl RaftStateMachine<Config> for Arc<StateMachineStore> {
253
253
}
254
254
255
255
async fn apply < I > ( & mut self , entries : I ) -> Result < Vec < ClientResponse > , StorageError < NodeId > >
256
- where I : IntoIterator < Item = Entry < Config > > + Send {
256
+ where I : IntoIterator < Item = Entry < TypeConfig > > + Send {
257
257
let mut sm = self . sm . write ( ) . await ;
258
258
259
259
let it = entries. into_iter ( ) ;
@@ -275,15 +275,17 @@ impl RaftStateMachine<Config> for Arc<StateMachineStore> {
275
275
}
276
276
277
277
#[ tracing:: instrument( level = "trace" , skip( self ) ) ]
278
- async fn begin_receiving_snapshot ( & mut self ) -> Result < Box < Self :: SnapshotData > , StorageError < NodeId > > {
278
+ async fn begin_receiving_snapshot (
279
+ & mut self ,
280
+ ) -> Result < Box < <TypeConfig as RaftTypeConfig >:: SnapshotData > , StorageError < NodeId > > {
279
281
Ok ( Box :: new ( Cursor :: new ( Vec :: new ( ) ) ) )
280
282
}
281
283
282
284
#[ tracing:: instrument( level = "trace" , skip( self , snapshot) ) ]
283
285
async fn install_snapshot (
284
286
& mut self ,
285
287
meta : & SnapshotMeta < NodeId , ( ) > ,
286
- snapshot : Box < Self :: SnapshotData > ,
288
+ snapshot : Box < < TypeConfig as RaftTypeConfig > :: SnapshotData > ,
287
289
) -> Result < ( ) , StorageError < NodeId > > {
288
290
let new_snapshot = StoredSnapshot {
289
291
meta : meta. clone ( ) ,
@@ -305,9 +307,7 @@ impl RaftStateMachine<Config> for Arc<StateMachineStore> {
305
307
}
306
308
307
309
#[ tracing:: instrument( level = "trace" , skip( self ) ) ]
308
- async fn get_current_snapshot (
309
- & mut self ,
310
- ) -> Result < Option < Snapshot < NodeId , ( ) , Self :: SnapshotData > > , StorageError < NodeId > > {
310
+ async fn get_current_snapshot ( & mut self ) -> Result < Option < Snapshot < TypeConfig > > , StorageError < NodeId > > {
311
311
match & * self . current_snapshot . read ( ) . await {
312
312
Some ( snapshot) => {
313
313
let data = snapshot. data . clone ( ) ;
0 commit comments