Skip to content

Commit 1412bf5

Browse files
committed
feat: pass paths in globals
1 parent 7621ac2 commit 1412bf5

File tree

9 files changed

+66
-99
lines changed

9 files changed

+66
-99
lines changed

languages/tree-sitter-stack-graphs-python/src/stack-graphs.tsg

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
;; ^^^^^^^^^^^^^^^^
1414

1515
global FILE_PATH
16-
global ROOT_PATH
16+
global ROOT_PATH = ""
1717
global ROOT_NODE
1818
global JUMP_TO_SCOPE_NODE
1919

tree-sitter-stack-graphs/src/cli/index.rs

+12-10
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ use crate::BuildError;
4242
use crate::CancelAfterDuration;
4343
use crate::CancellationFlag;
4444
use crate::NoCancellation;
45+
use crate::{FILE_PATH_VAR, ROOT_PATH_VAR};
4546

4647
#[derive(Args)]
4748
pub struct IndexArgs {
@@ -430,17 +431,18 @@ impl<'a> Indexer<'a> {
430431
let relative_source_path = source_path.strip_prefix(source_root).unwrap();
431432
// here the file should also have stripped the source_root from its path
432433
if let Some(lc) = lcs.primary {
433-
let globals = Variables::new();
434+
let mut globals = Variables::new();
435+
436+
globals
437+
.add(FILE_PATH_VAR.into(), source_path.to_str().unwrap().into())
438+
.expect("failed to add file path variable");
439+
440+
globals
441+
.add(ROOT_PATH_VAR.into(), source_root.to_str().unwrap().into())
442+
.expect("failed to add root path variable");
443+
434444
lc.sgl
435-
.build_stack_graph_into(
436-
graph,
437-
file,
438-
source,
439-
source_path,
440-
source_root,
441-
&globals,
442-
cancellation_flag,
443-
)
445+
.build_stack_graph_into(graph, file, source, &globals, cancellation_flag)
444446
.map_err(|inner| BuildErrorWithSource {
445447
inner,
446448
source_path: source_path.to_path_buf(),

tree-sitter-stack-graphs/src/cli/test.rs

+10-2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ use crate::test::Test;
4343
use crate::test::TestResult;
4444
use crate::CancelAfterDuration;
4545
use crate::CancellationFlag;
46+
use crate::FILE_PATH_VAR;
4647

4748
#[derive(Args)]
4849
#[clap(after_help = r#"PATH SPECIFICATIONS:
@@ -316,13 +317,20 @@ impl TestArgs {
316317
&mut Some(test_fragment.source.as_ref()),
317318
)? {
318319
globals.clear();
320+
321+
// Add FILE_PATH to variables
322+
globals
323+
.add(
324+
FILE_PATH_VAR.into(),
325+
test_fragment.path.to_str().unwrap().into(),
326+
)
327+
.expect("failed to add file path variable");
328+
319329
test_fragment.add_globals_to(&mut globals);
320330
lc.sgl.build_stack_graph_into(
321331
&mut test.graph,
322332
test_fragment.file,
323333
&test_fragment.source,
324-
&test_fragment.path,
325-
&test_fragment.root_path,
326334
&globals,
327335
cancellation_flag.as_ref(),
328336
)

tree-sitter-stack-graphs/src/lib.rs

+6-25
Original file line numberDiff line numberDiff line change
@@ -558,12 +558,10 @@ impl StackGraphLanguage {
558558
stack_graph: &'a mut StackGraph,
559559
file: Handle<File>,
560560
source: &'a str,
561-
source_path: &Path,
562-
source_root: &Path,
563561
globals: &'a Variables<'a>,
564562
cancellation_flag: &'a dyn CancellationFlag,
565563
) -> Result<(), BuildError> {
566-
self.builder_into_stack_graph(stack_graph, file, source, source_path, source_root)
564+
self.builder_into_stack_graph(stack_graph, file, source)
567565
.build(globals, cancellation_flag)
568566
}
569567

@@ -576,10 +574,8 @@ impl StackGraphLanguage {
576574
stack_graph: &'a mut StackGraph,
577575
file: Handle<File>,
578576
source: &'a str,
579-
source_path: &'a Path,
580-
source_root: &'a Path,
581577
) -> Builder<'a> {
582-
Builder::new(self, stack_graph, file, source, source_path, source_root)
578+
Builder::new(self, stack_graph, file, source)
583579
}
584580
}
585581

@@ -588,8 +584,6 @@ pub struct Builder<'a> {
588584
stack_graph: &'a mut StackGraph,
589585
file: Handle<File>,
590586
source: &'a str,
591-
source_path: &'a Path,
592-
source_root: &'a Path,
593587
graph: Graph<'a>,
594588
remapped_nodes: HashMap<usize, NodeID>,
595589
injected_node_count: usize,
@@ -602,17 +596,13 @@ impl<'a> Builder<'a> {
602596
stack_graph: &'a mut StackGraph,
603597
file: Handle<File>,
604598
source: &'a str,
605-
source_path: &'a Path,
606-
source_root: &'a Path,
607599
) -> Self {
608600
let span_calculator = SpanCalculator::new(source);
609601
Builder {
610602
sgl,
611603
stack_graph,
612604
file,
613605
source,
614-
source_path,
615-
source_root,
616606
graph: Graph::new(),
617607
remapped_nodes: HashMap::new(),
618608
injected_node_count: 0,
@@ -659,19 +649,10 @@ impl<'a> Builder<'a> {
659649
.add(JUMP_TO_SCOPE_NODE_VAR.into(), jump_to_scope_node.into())
660650
.expect("Failed to set JUMP_TO_SCOPE_NODE");
661651

662-
if globals.get(&FILE_PATH_VAR.into()).is_none() {
663-
let file_name = self.source_path.to_str().unwrap().to_string();
664-
globals
665-
.add(FILE_PATH_VAR.into(), file_name.into())
666-
.expect("Failed to set FILE_PATH");
667-
}
668-
669-
if globals.get(&ROOT_PATH_VAR.into()).is_none() {
670-
let root_path = self.source_root.to_str().unwrap().to_string();
671-
globals
672-
.add(ROOT_PATH_VAR.into(), root_path.into())
673-
.expect("Failed to set ROOT_PATH");
674-
}
652+
// FILE_PATH is mandatory
653+
globals
654+
.get(&FILE_PATH_VAR.into())
655+
.expect("FILE_PATH not set");
675656

676657
let mut config = ExecutionConfig::new(&self.sgl.functions, &globals)
677658
.lazy(true)

tree-sitter-stack-graphs/src/loader.rs

+23-21
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ use tree_sitter_loader::Loader as TsLoader;
2929
use crate::CancellationFlag;
3030
use crate::FileAnalyzer;
3131
use crate::StackGraphLanguage;
32+
use crate::FILE_PATH_VAR;
3233

3334
pub static DEFAULT_TSG_PATHS: Lazy<Vec<LoadPath>> =
3435
Lazy::new(|| vec![LoadPath::Grammar("queries/stack-graphs".into())]);
@@ -75,18 +76,23 @@ impl LanguageConfiguration {
7576
let mut builtins = StackGraph::new();
7677
if let Some((builtins_path, builtins_source)) = builtins_source {
7778
let mut builtins_globals = Variables::new();
79+
80+
let builtins_path_var = Path::new("<builtins>");
81+
builtins_globals
82+
.add(
83+
FILE_PATH_VAR.into(),
84+
builtins_path_var.to_str().unwrap().into(),
85+
)
86+
.expect("failed to add file path variable");
87+
7888
if let Some(builtins_config) = builtins_config {
7989
Loader::load_globals_from_config_str(builtins_config, &mut builtins_globals)?;
8090
}
8191
let file = builtins.add_file("<builtins>").unwrap();
82-
let builtins_path_var = Path::new("<builtins>");
83-
let builtins_root = Path::new("");
8492
sgl.build_stack_graph_into(
8593
&mut builtins,
8694
file,
8795
builtins_source,
88-
builtins_path_var,
89-
builtins_root,
9096
&builtins_globals,
9197
cancellation_flag,
9298
)
@@ -332,25 +338,21 @@ impl Loader {
332338
let file_name = path.to_string_lossy();
333339
let file: stack_graphs::arena::Handle<stack_graphs::graph::File> =
334340
graph.add_file(&file_name).unwrap();
335-
let builtins_root = Path::new("");
336341
let mut globals = Variables::new();
342+
343+
globals
344+
.add(FILE_PATH_VAR.into(), path.to_str().unwrap().into())
345+
.expect("failed to add file path variable");
346+
337347
Self::load_globals_from_config_str(&config, &mut globals)?;
338-
sgl.build_stack_graph_into(
339-
graph,
340-
file,
341-
&source,
342-
path,
343-
builtins_root,
344-
&globals,
345-
cancellation_flag,
346-
)
347-
.map_err(|err| LoadError::Builtins {
348-
inner: err,
349-
source_path: path.to_path_buf(),
350-
source,
351-
tsg_path: sgl.tsg_path.to_path_buf(),
352-
tsg: sgl.tsg_source.clone(),
353-
})?;
348+
sgl.build_stack_graph_into(graph, file, &source, &globals, cancellation_flag)
349+
.map_err(|err| LoadError::Builtins {
350+
inner: err,
351+
source_path: path.to_path_buf(),
352+
source,
353+
tsg_path: sgl.tsg_path.to_path_buf(),
354+
tsg: sgl.tsg_source.clone(),
355+
})?;
354356
return Ok(());
355357
}
356358

tree-sitter-stack-graphs/src/test.rs

-4
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ pub struct Test {
157157
pub struct TestFragment {
158158
pub file: Handle<File>,
159159
pub path: PathBuf,
160-
pub root_path: PathBuf,
161160
pub source: String,
162161
pub assertions: Vec<Assertion>,
163162
pub globals: HashMap<String, String>,
@@ -181,7 +180,6 @@ impl Test {
181180
let mut prev_source = String::new();
182181
let mut line_files = Vec::new();
183182
let mut line_count = 0;
184-
let default_root_path = PathBuf::from("");
185183
for (current_line_number, current_line) in
186184
PositionedSubstring::lines_iter(source).enumerate()
187185
{
@@ -204,7 +202,6 @@ impl Test {
204202
fragments.push(TestFragment {
205203
file,
206204
path: current_path,
207-
root_path: default_root_path.clone(),
208205
source: current_source,
209206
assertions: Vec::new(),
210207
globals: current_globals,
@@ -257,7 +254,6 @@ impl Test {
257254
fragments.push(TestFragment {
258255
file,
259256
path: current_path,
260-
root_path: default_root_path.clone(),
261257
source: current_source,
262258
assertions: Vec::new(),
263259
globals: current_globals,

tree-sitter-stack-graphs/tests/it/builder.rs

+2-11
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,7 @@ fn can_support_preexisting_nodes() {
3636
let globals = Variables::new();
3737
let language = StackGraphLanguage::from_str(tree_sitter_python::language(), tsg).unwrap();
3838
language
39-
.build_stack_graph_into(
40-
&mut graph,
41-
file,
42-
python,
43-
source_path,
44-
source_root,
45-
&globals,
46-
&NoCancellation,
47-
)
39+
.build_stack_graph_into(&mut graph, file, python, &globals, &NoCancellation)
4840
.expect("Failed to build graph");
4941
}
5042

@@ -69,8 +61,7 @@ fn can_support_injected_nodes() {
6961
let _preexisting_node = graph.add_scope_node(node_id, true).unwrap();
7062

7163
let language = StackGraphLanguage::from_str(tree_sitter_python::language(), tsg).unwrap();
72-
let mut builder =
73-
language.builder_into_stack_graph(&mut graph, file, python, source_path, source_root);
64+
let mut builder = language.builder_into_stack_graph(&mut graph, file, python);
7465

7566
let mut globals = Variables::new();
7667
globals

tree-sitter-stack-graphs/tests/it/main.rs

+11-12
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ use tree_sitter_stack_graphs::BuildError;
1515
use tree_sitter_stack_graphs::NoCancellation;
1616
use tree_sitter_stack_graphs::StackGraphLanguage;
1717

18+
static FILE_PATH_VAR: &'static str = "FILE_PATH";
19+
1820
mod builder;
1921
mod edges;
2022
mod loader;
@@ -26,21 +28,18 @@ pub(self) fn build_stack_graph(
2628
tsg_source: &str,
2729
) -> Result<(StackGraph, Handle<File>), BuildError> {
2830
let file_name = "test.py";
29-
let source_path = Path::new(file_name);
30-
let source_root = Path::new("");
3131
let language =
3232
StackGraphLanguage::from_str(tree_sitter_python::language(), tsg_source).unwrap();
3333
let mut graph = StackGraph::new();
3434
let file = graph.get_or_create_file(file_name);
35-
let globals = Variables::new();
36-
language.build_stack_graph_into(
37-
&mut graph,
38-
file,
39-
python_source,
40-
source_path,
41-
source_root,
42-
&globals,
43-
&NoCancellation,
44-
)?;
35+
let mut globals = Variables::new();
36+
let source_path = Path::new(file_name);
37+
38+
// The FILE_PATH_VAR is not accessible here
39+
globals
40+
.add(FILE_PATH_VAR.into(), source_path.to_str().unwrap().into())
41+
.expect("failed to add file path variable");
42+
43+
language.build_stack_graph_into(&mut graph, file, python_source, &globals, &NoCancellation)?;
4544
Ok((graph, file))
4645
}

tree-sitter-stack-graphs/tests/it/test.rs

+1-13
Original file line numberDiff line numberDiff line change
@@ -68,22 +68,12 @@ fn build_stack_graph_into(
6868
graph: &mut StackGraph,
6969
file: Handle<File>,
7070
python_source: &str,
71-
source_path: &Path,
72-
source_root: &Path,
7371
tsg_source: &str,
7472
globals: &Variables,
7573
) -> Result<(), BuildError> {
7674
let language =
7775
StackGraphLanguage::from_str(tree_sitter_python::language(), tsg_source).unwrap();
78-
language.build_stack_graph_into(
79-
graph,
80-
file,
81-
python_source,
82-
source_path,
83-
source_root,
84-
globals,
85-
&NoCancellation,
86-
)?;
76+
language.build_stack_graph_into(graph, file, python_source, globals, &NoCancellation)?;
8777
Ok(())
8878
}
8979

@@ -112,8 +102,6 @@ fn check_test(
112102
&mut test.graph,
113103
fragments.file,
114104
&fragments.source,
115-
&fragments.path,
116-
&fragments.root_path,
117105
tsg_source,
118106
&globals,
119107
)

0 commit comments

Comments
 (0)