1
+ use gix_date:: SecondsSinceUnixEpoch ;
2
+ use gix_hash:: ObjectId ;
3
+ use gix_hashtable:: HashSet ;
1
4
use smallvec:: SmallVec ;
2
-
3
- /// An iterator over the ancestors one or more starting commits
4
- pub struct Ancestors < Find , Predicate , StateMut > {
5
- objects : Find ,
6
- cache : Option < gix_commitgraph:: Graph > ,
7
- predicate : Predicate ,
8
- state : StateMut ,
9
- parents : super :: Parents ,
10
- sorting : Sorting ,
11
- }
5
+ use std:: collections:: VecDeque ;
12
6
13
7
/// Specify how to sort commits during traversal.
14
8
///
@@ -58,46 +52,39 @@ pub enum Sorting {
58
52
} ,
59
53
}
60
54
55
+ /// The error is part of the item returned by the [Ancestors](super::Ancestors) iterator.
56
+ #[ derive( Debug , thiserror:: Error ) ]
57
+ #[ allow( missing_docs) ]
58
+ pub enum Error {
59
+ #[ error( transparent) ]
60
+ Find ( #[ from] gix_object:: find:: existing_iter:: Error ) ,
61
+ #[ error( transparent) ]
62
+ ObjectDecode ( #[ from] gix_object:: decode:: Error ) ,
63
+ }
64
+
65
+ /// The state used and potentially shared by multiple graph traversals.
66
+ #[ derive( Clone ) ]
67
+ pub ( super ) struct State {
68
+ next : VecDeque < ObjectId > ,
69
+ queue : gix_revwalk:: PriorityQueue < SecondsSinceUnixEpoch , ObjectId > ,
70
+ buf : Vec < u8 > ,
71
+ seen : HashSet < ObjectId > ,
72
+ parents_buf : Vec < u8 > ,
73
+ parent_ids : SmallVec < [ ( ObjectId , SecondsSinceUnixEpoch ) ; 2 ] > ,
74
+ }
75
+
61
76
///
62
77
#[ allow( clippy:: empty_docs) ]
63
- pub mod ancestors {
64
- use std:: {
65
- borrow:: { Borrow , BorrowMut } ,
66
- collections:: VecDeque ,
67
- } ;
68
-
78
+ mod init {
69
79
use gix_date:: SecondsSinceUnixEpoch ;
70
80
use gix_hash:: { oid, ObjectId } ;
71
- use gix_hashtable:: HashSet ;
72
81
use gix_object:: { CommitRefIter , FindExt } ;
73
- use smallvec:: SmallVec ;
74
82
75
83
use super :: {
76
- super :: { Either , Info , ParentIds , Parents } ,
77
- collect_parents, Ancestors , Sorting ,
84
+ super :: { Ancestors , Either , Info , ParentIds , Parents } ,
85
+ collect_parents, Error , Sorting , State ,
78
86
} ;
79
87
80
- /// The error is part of the item returned by the [Ancestors] iterator.
81
- #[ derive( Debug , thiserror:: Error ) ]
82
- #[ allow( missing_docs) ]
83
- pub enum Error {
84
- #[ error( transparent) ]
85
- Find ( #[ from] gix_object:: find:: existing_iter:: Error ) ,
86
- #[ error( transparent) ]
87
- ObjectDecode ( #[ from] gix_object:: decode:: Error ) ,
88
- }
89
-
90
- /// The state used and potentially shared by multiple graph traversals.
91
- #[ derive( Clone ) ]
92
- pub struct State {
93
- next : VecDeque < ObjectId > ,
94
- queue : gix_revwalk:: PriorityQueue < SecondsSinceUnixEpoch , ObjectId > ,
95
- buf : Vec < u8 > ,
96
- seen : HashSet < ObjectId > ,
97
- parents_buf : Vec < u8 > ,
98
- parent_ids : SmallVec < [ ( ObjectId , SecondsSinceUnixEpoch ) ; 2 ] > ,
99
- }
100
-
101
88
impl Default for State {
102
89
fn default ( ) -> Self {
103
90
State {
@@ -121,12 +108,11 @@ pub mod ancestors {
121
108
}
122
109
123
110
/// Builder
124
- impl < Find , Predicate , StateMut > Ancestors < Find , Predicate , StateMut >
111
+ impl < Find , Predicate > Ancestors < Find , Predicate >
125
112
where
126
113
Find : gix_object:: Find ,
127
- StateMut : BorrowMut < State > ,
128
114
{
129
- /// Set the sorting method, either topological or by author date
115
+ /// Set the ` sorting` method.
130
116
pub fn sorting ( mut self , sorting : Sorting ) -> Result < Self , Error > {
131
117
self . sorting = sorting;
132
118
match self . sorting {
@@ -135,7 +121,7 @@ pub mod ancestors {
135
121
}
136
122
Sorting :: ByCommitTimeNewestFirst | Sorting :: ByCommitTimeNewestFirstCutoffOlderThan { .. } => {
137
123
let cutoff_time = self . sorting . cutoff_time ( ) ;
138
- let state = self . state . borrow_mut ( ) ;
124
+ let state = & mut self . state ;
139
125
for commit_id in state. next . drain ( ..) {
140
126
let commit_iter = self . objects . find_commit_iter ( & commit_id, & mut state. buf ) ?;
141
127
let time = commit_iter. committer ( ) ?. time . seconds ;
@@ -173,7 +159,7 @@ pub mod ancestors {
173
159
}
174
160
175
161
fn queue_to_vecdeque ( & mut self ) {
176
- let state = self . state . borrow_mut ( ) ;
162
+ let state = & mut self . state ;
177
163
state. next . extend (
178
164
std:: mem:: replace ( & mut state. queue , gix_revwalk:: PriorityQueue :: new ( ) )
179
165
. into_iter_unordered ( )
@@ -182,55 +168,48 @@ pub mod ancestors {
182
168
}
183
169
}
184
170
185
- /// Initialization
186
- impl < Find , StateMut > Ancestors < Find , fn ( & oid ) -> bool , StateMut >
171
+ /// Lifecyle
172
+ impl < Find > Ancestors < Find , fn ( & oid ) -> bool >
187
173
where
188
174
Find : gix_object:: Find ,
189
- StateMut : BorrowMut < State > ,
190
175
{
191
176
/// Create a new instance.
192
177
///
193
178
/// * `find` - a way to lookup new object data during traversal by their `ObjectId`, writing their data into buffer and returning
194
179
/// an iterator over commit tokens if the object is present and is a commit. Caching should be implemented within this function
195
180
/// as needed.
196
- /// * `state` - all state used for the traversal. If multiple traversals are performed, allocations can be minimized by reusing
197
- /// this state.
198
181
/// * `tips`
199
182
/// * the starting points of the iteration, usually commits
200
183
/// * each commit they lead to will only be returned once, including the tip that started it
201
- pub fn new ( tips : impl IntoIterator < Item = impl Into < ObjectId > > , state : StateMut , find : Find ) -> Self {
202
- Self :: filtered ( tips, state , find, |_| true )
184
+ pub fn new ( tips : impl IntoIterator < Item = impl Into < ObjectId > > , find : Find ) -> Self {
185
+ Self :: filtered ( tips, find, |_| true )
203
186
}
204
187
}
205
188
206
- /// Initialization
207
- impl < Find , Predicate , StateMut > Ancestors < Find , Predicate , StateMut >
189
+ /// Lifecyle
190
+ impl < Find , Predicate > Ancestors < Find , Predicate >
208
191
where
209
192
Find : gix_object:: Find ,
210
193
Predicate : FnMut ( & oid ) -> bool ,
211
- StateMut : BorrowMut < State > ,
212
194
{
213
195
/// Create a new instance with commit filtering enabled.
214
196
///
215
197
/// * `find` - a way to lookup new object data during traversal by their `ObjectId`, writing their data into buffer and returning
216
198
/// an iterator over commit tokens if the object is present and is a commit. Caching should be implemented within this function
217
199
/// as needed.
218
- /// * `state` - all state used for the traversal. If multiple traversals are performed, allocations can be minimized by reusing
219
- /// this state.
220
200
/// * `tips`
221
201
/// * the starting points of the iteration, usually commits
222
202
/// * each commit they lead to will only be returned once, including the tip that started it
223
203
/// * `predicate` - indicate whether a given commit should be included in the result as well
224
204
/// as whether its parent commits should be traversed.
225
205
pub fn filtered (
226
206
tips : impl IntoIterator < Item = impl Into < ObjectId > > ,
227
- mut state : StateMut ,
228
207
find : Find ,
229
208
mut predicate : Predicate ,
230
209
) -> Self {
231
210
let tips = tips. into_iter ( ) ;
211
+ let mut state = State :: default ( ) ;
232
212
{
233
- let state = state. borrow_mut ( ) ;
234
213
state. clear ( ) ;
235
214
state. next . reserve ( tips. size_hint ( ) . 0 ) ;
236
215
for tip in tips. map ( Into :: into) {
@@ -250,27 +229,24 @@ pub mod ancestors {
250
229
}
251
230
}
252
231
}
232
+
253
233
/// Access
254
- impl < Find , Predicate , StateMut > Ancestors < Find , Predicate , StateMut >
255
- where
256
- StateMut : Borrow < State > ,
257
- {
258
- /// Return an iterator for accessing more of the current commits data.
234
+ impl < Find , Predicate > Ancestors < Find , Predicate > {
235
+ /// Return an iterator for accessing data of the current commit, parsed lazily.
259
236
pub fn commit_iter ( & self ) -> CommitRefIter < ' _ > {
260
- CommitRefIter :: from_bytes ( & self . state . borrow ( ) . buf )
237
+ CommitRefIter :: from_bytes ( & self . state . buf )
261
238
}
262
239
263
- /// Return the current commits data.
240
+ /// Return the current commits' raw data, which can be parsed using [`gix_object::CommitRef::from_bytes()`] .
264
241
pub fn commit_data ( & self ) -> & [ u8 ] {
265
- & self . state . borrow ( ) . buf
242
+ & self . state . buf
266
243
}
267
244
}
268
245
269
- impl < Find , Predicate , StateMut > Iterator for Ancestors < Find , Predicate , StateMut >
246
+ impl < Find , Predicate > Iterator for Ancestors < Find , Predicate >
270
247
where
271
248
Find : gix_object:: Find ,
272
249
Predicate : FnMut ( & oid ) -> bool ,
273
- StateMut : BorrowMut < State > ,
274
250
{
275
251
type Item = Result < Info , Error > ;
276
252
@@ -300,17 +276,16 @@ pub mod ancestors {
300
276
}
301
277
302
278
/// Utilities
303
- impl < Find , Predicate , StateMut > Ancestors < Find , Predicate , StateMut >
279
+ impl < Find , Predicate > Ancestors < Find , Predicate >
304
280
where
305
281
Find : gix_object:: Find ,
306
282
Predicate : FnMut ( & oid ) -> bool ,
307
- StateMut : BorrowMut < State > ,
308
283
{
309
284
fn next_by_commit_date (
310
285
& mut self ,
311
286
cutoff_older_than : Option < SecondsSinceUnixEpoch > ,
312
287
) -> Option < Result < Info , Error > > {
313
- let state = self . state . borrow_mut ( ) ;
288
+ let state = & mut self . state ;
314
289
315
290
let ( commit_time, oid) = state. queue . pop ( ) ?;
316
291
let mut parents: ParentIds = Default :: default ( ) ;
@@ -371,14 +346,13 @@ pub mod ancestors {
371
346
}
372
347
373
348
/// Utilities
374
- impl < Find , Predicate , StateMut > Ancestors < Find , Predicate , StateMut >
349
+ impl < Find , Predicate > Ancestors < Find , Predicate >
375
350
where
376
351
Find : gix_object:: Find ,
377
352
Predicate : FnMut ( & oid ) -> bool ,
378
- StateMut : BorrowMut < State > ,
379
353
{
380
354
fn next_by_topology ( & mut self ) -> Option < Result < Info , Error > > {
381
- let state = self . state . borrow_mut ( ) ;
355
+ let state = & mut self . state ;
382
356
let oid = state. next . pop_front ( ) ?;
383
357
let mut parents: ParentIds = Default :: default ( ) ;
384
358
match super :: super :: find ( self . cache . as_ref ( ) , & self . objects , & oid, & mut state. buf ) {
@@ -430,8 +404,6 @@ pub mod ancestors {
430
404
}
431
405
}
432
406
433
- pub use ancestors:: { Error , State } ;
434
-
435
407
fn collect_parents (
436
408
dest : & mut SmallVec < [ ( gix_hash:: ObjectId , gix_date:: SecondsSinceUnixEpoch ) ; 2 ] > ,
437
409
cache : Option < & gix_commitgraph:: Graph > ,
0 commit comments