@@ -39,6 +39,7 @@ pub struct Context<'a, 'cfg: 'a> {
39
39
pub build_config : BuildConfig ,
40
40
pub build_scripts : HashMap < Unit < ' a > , Arc < BuildScripts > > ,
41
41
pub links : Links < ' a > ,
42
+ pub used_in_plugin : HashSet < Unit < ' a > > ,
42
43
43
44
host : Layout ,
44
45
target : Option < Layout > ,
@@ -91,6 +92,7 @@ impl<'a, 'cfg> Context<'a, 'cfg> {
91
92
build_scripts : HashMap :: new ( ) ,
92
93
build_explicit_deps : HashMap :: new ( ) ,
93
94
links : Links :: new ( ) ,
95
+ used_in_plugin : HashSet :: new ( ) ,
94
96
} )
95
97
}
96
98
@@ -235,6 +237,41 @@ impl<'a, 'cfg> Context<'a, 'cfg> {
235
237
Ok ( ( ) )
236
238
}
237
239
240
+ /// Builds up the `used_in_plugin` internal to this context from the list of
241
+ /// top-level units.
242
+ ///
243
+ /// This will recursively walk `units` and all of their dependencies to
244
+ /// determine which crate are going to be used in plugins or not.
245
+ pub fn build_used_in_plugin_map ( & mut self , units : & [ Unit < ' a > ] )
246
+ -> CargoResult < ( ) > {
247
+ let mut visited = HashSet :: new ( ) ;
248
+ for unit in units {
249
+ try!( self . walk_used_in_plugin_map ( unit,
250
+ unit. target . for_host ( ) ,
251
+ & mut visited) ) ;
252
+ }
253
+ Ok ( ( ) )
254
+ }
255
+
256
+ fn walk_used_in_plugin_map ( & mut self ,
257
+ unit : & Unit < ' a > ,
258
+ is_plugin : bool ,
259
+ visited : & mut HashSet < ( Unit < ' a > , bool ) > )
260
+ -> CargoResult < ( ) > {
261
+ if !visited. insert ( ( * unit, is_plugin) ) {
262
+ return Ok ( ( ) )
263
+ }
264
+ if is_plugin {
265
+ self . used_in_plugin . insert ( * unit) ;
266
+ }
267
+ for unit in try!( self . dep_targets ( unit) ) {
268
+ try!( self . walk_used_in_plugin_map ( & unit,
269
+ is_plugin || unit. target . for_host ( ) ,
270
+ visited) ) ;
271
+ }
272
+ Ok ( ( ) )
273
+ }
274
+
238
275
/// Returns the appropriate directory layout for either a plugin or not.
239
276
pub fn layout ( & self , unit : & Unit ) -> LayoutProxy {
240
277
let primary = unit. pkg . package_id ( ) == self . resolve . root ( ) ;
0 commit comments