@@ -29,8 +29,6 @@ pub struct PathSource<'gctx> {
29
29
source_id : SourceId ,
30
30
/// The root path of this source.
31
31
path : PathBuf ,
32
- /// Whether this source has updated all package information it may contain.
33
- updated : bool ,
34
32
/// Packages that this sources has discovered.
35
33
package : Option < Package > ,
36
34
gctx : & ' gctx GlobalContext ,
@@ -45,7 +43,6 @@ impl<'gctx> PathSource<'gctx> {
45
43
Self {
46
44
source_id,
47
45
path : path. to_path_buf ( ) ,
48
- updated : false ,
49
46
package : None ,
50
47
gctx,
51
48
}
@@ -59,7 +56,6 @@ impl<'gctx> PathSource<'gctx> {
59
56
Self {
60
57
source_id,
61
58
path,
62
- updated : true ,
63
59
package : Some ( pkg) ,
64
60
gctx,
65
61
}
@@ -69,7 +65,7 @@ impl<'gctx> PathSource<'gctx> {
69
65
pub fn root_package ( & mut self ) -> CargoResult < Package > {
70
66
trace ! ( "root_package; source={:?}" , self ) ;
71
67
72
- self . update ( ) ?;
68
+ self . load ( ) ?;
73
69
74
70
match & self . package {
75
71
Some ( pkg) => Ok ( pkg. clone ( ) ) ,
@@ -80,23 +76,6 @@ impl<'gctx> PathSource<'gctx> {
80
76
}
81
77
}
82
78
83
- /// Returns the packages discovered by this source. It may walk the
84
- /// filesystem if package information haven't yet updated.
85
- pub fn read_packages ( & self ) -> CargoResult < Vec < Package > > {
86
- if self . updated {
87
- Ok ( self . package . clone ( ) . into_iter ( ) . collect ( ) )
88
- } else {
89
- let pkg = self . read_package ( ) ?;
90
- Ok ( vec ! [ pkg] )
91
- }
92
- }
93
-
94
- fn read_package ( & self ) -> CargoResult < Package > {
95
- let path = self . path . join ( "Cargo.toml" ) ;
96
- let pkg = ops:: read_package ( & path, self . source_id , self . gctx ) ?;
97
- Ok ( pkg)
98
- }
99
-
100
79
/// List all files relevant to building this package inside this source.
101
80
///
102
81
/// This function will use the appropriate methods to determine the
@@ -112,10 +91,10 @@ impl<'gctx> PathSource<'gctx> {
112
91
}
113
92
114
93
/// Gets the last modified file in a package.
115
- pub fn last_modified_file ( & self , pkg : & Package ) -> CargoResult < ( FileTime , PathBuf ) > {
116
- if ! self . updated {
94
+ fn last_modified_file ( & self , pkg : & Package ) -> CargoResult < ( FileTime , PathBuf ) > {
95
+ if self . package . is_none ( ) {
117
96
return Err ( internal ( format ! (
118
- "BUG: source `{:?}` was not updated " ,
97
+ "BUG: source `{:?}` was not loaded " ,
119
98
self . path
120
99
) ) ) ;
121
100
}
@@ -128,14 +107,19 @@ impl<'gctx> PathSource<'gctx> {
128
107
}
129
108
130
109
/// Discovers packages inside this source if it hasn't yet done.
131
- pub fn update ( & mut self ) -> CargoResult < ( ) > {
132
- if ! self . updated {
110
+ pub fn load ( & mut self ) -> CargoResult < ( ) > {
111
+ if self . package . is_none ( ) {
133
112
self . package = Some ( self . read_package ( ) ?) ;
134
- self . updated = true ;
135
113
}
136
114
137
115
Ok ( ( ) )
138
116
}
117
+
118
+ fn read_package ( & self ) -> CargoResult < Package > {
119
+ let path = self . path . join ( "Cargo.toml" ) ;
120
+ let pkg = ops:: read_package ( & path, self . source_id , self . gctx ) ?;
121
+ Ok ( pkg)
122
+ }
139
123
}
140
124
141
125
impl < ' gctx > Debug for PathSource < ' gctx > {
@@ -151,7 +135,7 @@ impl<'gctx> Source for PathSource<'gctx> {
151
135
kind : QueryKind ,
152
136
f : & mut dyn FnMut ( IndexSummary ) ,
153
137
) -> Poll < CargoResult < ( ) > > {
154
- self . update ( ) ?;
138
+ self . load ( ) ?;
155
139
if let Some ( s) = self . package . as_ref ( ) . map ( |p| p. summary ( ) ) {
156
140
let matched = match kind {
157
141
QueryKind :: Exact => dep. matches ( s) ,
@@ -179,7 +163,7 @@ impl<'gctx> Source for PathSource<'gctx> {
179
163
180
164
fn download ( & mut self , id : PackageId ) -> CargoResult < MaybePackage > {
181
165
trace ! ( "getting packages; id={}" , id) ;
182
- self . update ( ) ?;
166
+ self . load ( ) ?;
183
167
let pkg = self . package . iter ( ) . find ( |pkg| pkg. package_id ( ) == id) ;
184
168
pkg. cloned ( )
185
169
. map ( MaybePackage :: Ready )
@@ -213,7 +197,7 @@ impl<'gctx> Source for PathSource<'gctx> {
213
197
}
214
198
215
199
fn block_until_ready ( & mut self ) -> CargoResult < ( ) > {
216
- self . update ( )
200
+ self . load ( )
217
201
}
218
202
219
203
fn invalidate_cache ( & mut self ) {
@@ -232,8 +216,8 @@ pub struct RecursivePathSource<'gctx> {
232
216
source_id : SourceId ,
233
217
/// The root path of this source.
234
218
path : PathBuf ,
235
- /// Whether this source has updated all package information it may contain.
236
- updated : bool ,
219
+ /// Whether this source has loaded all package information it may contain.
220
+ loaded : bool ,
237
221
/// Packages that this sources has discovered.
238
222
packages : Vec < Package > ,
239
223
gctx : & ' gctx GlobalContext ,
@@ -252,22 +236,26 @@ impl<'gctx> RecursivePathSource<'gctx> {
252
236
Self {
253
237
source_id,
254
238
path : root. to_path_buf ( ) ,
255
- updated : false ,
239
+ loaded : false ,
256
240
packages : Vec :: new ( ) ,
257
241
gctx,
258
242
}
259
243
}
260
244
261
245
/// Returns the packages discovered by this source. It may walk the
262
- /// filesystem if package information haven't yet updated .
246
+ /// filesystem if package information haven't yet loaded .
263
247
pub fn read_packages ( & self ) -> CargoResult < Vec < Package > > {
264
- if self . updated {
248
+ if self . loaded {
265
249
Ok ( self . packages . clone ( ) )
266
250
} else {
267
- ops :: read_packages ( & self . path , self . source_id , self . gctx )
251
+ self . read_packages_inner ( )
268
252
}
269
253
}
270
254
255
+ fn read_packages_inner ( & self ) -> CargoResult < Vec < Package > > {
256
+ ops:: read_packages ( & self . path , self . source_id , self . gctx )
257
+ }
258
+
271
259
/// List all files relevant to building this package inside this source.
272
260
///
273
261
/// This function will use the appropriate methods to determine the
@@ -283,10 +271,10 @@ impl<'gctx> RecursivePathSource<'gctx> {
283
271
}
284
272
285
273
/// Gets the last modified file in a package.
286
- pub fn last_modified_file ( & self , pkg : & Package ) -> CargoResult < ( FileTime , PathBuf ) > {
287
- if !self . updated {
274
+ fn last_modified_file ( & self , pkg : & Package ) -> CargoResult < ( FileTime , PathBuf ) > {
275
+ if !self . loaded {
288
276
return Err ( internal ( format ! (
289
- "BUG: source `{:?}` was not updated " ,
277
+ "BUG: source `{:?}` was not loaded " ,
290
278
self . path
291
279
) ) ) ;
292
280
}
@@ -299,11 +287,10 @@ impl<'gctx> RecursivePathSource<'gctx> {
299
287
}
300
288
301
289
/// Discovers packages inside this source if it hasn't yet done.
302
- pub fn update ( & mut self ) -> CargoResult < ( ) > {
303
- if !self . updated {
304
- let packages = self . read_packages ( ) ?;
305
- self . packages . extend ( packages. into_iter ( ) ) ;
306
- self . updated = true ;
290
+ pub fn load ( & mut self ) -> CargoResult < ( ) > {
291
+ if !self . loaded {
292
+ self . packages = self . read_packages_inner ( ) ?;
293
+ self . loaded = true ;
307
294
}
308
295
309
296
Ok ( ( ) )
@@ -323,7 +310,7 @@ impl<'gctx> Source for RecursivePathSource<'gctx> {
323
310
kind : QueryKind ,
324
311
f : & mut dyn FnMut ( IndexSummary ) ,
325
312
) -> Poll < CargoResult < ( ) > > {
326
- self . update ( ) ?;
313
+ self . load ( ) ?;
327
314
for s in self . packages . iter ( ) . map ( |p| p. summary ( ) ) {
328
315
let matched = match kind {
329
316
QueryKind :: Exact => dep. matches ( s) ,
@@ -351,7 +338,7 @@ impl<'gctx> Source for RecursivePathSource<'gctx> {
351
338
352
339
fn download ( & mut self , id : PackageId ) -> CargoResult < MaybePackage > {
353
340
trace ! ( "getting packages; id={}" , id) ;
354
- self . update ( ) ?;
341
+ self . load ( ) ?;
355
342
let pkg = self . packages . iter ( ) . find ( |pkg| pkg. package_id ( ) == id) ;
356
343
pkg. cloned ( )
357
344
. map ( MaybePackage :: Ready )
@@ -385,7 +372,7 @@ impl<'gctx> Source for RecursivePathSource<'gctx> {
385
372
}
386
373
387
374
fn block_until_ready ( & mut self ) -> CargoResult < ( ) > {
388
- self . update ( )
375
+ self . load ( )
389
376
}
390
377
391
378
fn invalidate_cache ( & mut self ) {
0 commit comments