@@ -5,7 +5,6 @@ use crate::util::interning::InternedString;
5
5
use crate :: util:: GlobalContext ;
6
6
use std:: cmp:: Ordering ;
7
7
use std:: collections:: { BTreeMap , BTreeSet } ;
8
- use std:: ops:: Range ;
9
8
use std:: rc:: Rc ;
10
9
use std:: time:: { Duration , Instant } ;
11
10
@@ -181,13 +180,13 @@ impl DepsFrame {
181
180
fn min_candidates ( & self ) -> usize {
182
181
self . remaining_siblings
183
182
. peek ( )
184
- . map ( |( _, ( _ , candidates, _) ) | candidates. len ( ) )
183
+ . map ( |( _, candidates, _) | candidates. len ( ) )
185
184
. unwrap_or ( 0 )
186
185
}
187
186
188
- pub fn flatten ( & self ) -> impl Iterator < Item = ( PackageId , Dependency ) > + ' _ {
187
+ pub fn flatten ( & self ) -> impl Iterator < Item = ( PackageId , & Dependency ) > + ' _ {
189
188
self . remaining_siblings
190
- . clone ( )
189
+ . remaining ( )
191
190
. map ( move |( d, _, _) | ( self . parent . package_id ( ) , d) )
192
191
}
193
192
}
@@ -251,15 +250,16 @@ impl RemainingDeps {
251
250
// Figure out what our next dependency to activate is, and if nothing is
252
251
// listed then we're entirely done with this frame (yay!) and we can
253
252
// move on to the next frame.
254
- if let Some ( sibling) = deps_frame. remaining_siblings . next ( ) {
253
+ let sibling = deps_frame. remaining_siblings . iter ( ) . next ( ) . cloned ( ) ;
254
+ if let Some ( sibling) = sibling {
255
255
let parent = Summary :: clone ( & deps_frame. parent ) ;
256
256
self . data . insert ( ( deps_frame, insertion_time) ) ;
257
257
return Some ( ( just_here_for_the_error_messages, ( parent, sibling) ) ) ;
258
258
}
259
259
}
260
260
None
261
261
}
262
- pub fn iter ( & mut self ) -> impl Iterator < Item = ( PackageId , Dependency ) > + ' _ {
262
+ pub fn iter ( & mut self ) -> impl Iterator < Item = ( PackageId , & Dependency ) > + ' _ {
263
263
self . data . iter ( ) . flat_map ( |( other, _) | other. flatten ( ) )
264
264
}
265
265
}
@@ -324,22 +324,27 @@ pub type ConflictMap = BTreeMap<PackageId, ConflictReason>;
324
324
325
325
pub struct RcVecIter < T > {
326
326
vec : Rc < Vec < T > > ,
327
- rest : Range < usize > ,
327
+ offset : usize ,
328
328
}
329
329
330
330
impl < T > RcVecIter < T > {
331
331
pub fn new ( vec : Rc < Vec < T > > ) -> RcVecIter < T > {
332
- RcVecIter {
333
- rest : 0 ..vec. len ( ) ,
334
- vec,
335
- }
332
+ RcVecIter { vec, offset : 0 }
333
+ }
334
+
335
+ pub fn peek ( & self ) -> Option < & T > {
336
+ self . vec . get ( self . offset )
336
337
}
337
338
338
- fn peek ( & self ) -> Option < ( usize , & T ) > {
339
- self . rest
340
- . clone ( )
341
- . next ( )
342
- . and_then ( |i| self . vec . get ( i) . map ( |val| ( i, & * val) ) )
339
+ pub fn remaining ( & self ) -> impl Iterator < Item = & T > + ' _ {
340
+ self . vec . get ( self . offset ..) . into_iter ( ) . flatten ( )
341
+ }
342
+
343
+ pub fn iter ( & mut self ) -> impl Iterator < Item = & T > + ' _ {
344
+ let iter = self . vec . get ( self . offset ..) . into_iter ( ) . flatten ( ) ;
345
+ // This call to `ìnspect()` is used to increment `self.offset` when iterating the inner `Vec`,
346
+ // while keeping the `ExactSizeIterator` property.
347
+ iter. inspect ( |_| self . offset += 1 )
343
348
}
344
349
}
345
350
@@ -348,25 +353,7 @@ impl<T> Clone for RcVecIter<T> {
348
353
fn clone ( & self ) -> RcVecIter < T > {
349
354
RcVecIter {
350
355
vec : self . vec . clone ( ) ,
351
- rest : self . rest . clone ( ) ,
356
+ offset : self . offset ,
352
357
}
353
358
}
354
359
}
355
-
356
- impl < T > Iterator for RcVecIter < T >
357
- where
358
- T : Clone ,
359
- {
360
- type Item = T ;
361
-
362
- fn next ( & mut self ) -> Option < Self :: Item > {
363
- self . rest . next ( ) . and_then ( |i| self . vec . get ( i) . cloned ( ) )
364
- }
365
-
366
- fn size_hint ( & self ) -> ( usize , Option < usize > ) {
367
- // rest is a std::ops::Range, which is an ExactSizeIterator.
368
- self . rest . size_hint ( )
369
- }
370
- }
371
-
372
- impl < T : Clone > ExactSizeIterator for RcVecIter < T > { }
0 commit comments