@@ -201,22 +201,24 @@ impl<'cfg> PackageRegistry<'cfg> {
201
201
Ok ( ret)
202
202
}
203
203
204
- // This function is used to transform a summary to another locked summary if
205
- // possible. This is where the concept of a lockfile comes into play.
206
- //
207
- // If a summary points at a package id which was previously locked, then we
208
- // override the summary's id itself, as well as all dependencies, to be
209
- // rewritten to the locked versions. This will transform the summary's
210
- // source to a precise source (listed in the locked version) as well as
211
- // transforming all of the dependencies from range requirements on imprecise
212
- // sources to exact requirements on precise sources.
213
- //
214
- // If a summary does not point at a package id which was previously locked,
215
- // we still want to avoid updating as many dependencies as possible to keep
216
- // the graph stable. In this case we map all of the summary's dependencies
217
- // to be rewritten to a locked version wherever possible. If we're unable to
218
- // map a dependency though, we just pass it on through.
219
- fn lock ( & self , summary : Summary ) -> Summary {
204
+ /// This function is used to transform a summary to another locked summary
205
+ /// if possible. This is where the concept of a lockfile comes into play.
206
+ ///
207
+ /// If a summary points at a package id which was previously locked, then we
208
+ /// override the summary's id itself, as well as all dependencies, to be
209
+ /// rewritten to the locked versions. This will transform the summary's
210
+ /// source to a precise source (listed in the locked version) as well as
211
+ /// transforming all of the dependencies from range requirements on
212
+ /// imprecise sources to exact requirements on precise sources.
213
+ ///
214
+ /// If a summary does not point at a package id which was previously locked,
215
+ /// or if any dependencies were added and don't have a previously listed
216
+ /// version, we still want to avoid updating as many dependencies as
217
+ /// possible to keep the graph stable. In this case we map all of the
218
+ /// summary's dependencies to be rewritten to a locked version wherever
219
+ /// possible. If we're unable to map a dependency though, we just pass it on
220
+ /// through.
221
+ pub fn lock ( & self , summary : Summary ) -> Summary {
220
222
let pair = self . locked . get ( summary. source_id ( ) ) . and_then ( |map| {
221
223
map. get ( summary. name ( ) )
222
224
} ) . and_then ( |vec| {
@@ -229,51 +231,43 @@ impl<'cfg> PackageRegistry<'cfg> {
229
231
None => summary,
230
232
} ;
231
233
summary. map_dependencies ( |dep| {
232
- match pair {
233
- // If we've got a known set of overrides for this summary, then
234
- // one of a few cases can arise:
235
- //
236
- // 1. We have a lock entry for this dependency from the same
237
- // source as it's listed as coming from. In this case we make
238
- // sure to lock to precisely the given package id.
239
- //
240
- // 2. We have a lock entry for this dependency, but it's from a
241
- // different source than what's listed, or the version
242
- // requirement has changed. In this case we must discard the
243
- // locked version because the dependency needs to be
244
- // re-resolved.
245
- //
246
- // 3. We don't have a lock entry for this dependency, in which
247
- // case it was likely an optional dependency which wasn't
248
- // included previously so we just pass it through anyway.
249
- Some ( & ( _, ref deps) ) => {
250
- match deps. iter ( ) . find ( |d| d. name ( ) == dep. name ( ) ) {
251
- Some ( lock) => {
252
- if dep. matches_id ( lock) {
253
- dep. lock_to ( lock)
254
- } else {
255
- dep
256
- }
257
- }
258
- None => dep,
259
- }
234
+ // If we've got a known set of overrides for this summary, then
235
+ // one of a few cases can arise:
236
+ //
237
+ // 1. We have a lock entry for this dependency from the same
238
+ // source as it's listed as coming from. In this case we make
239
+ // sure to lock to precisely the given package id.
240
+ //
241
+ // 2. We have a lock entry for this dependency, but it's from a
242
+ // different source than what's listed, or the version
243
+ // requirement has changed. In this case we must discard the
244
+ // locked version because the dependency needs to be
245
+ // re-resolved.
246
+ //
247
+ // 3. We don't have a lock entry for this dependency, in which
248
+ // case it was likely an optional dependency which wasn't
249
+ // included previously so we just pass it through anyway.
250
+ //
251
+ // Cases 1/2 are handled by `matches_id` and case 3 is handled by
252
+ // falling through to the logic below.
253
+ if let Some ( & ( _, ref locked_deps) ) = pair {
254
+ let locked = locked_deps. iter ( ) . find ( |id| dep. matches_id ( id) ) ;
255
+ if let Some ( locked) = locked {
256
+ return dep. lock_to ( locked)
260
257
}
258
+ }
261
259
262
- // If this summary did not have a locked version, then we query
263
- // all known locked packages to see if they match this
264
- // dependency. If anything does then we lock it to that and move
265
- // on.
266
- None => {
267
- let v = self . locked . get ( dep. source_id ( ) ) . and_then ( |map| {
268
- map. get ( dep. name ( ) )
269
- } ) . and_then ( |vec| {
270
- vec. iter ( ) . find ( |& & ( ref id, _) | dep. matches_id ( id) )
271
- } ) ;
272
- match v {
273
- Some ( & ( ref id, _) ) => dep. lock_to ( id) ,
274
- None => dep
275
- }
276
- }
260
+ // If this dependency did not have a locked version, then we query
261
+ // all known locked packages to see if they match this dependency.
262
+ // If anything does then we lock it to that and move on.
263
+ let v = self . locked . get ( dep. source_id ( ) ) . and_then ( |map| {
264
+ map. get ( dep. name ( ) )
265
+ } ) . and_then ( |vec| {
266
+ vec. iter ( ) . find ( |& & ( ref id, _) | dep. matches_id ( id) )
267
+ } ) ;
268
+ match v {
269
+ Some ( & ( ref id, _) ) => dep. lock_to ( id) ,
270
+ None => dep
277
271
}
278
272
} )
279
273
}
0 commit comments