rubydex 0.2.4-aarch64-linux → 0.2.6-aarch64-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +17 -16
  3. data/THIRD_PARTY_LICENSES.html +6 -6
  4. data/exe/rubydex_mcp +17 -0
  5. data/ext/rubydex/definition.c +89 -2
  6. data/ext/rubydex/document.c +36 -0
  7. data/ext/rubydex/extconf.rb +8 -0
  8. data/ext/rubydex/graph.c +32 -18
  9. data/ext/rubydex/handle.h +21 -5
  10. data/lib/rubydex/3.2/rubydex.so +0 -0
  11. data/lib/rubydex/3.3/rubydex.so +0 -0
  12. data/lib/rubydex/3.4/rubydex.so +0 -0
  13. data/lib/rubydex/4.0/rubydex.so +0 -0
  14. data/lib/rubydex/bin/rubydex_mcp +0 -0
  15. data/lib/rubydex/declaration.rb +3 -3
  16. data/lib/rubydex/errors.rb +8 -0
  17. data/lib/rubydex/graph.rb +3 -1
  18. data/lib/rubydex/librubydex_sys.so +0 -0
  19. data/lib/rubydex/location.rb +24 -0
  20. data/lib/rubydex/version.rb +1 -1
  21. data/lib/rubydex.rb +1 -0
  22. data/rbi/rubydex.rbi +37 -14
  23. data/rust/Cargo.lock +3 -3
  24. data/rust/rubydex/Cargo.toml +7 -1
  25. data/rust/rubydex/src/dot.rs +609 -0
  26. data/rust/rubydex/src/indexing/local_graph.rs +38 -0
  27. data/rust/rubydex/src/indexing/rbs_indexer.rs +19 -1
  28. data/rust/rubydex/src/indexing/ruby_indexer.rs +10 -0
  29. data/rust/rubydex/src/indexing/ruby_indexer_tests.rs +5 -1
  30. data/rust/rubydex/src/indexing.rs +38 -12
  31. data/rust/rubydex/src/lib.rs +2 -1
  32. data/rust/rubydex/src/listing.rs +14 -3
  33. data/rust/rubydex/src/main.rs +35 -7
  34. data/rust/rubydex/src/model/built_in.rs +5 -2
  35. data/rust/rubydex/src/model/comment.rs +2 -0
  36. data/rust/rubydex/src/model/declaration.rs +1 -0
  37. data/rust/rubydex/src/model/definitions.rs +20 -19
  38. data/rust/rubydex/src/model/document.rs +2 -0
  39. data/rust/rubydex/src/model/encoding.rs +2 -0
  40. data/rust/rubydex/src/model/graph.rs +51 -13
  41. data/rust/rubydex/src/model/identity_maps.rs +3 -0
  42. data/rust/rubydex/src/model/ids.rs +27 -1
  43. data/rust/rubydex/src/model/keywords.rs +3 -0
  44. data/rust/rubydex/src/model/name.rs +2 -0
  45. data/rust/rubydex/src/model/string_ref.rs +2 -0
  46. data/rust/rubydex/src/model/visibility.rs +3 -0
  47. data/rust/rubydex/src/operation/applier.rs +520 -0
  48. data/rust/rubydex/src/operation/mod.rs +285 -0
  49. data/rust/rubydex/src/operation/printer.rs +260 -0
  50. data/rust/rubydex/src/operation/ruby_builder.rs +2919 -0
  51. data/rust/rubydex/src/query.rs +114 -33
  52. data/rust/rubydex/src/resolution.rs +22 -9
  53. data/rust/rubydex/src/resolution_tests.rs +349 -209
  54. data/rust/rubydex/src/test_utils/graph_test.rs +19 -4
  55. data/rust/rubydex/src/test_utils/local_graph_test.rs +7 -6
  56. data/rust/rubydex/tests/cli.rs +17 -61
  57. data/rust/rubydex-mcp/Cargo.toml +9 -3
  58. data/rust/rubydex-mcp/src/server.rs +5 -1
  59. data/rust/rubydex-sys/Cargo.toml +9 -2
  60. data/rust/rubydex-sys/src/definition_api.rs +96 -2
  61. data/rust/rubydex-sys/src/document_api.rs +28 -0
  62. data/rust/rubydex-sys/src/graph_api.rs +2 -4
  63. metadata +11 -4
  64. data/rust/rubydex/src/visualization/dot.rs +0 -192
  65. data/rust/rubydex/src/visualization.rs +0 -6
