1
1
//! An algorithm to find a path to refer to a certain item.
2
2
3
- use std:: { cmp:: Ordering , iter} ;
3
+ use std:: { cell :: Cell , cmp:: Ordering , iter} ;
4
4
5
5
use hir_expand:: {
6
6
name:: { known, AsName , Name } ,
@@ -49,6 +49,7 @@ pub fn find_path(
49
49
ignore_local_imports,
50
50
from,
51
51
from_def_map : & from. def_map ( db) ,
52
+ fuel : Cell :: new ( FIND_PATH_FUEL ) ,
52
53
} ,
53
54
item,
54
55
MAX_PATH_LEN ,
@@ -70,6 +71,7 @@ fn zip_stability(a: Stability, b: Stability) -> Stability {
70
71
}
71
72
72
73
const MAX_PATH_LEN : usize = 15 ;
74
+ const FIND_PATH_FUEL : usize = 10000 ;
73
75
74
76
#[ derive( Copy , Clone , Debug , PartialEq , Eq ) ]
75
77
pub enum PrefixKind {
@@ -101,6 +103,7 @@ struct FindPathCtx<'db> {
101
103
ignore_local_imports : bool ,
102
104
from : ModuleId ,
103
105
from_def_map : & ' db DefMap ,
106
+ fuel : Cell < usize > ,
104
107
}
105
108
106
109
/// Attempts to find a path to refer to the given `item` visible from the `from` ModuleId
@@ -314,6 +317,17 @@ fn calculate_best_path(
314
317
// the item's name itself.
315
318
return None ;
316
319
}
320
+ let fuel = ctx. fuel . get ( ) ;
321
+ if fuel == 0 {
322
+ // we ran out of fuel, so we stop searching here
323
+ tracing:: warn!(
324
+ "ran out of fuel while searching for a path for item {item:?} of krate {:?} from krate {:?}" ,
325
+ item. krate( ctx. db) ,
326
+ ctx. from. krate( )
327
+ ) ;
328
+ return None ;
329
+ }
330
+ ctx. fuel . set ( fuel - 1 ) ;
317
331
318
332
let mut best_path = None ;
319
333
let mut best_path_len = max_len;
0 commit comments