@@ -1,192 +0,0 @@
1
- //! DOT format generator for Graphviz visualization of the graph structure.
2
-
3
- use std::fmt::Write;
4
-
5
- use crate::model::graph::Graph;
6
-
7
- const NAME_NODE_SHAPE: &str = "hexagon";
8
- const DEFINITION_NODE_SHAPE: &str = "ellipse";
9
- const URI_NODE_SHAPE: &str = "box";
10
-
11
- /// Escapes a string for use in DOT format labels and identifiers.
12
- fn escape_dot_string(s: &str) -> String {
13
- if !s.contains('"') {
14
- return s.to_string();
15
- }
16
-
17
- let mut result = String::with_capacity(s.len());
18
- for c in s.chars() {
19
- match c {
20
- '"' => result.push_str("\\\""),
21
- _ => result.push(c),
22
- }
23
- }
24
- result
25
- }
26
-
27
- #[must_use]
28
- pub fn generate(graph: &Graph) -> String {
29
- let mut output = String::new();
30
- output.push_str("digraph {\n");
31
- output.push_str(" rankdir=TB;\n\n");
32
-
33
- write_declaration_nodes(&mut output, graph);
34
- write_definition_nodes(&mut output, graph);
35
- write_document_nodes(&mut output, graph);
36
-
37
- output.push_str("}\n");
38
- output
39
- }
40
-
41
- fn write_declaration_nodes(output: &mut String, graph: &Graph) {
42
- let mut declarations: Vec<_> = graph.declarations().values().collect();
43
- declarations.sort_by(|a, b| a.name().cmp(b.name()));
44
-
45
- for declaration in declarations {
46
- let name = declaration.name();
47
- let escaped_name = escape_dot_string(name);
48
- let node_id = format!("Name:{name}");
49
- let _ = writeln!(
50
- output,
51
- " \"{node_id}\" [label=\"{escaped_name}\",shape={NAME_NODE_SHAPE}];"
52
- );
53
-
54
- for def_id in declaration.definitions() {
55
- let _ = writeln!(output, " \"{node_id}\" -> \"def_{def_id}\" [dir=both];");
56
- }
57
- }
58
-
59
- output.push('\n');
60
- }
61
-
62
- fn write_definition_nodes(output: &mut String, graph: &Graph) {
63
- let mut definitions: Vec<_> = graph
64
- .definitions()
65
- .iter()
66
- .filter_map(|(def_id, definition)| {
67
- graph
68
- .declarations()
69
- .get(graph.definition_to_declaration_id(definition).unwrap())
70
- .map(|declaration| {
71
- let def_type = definition.kind();
72
- let escaped_name = escape_dot_string(declaration.name());
73
- let label = format!("{def_type}({escaped_name})");
74
- let line = format!(" \"def_{def_id}\" [label=\"{label}\",shape={DEFINITION_NODE_SHAPE}];\n");
75
- (label, line)
76
- })
77
- })
78
- .collect();
79
-
80
- definitions.sort_by(|a, b| a.0.cmp(&b.0));
81
-
82
- for (_, line) in definitions {
83
- output.push_str(&line);
84
- }
85
- output.push('\n');
86
- }
87
-
88
- fn write_document_nodes(output: &mut String, graph: &Graph) {
89
- let mut documents: Vec<_> = graph.documents().values().collect();
90
- documents.sort_by(|a, b| a.uri().cmp(b.uri()));
91
-
92
- for document in documents {
93
- let uri = document.uri();
94
- let label = uri.rsplit('/').next().unwrap_or(uri);
95
- let escaped_uri = escape_dot_string(uri);
96
- let escaped_label = escape_dot_string(label);
97
- let _ = writeln!(
98
- output,
99
- " \"{escaped_uri}\" [label=\"{escaped_label}\",shape={URI_NODE_SHAPE}];"
100
- );
101
-
102
- for def_id in document.definitions() {
103
- let _ = writeln!(output, " \"def_{def_id}\" -> \"{escaped_uri}\";");
104
- }
105
- }
106
- output.push('\n');
107
- }
108
-
109
- #[cfg(test)]
110
- mod tests {
111
- use super::*;
112
- use crate::{model::ids::DeclarationId, test_utils::GraphTest};
113
-
114
- fn create_test_graph() -> GraphTest {
115
- let mut graph_test = GraphTest::new();
116
- graph_test.index_uri(
117
- "file:///test.rb",
118
- "
119
- class TestClass
120
- end
121
-
122
- module TestModule
123
- end
124
- ",
125
- );
126
- graph_test.resolve();
127
- graph_test
128
- }
129
-
130
- /// Finds the first definition ID for the declaration with the given name.
131
- fn def_id_for(graph: &Graph, name: &str) -> String {
132
- let decl = graph.declarations().get(&DeclarationId::from(name)).unwrap();
133
- decl.definitions().first().unwrap().to_string()
134
- }
135
-
136
- #[test]
137
- fn test_dot_generation() {
138
- let context = create_test_graph();
139
- let dot_output = generate(context.graph());
140
-
141
- let basic_object_def = def_id_for(context.graph(), "BasicObject");
142
- let class_def = def_id_for(context.graph(), "Class");
143
- let kernel_def = def_id_for(context.graph(), "Kernel");
144
- let module_def = def_id_for(context.graph(), "Module");
145
- let object_def = def_id_for(context.graph(), "Object");
146
- let test_class_def = def_id_for(context.graph(), "TestClass");
147
- let test_module_def = def_id_for(context.graph(), "TestModule");
148
-
149
- let expected = format!(
150
- r#"digraph {{
151
- rankdir=TB;
152
-
153
- "Name:BasicObject" [label="BasicObject",shape=hexagon];
154
- "Name:BasicObject" -> "def_{basic_object_def}" [dir=both];
155
- "Name:Class" [label="Class",shape=hexagon];
156
- "Name:Class" -> "def_{class_def}" [dir=both];
157
- "Name:Kernel" [label="Kernel",shape=hexagon];
158
- "Name:Kernel" -> "def_{kernel_def}" [dir=both];
159
- "Name:Module" [label="Module",shape=hexagon];
160
- "Name:Module" -> "def_{module_def}" [dir=both];
161
- "Name:Object" [label="Object",shape=hexagon];
162
- "Name:Object" -> "def_{object_def}" [dir=both];
163
- "Name:TestClass" [label="TestClass",shape=hexagon];
164
- "Name:TestClass" -> "def_{test_class_def}" [dir=both];
165
- "Name:TestModule" [label="TestModule",shape=hexagon];
166
- "Name:TestModule" -> "def_{test_module_def}" [dir=both];
167
-
168
- "def_{basic_object_def}" [label="Class(BasicObject)",shape=ellipse];
169
- "def_{class_def}" [label="Class(Class)",shape=ellipse];
170
- "def_{module_def}" [label="Class(Module)",shape=ellipse];
171
- "def_{object_def}" [label="Class(Object)",shape=ellipse];
172
- "def_{test_class_def}" [label="Class(TestClass)",shape=ellipse];
173
- "def_{kernel_def}" [label="Module(Kernel)",shape=ellipse];
174
- "def_{test_module_def}" [label="Module(TestModule)",shape=ellipse];
175
-
176
- "file:///test.rb" [label="test.rb",shape=box];
177
- "def_{test_class_def}" -> "file:///test.rb";
178
- "def_{test_module_def}" -> "file:///test.rb";
179
- "rubydex:built-in" [label="rubydex:built-in",shape=box];
180
- "def_{basic_object_def}" -> "rubydex:built-in";
181
- "def_{kernel_def}" -> "rubydex:built-in";
182
- "def_{object_def}" -> "rubydex:built-in";
183
- "def_{module_def}" -> "rubydex:built-in";
184
- "def_{class_def}" -> "rubydex:built-in";
185
-
186
- }}
187
- "#
188
- );
189
-
190
- assert_eq!(dot_output, expected);
191
- }
192
- }
@@ -1,6 +0,0 @@
1
- //! Graph visualization module for the Index structure.
2
- //!
3
- //! This module provides functionality to generate visual representations of the Index's
4
- //! internal graph structure, showing the relationships between Names, Definitions, and URIs.
5
-
6
- pub mod dot;