mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-03 18:28:24 +00:00
Use a single node hierarchy to track statements and expressions (#6709)
## Summary This PR is a follow-up to the suggestion in https://github.com/astral-sh/ruff/pull/6345#discussion_r1285470953 to use a single stack to store all statements and expressions, rather than using separate vectors for each, which gives us something closer to a full-fidelity chain. (We can then generalize this concept to include all other AST nodes too.) This is in part made possible by the removal of the hash map from `&Stmt` to `StatementId` (#6694), which makes it much cheaper to store these using a single interface (since doing so no longer introduces the requirement that we hash all expressions). I'll follow-up with some profiling, but a few notes on how the data requirements have changed: - We now store a `BranchId` for every expression, not just every statement, so that's an extra `u32`. - We now store a single `NodeId` on every snapshot, rather than separate `StatementId` and `ExpressionId` IDs, so that's one fewer `u32` for each snapshot. - We're probably doing a few more lookups in general, since any calls to `current_statement()` etc. now have to iterate up the node hierarchy until they identify the first statement. ## Test Plan `cargo test`
This commit is contained in:
parent
abc5065fc7
commit
424b8d4ad2
12 changed files with 268 additions and 299 deletions
|
@ -11,8 +11,8 @@ use ruff_text_size::TextRange;
|
|||
|
||||
use crate::context::ExecutionContext;
|
||||
use crate::model::SemanticModel;
|
||||
use crate::nodes::NodeId;
|
||||
use crate::reference::ResolvedReferenceId;
|
||||
use crate::statements::StatementId;
|
||||
use crate::ScopeId;
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
|
@ -24,7 +24,7 @@ pub struct Binding<'a> {
|
|||
/// The context in which the [`Binding`] was created.
|
||||
pub context: ExecutionContext,
|
||||
/// The statement in which the [`Binding`] was defined.
|
||||
pub source: Option<StatementId>,
|
||||
pub source: Option<NodeId>,
|
||||
/// The references to the [`Binding`].
|
||||
pub references: Vec<ResolvedReferenceId>,
|
||||
/// The exceptions that were handled when the [`Binding`] was defined.
|
||||
|
@ -185,7 +185,7 @@ impl<'a> Binding<'a> {
|
|||
/// Returns the range of the binding's parent.
|
||||
pub fn parent_range(&self, semantic: &SemanticModel) -> Option<TextRange> {
|
||||
self.source
|
||||
.map(|statement_id| semantic.statement(statement_id))
|
||||
.map(|id| semantic.statement(id))
|
||||
.and_then(|parent| {
|
||||
if parent.is_import_from_stmt() {
|
||||
Some(parent.range())
|
||||
|
|
|
@ -1,56 +0,0 @@
|
|||
use std::ops::Index;
|
||||
|
||||
use ruff_index::{newtype_index, IndexVec};
|
||||
use ruff_python_ast::Expr;
|
||||
|
||||
/// Id uniquely identifying an expression in a program.
|
||||
///
|
||||
/// Using a `u32` is sufficient because Ruff only supports parsing documents with a size of max
|
||||
/// `u32::max` and it is impossible to have more nodes than characters in the file. We use a
|
||||
/// `NonZeroU32` to take advantage of memory layout optimizations.
|
||||
#[newtype_index]
|
||||
#[derive(Ord, PartialOrd)]
|
||||
pub struct ExpressionId;
|
||||
|
||||
/// An [`Expr`] AST node in a program, along with a pointer to its parent expression (if any).
|
||||
#[derive(Debug)]
|
||||
struct ExpressionWithParent<'a> {
|
||||
/// A pointer to the AST node.
|
||||
node: &'a Expr,
|
||||
/// The ID of the parent of this node, if any.
|
||||
parent: Option<ExpressionId>,
|
||||
}
|
||||
|
||||
/// The nodes of a program indexed by [`ExpressionId`]
|
||||
#[derive(Debug, Default)]
|
||||
pub struct Expressions<'a>(IndexVec<ExpressionId, ExpressionWithParent<'a>>);
|
||||
|
||||
impl<'a> Expressions<'a> {
|
||||
/// Inserts a new expression into the node tree and returns its unique id.
|
||||
pub(crate) fn insert(&mut self, node: &'a Expr, parent: Option<ExpressionId>) -> ExpressionId {
|
||||
self.0.push(ExpressionWithParent { node, parent })
|
||||
}
|
||||
|
||||
/// Return the [`ExpressionId`] of the parent node.
|
||||
#[inline]
|
||||
pub fn parent_id(&self, node_id: ExpressionId) -> Option<ExpressionId> {
|
||||
self.0[node_id].parent
|
||||
}
|
||||
|
||||
/// Returns an iterator over all [`ExpressionId`] ancestors, starting from the given [`ExpressionId`].
|
||||
pub(crate) fn ancestor_ids(
|
||||
&self,
|
||||
node_id: ExpressionId,
|
||||
) -> impl Iterator<Item = ExpressionId> + '_ {
|
||||
std::iter::successors(Some(node_id), |&node_id| self.0[node_id].parent)
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> Index<ExpressionId> for Expressions<'a> {
|
||||
type Output = &'a Expr;
|
||||
|
||||
#[inline]
|
||||
fn index(&self, index: ExpressionId) -> &Self::Output {
|
||||
&self.0[index].node
|
||||
}
|
||||
}
|
|
@ -3,22 +3,20 @@ mod binding;
|
|||
mod branches;
|
||||
mod context;
|
||||
mod definition;
|
||||
mod expressions;
|
||||
mod globals;
|
||||
mod model;
|
||||
mod nodes;
|
||||
mod reference;
|
||||
mod scope;
|
||||
mod star_import;
|
||||
mod statements;
|
||||
|
||||
pub use binding::*;
|
||||
pub use branches::*;
|
||||
pub use context::*;
|
||||
pub use definition::*;
|
||||
pub use expressions::*;
|
||||
pub use globals::*;
|
||||
pub use model::*;
|
||||
pub use nodes::*;
|
||||
pub use reference::*;
|
||||
pub use scope::*;
|
||||
pub use star_import::*;
|
||||
pub use statements::*;
|
||||
|
|
|
@ -18,14 +18,13 @@ use crate::binding::{
|
|||
use crate::branches::{BranchId, Branches};
|
||||
use crate::context::ExecutionContext;
|
||||
use crate::definition::{Definition, DefinitionId, Definitions, Member, Module};
|
||||
use crate::expressions::{ExpressionId, Expressions};
|
||||
use crate::globals::{Globals, GlobalsArena};
|
||||
use crate::nodes::{NodeId, NodeRef, Nodes};
|
||||
use crate::reference::{
|
||||
ResolvedReference, ResolvedReferenceId, ResolvedReferences, UnresolvedReference,
|
||||
UnresolvedReferenceFlags, UnresolvedReferences,
|
||||
};
|
||||
use crate::scope::{Scope, ScopeId, ScopeKind, Scopes};
|
||||
use crate::statements::{StatementId, Statements};
|
||||
use crate::Imported;
|
||||
|
||||
/// A semantic model for a Python module, to enable querying the module's semantic information.
|
||||
|
@ -33,17 +32,11 @@ pub struct SemanticModel<'a> {
|
|||
typing_modules: &'a [String],
|
||||
module_path: Option<&'a [String]>,
|
||||
|
||||
/// Stack of statements in the program.
|
||||
statements: Statements<'a>,
|
||||
/// Stack of all AST nodes in the program.
|
||||
nodes: Nodes<'a>,
|
||||
|
||||
/// The ID of the current statement.
|
||||
statement_id: Option<StatementId>,
|
||||
|
||||
/// Stack of expressions in the program.
|
||||
expressions: Expressions<'a>,
|
||||
|
||||
/// The ID of the current expression.
|
||||
expression_id: Option<ExpressionId>,
|
||||
/// The ID of the current AST node.
|
||||
node_id: Option<NodeId>,
|
||||
|
||||
/// Stack of all branches in the program.
|
||||
branches: Branches,
|
||||
|
@ -141,12 +134,10 @@ impl<'a> SemanticModel<'a> {
|
|||
Self {
|
||||
typing_modules,
|
||||
module_path: module.path(),
|
||||
statements: Statements::default(),
|
||||
statement_id: None,
|
||||
expressions: Expressions::default(),
|
||||
expression_id: None,
|
||||
branch_id: None,
|
||||
nodes: Nodes::default(),
|
||||
node_id: None,
|
||||
branches: Branches::default(),
|
||||
branch_id: None,
|
||||
scopes: Scopes::default(),
|
||||
scope_id: ScopeId::global(),
|
||||
definitions: Definitions::for_module(module),
|
||||
|
@ -236,7 +227,7 @@ impl<'a> SemanticModel<'a> {
|
|||
flags,
|
||||
references: Vec::new(),
|
||||
scope: self.scope_id,
|
||||
source: self.statement_id,
|
||||
source: self.node_id,
|
||||
context: self.execution_context(),
|
||||
exceptions: self.exceptions(),
|
||||
})
|
||||
|
@ -728,7 +719,7 @@ impl<'a> SemanticModel<'a> {
|
|||
{
|
||||
return Some(ImportedName {
|
||||
name: format!("{name}.{member}"),
|
||||
range: self.statements[source].range(),
|
||||
range: self.nodes[source].range(),
|
||||
context: binding.context,
|
||||
});
|
||||
}
|
||||
|
@ -752,7 +743,7 @@ impl<'a> SemanticModel<'a> {
|
|||
{
|
||||
return Some(ImportedName {
|
||||
name: (*name).to_string(),
|
||||
range: self.statements[source].range(),
|
||||
range: self.nodes[source].range(),
|
||||
context: binding.context,
|
||||
});
|
||||
}
|
||||
|
@ -773,7 +764,7 @@ impl<'a> SemanticModel<'a> {
|
|||
{
|
||||
return Some(ImportedName {
|
||||
name: format!("{name}.{member}"),
|
||||
range: self.statements[source].range(),
|
||||
range: self.nodes[source].range(),
|
||||
context: binding.context,
|
||||
});
|
||||
}
|
||||
|
@ -788,33 +779,15 @@ impl<'a> SemanticModel<'a> {
|
|||
})
|
||||
}
|
||||
|
||||
/// Push a [`Stmt`] onto the stack.
|
||||
pub fn push_statement(&mut self, stmt: &'a Stmt) {
|
||||
self.statement_id = Some(
|
||||
self.statements
|
||||
.insert(stmt, self.statement_id, self.branch_id),
|
||||
);
|
||||
/// Push an AST node [`NodeRef`] onto the stack.
|
||||
pub fn push_node<T: Into<NodeRef<'a>>>(&mut self, node: T) {
|
||||
self.node_id = Some(self.nodes.insert(node.into(), self.node_id, self.branch_id));
|
||||
}
|
||||
|
||||
/// Pop the current [`Stmt`] off the stack.
|
||||
pub fn pop_statement(&mut self) {
|
||||
let node_id = self
|
||||
.statement_id
|
||||
.expect("Attempted to pop without statement");
|
||||
self.statement_id = self.statements.parent_id(node_id);
|
||||
}
|
||||
|
||||
/// Push a [`Expr`] onto the stack.
|
||||
pub fn push_expression(&mut self, expr: &'a Expr) {
|
||||
self.expression_id = Some(self.expressions.insert(expr, self.expression_id));
|
||||
}
|
||||
|
||||
/// Pop the current [`Expr`] off the stack.
|
||||
pub fn pop_expression(&mut self) {
|
||||
let node_id = self
|
||||
.expression_id
|
||||
.expect("Attempted to pop without expression");
|
||||
self.expression_id = self.expressions.parent_id(node_id);
|
||||
/// Pop the current AST node [`NodeRef`] off the stack.
|
||||
pub fn pop_node(&mut self) {
|
||||
let node_id = self.node_id.expect("Attempted to pop without node");
|
||||
self.node_id = self.nodes.parent_id(node_id);
|
||||
}
|
||||
|
||||
/// Push a [`Scope`] with the given [`ScopeKind`] onto the stack.
|
||||
|
@ -860,34 +833,20 @@ impl<'a> SemanticModel<'a> {
|
|||
self.branch_id = branch_id;
|
||||
}
|
||||
|
||||
/// Returns an [`Iterator`] over the current statement hierarchy represented as [`StatementId`],
|
||||
/// from the current [`StatementId`] through to any parents.
|
||||
pub fn current_statement_ids(&self) -> impl Iterator<Item = StatementId> + '_ {
|
||||
self.statement_id
|
||||
.iter()
|
||||
.flat_map(|id| self.statements.ancestor_ids(*id))
|
||||
}
|
||||
|
||||
/// Returns an [`Iterator`] over the current statement hierarchy, from the current [`Stmt`]
|
||||
/// through to any parents.
|
||||
pub fn current_statements(&self) -> impl Iterator<Item = &'a Stmt> + '_ {
|
||||
self.current_statement_ids().map(|id| self.statements[id])
|
||||
}
|
||||
|
||||
/// Return the [`StatementId`] of the current [`Stmt`].
|
||||
pub fn current_statement_id(&self) -> StatementId {
|
||||
self.statement_id.expect("No current statement")
|
||||
}
|
||||
|
||||
/// Return the [`StatementId`] of the current [`Stmt`] parent, if any.
|
||||
pub fn current_statement_parent_id(&self) -> Option<StatementId> {
|
||||
self.current_statement_ids().nth(1)
|
||||
let id = self.node_id.expect("No current node");
|
||||
self.nodes
|
||||
.ancestor_ids(id)
|
||||
.filter_map(move |id| self.nodes[id].as_statement())
|
||||
}
|
||||
|
||||
/// Return the current [`Stmt`].
|
||||
pub fn current_statement(&self) -> &'a Stmt {
|
||||
let node_id = self.statement_id.expect("No current statement");
|
||||
self.statements[node_id]
|
||||
self.current_statements()
|
||||
.next()
|
||||
.expect("No current statement")
|
||||
}
|
||||
|
||||
/// Return the parent [`Stmt`] of the current [`Stmt`], if any.
|
||||
|
@ -895,24 +854,18 @@ impl<'a> SemanticModel<'a> {
|
|||
self.current_statements().nth(1)
|
||||
}
|
||||
|
||||
/// Returns an [`Iterator`] over the current expression hierarchy represented as
|
||||
/// [`ExpressionId`], from the current [`Expr`] through to any parents.
|
||||
pub fn current_expression_ids(&self) -> impl Iterator<Item = ExpressionId> + '_ {
|
||||
self.expression_id
|
||||
.iter()
|
||||
.flat_map(|id| self.expressions.ancestor_ids(*id))
|
||||
}
|
||||
|
||||
/// Returns an [`Iterator`] over the current expression hierarchy, from the current [`Expr`]
|
||||
/// through to any parents.
|
||||
pub fn current_expressions(&self) -> impl Iterator<Item = &'a Expr> + '_ {
|
||||
self.current_expression_ids().map(|id| self.expressions[id])
|
||||
let id = self.node_id.expect("No current node");
|
||||
self.nodes
|
||||
.ancestor_ids(id)
|
||||
.filter_map(move |id| self.nodes[id].as_expression())
|
||||
}
|
||||
|
||||
/// Return the current [`Expr`].
|
||||
pub fn current_expression(&self) -> Option<&'a Expr> {
|
||||
let node_id = self.expression_id?;
|
||||
Some(self.expressions[node_id])
|
||||
self.current_expressions().next()
|
||||
}
|
||||
|
||||
/// Return the parent [`Expr`] of the current [`Expr`], if any.
|
||||
|
@ -925,6 +878,27 @@ impl<'a> SemanticModel<'a> {
|
|||
self.current_expressions().nth(2)
|
||||
}
|
||||
|
||||
/// Returns an [`Iterator`] over the current statement hierarchy represented as [`NodeId`],
|
||||
/// from the current [`NodeId`] through to any parents.
|
||||
pub fn current_statement_ids(&self) -> impl Iterator<Item = NodeId> + '_ {
|
||||
self.node_id
|
||||
.iter()
|
||||
.flat_map(|id| self.nodes.ancestor_ids(*id))
|
||||
.filter(|id| self.nodes[*id].is_statement())
|
||||
}
|
||||
|
||||
/// Return the [`NodeId`] of the current [`Stmt`].
|
||||
pub fn current_statement_id(&self) -> NodeId {
|
||||
self.current_statement_ids()
|
||||
.next()
|
||||
.expect("No current statement")
|
||||
}
|
||||
|
||||
/// Return the [`NodeId`] of the current [`Stmt`] parent, if any.
|
||||
pub fn current_statement_parent_id(&self) -> Option<NodeId> {
|
||||
self.current_statement_ids().nth(1)
|
||||
}
|
||||
|
||||
/// Returns a reference to the global [`Scope`].
|
||||
pub fn global_scope(&self) -> &Scope<'a> {
|
||||
self.scopes.global()
|
||||
|
@ -973,24 +947,36 @@ impl<'a> SemanticModel<'a> {
|
|||
None
|
||||
}
|
||||
|
||||
/// Return the [`Stmt]` corresponding to the given [`StatementId`].
|
||||
/// Return the [`Stmt`] corresponding to the given [`NodeId`].
|
||||
#[inline]
|
||||
pub fn statement(&self, statement_id: StatementId) -> &'a Stmt {
|
||||
self.statements[statement_id]
|
||||
pub fn node(&self, node_id: NodeId) -> &NodeRef<'a> {
|
||||
&self.nodes[node_id]
|
||||
}
|
||||
|
||||
/// Return the [`Stmt`] corresponding to the given [`NodeId`].
|
||||
#[inline]
|
||||
pub fn statement(&self, node_id: NodeId) -> &'a Stmt {
|
||||
self.nodes
|
||||
.ancestor_ids(node_id)
|
||||
.find_map(|id| self.nodes[id].as_statement())
|
||||
.expect("No statement found")
|
||||
}
|
||||
|
||||
/// Given a [`Stmt`], return its parent, if any.
|
||||
#[inline]
|
||||
pub fn parent_statement(&self, statement_id: StatementId) -> Option<&'a Stmt> {
|
||||
self.statements
|
||||
.parent_id(statement_id)
|
||||
.map(|id| self.statements[id])
|
||||
pub fn parent_statement(&self, node_id: NodeId) -> Option<&'a Stmt> {
|
||||
self.nodes
|
||||
.ancestor_ids(node_id)
|
||||
.filter_map(|id| self.nodes[id].as_statement())
|
||||
.nth(1)
|
||||
}
|
||||
|
||||
/// Given a [`StatementId`], return the ID of its parent statement, if any.
|
||||
#[inline]
|
||||
pub fn parent_statement_id(&self, statement_id: StatementId) -> Option<StatementId> {
|
||||
self.statements.parent_id(statement_id)
|
||||
/// Given a [`NodeId`], return the [`NodeId`] of the parent statement, if any.
|
||||
pub fn parent_statement_id(&self, node_id: NodeId) -> Option<NodeId> {
|
||||
self.nodes
|
||||
.ancestor_ids(node_id)
|
||||
.filter(|id| self.nodes[*id].is_statement())
|
||||
.nth(1)
|
||||
}
|
||||
|
||||
/// Set the [`Globals`] for the current [`Scope`].
|
||||
|
@ -1007,7 +993,7 @@ impl<'a> SemanticModel<'a> {
|
|||
range: *range,
|
||||
references: Vec::new(),
|
||||
scope: self.scope_id,
|
||||
source: self.statement_id,
|
||||
source: self.node_id,
|
||||
context: self.execution_context(),
|
||||
exceptions: self.exceptions(),
|
||||
flags: BindingFlags::empty(),
|
||||
|
@ -1053,10 +1039,7 @@ impl<'a> SemanticModel<'a> {
|
|||
/// Return `true` if the model is at the top level of the module (i.e., in the module scope,
|
||||
/// and not nested within any statements).
|
||||
pub fn at_top_level(&self) -> bool {
|
||||
self.scope_id.is_global()
|
||||
&& self
|
||||
.statement_id
|
||||
.map_or(true, |stmt_id| self.statements.parent_id(stmt_id).is_none())
|
||||
self.scope_id.is_global() && self.current_statement_parent_id().is_none()
|
||||
}
|
||||
|
||||
/// Return `true` if the model is in an async context.
|
||||
|
@ -1101,10 +1084,10 @@ impl<'a> SemanticModel<'a> {
|
|||
/// `try` statement.
|
||||
///
|
||||
/// This implementation assumes that the statements are in the same scope.
|
||||
pub fn different_branches(&self, left: StatementId, right: StatementId) -> bool {
|
||||
pub fn different_branches(&self, left: NodeId, right: NodeId) -> bool {
|
||||
// Collect the branch path for the left statement.
|
||||
let left = self
|
||||
.statements
|
||||
.nodes
|
||||
.branch_id(left)
|
||||
.iter()
|
||||
.flat_map(|branch_id| self.branches.ancestor_ids(*branch_id))
|
||||
|
@ -1112,7 +1095,7 @@ impl<'a> SemanticModel<'a> {
|
|||
|
||||
// Collect the branch path for the right statement.
|
||||
let right = self
|
||||
.statements
|
||||
.nodes
|
||||
.branch_id(right)
|
||||
.iter()
|
||||
.flat_map(|branch_id| self.branches.ancestor_ids(*branch_id))
|
||||
|
@ -1191,8 +1174,7 @@ impl<'a> SemanticModel<'a> {
|
|||
pub fn snapshot(&self) -> Snapshot {
|
||||
Snapshot {
|
||||
scope_id: self.scope_id,
|
||||
stmt_id: self.statement_id,
|
||||
expr_id: self.expression_id,
|
||||
node_id: self.node_id,
|
||||
branch_id: self.branch_id,
|
||||
definition_id: self.definition_id,
|
||||
flags: self.flags,
|
||||
|
@ -1203,15 +1185,13 @@ impl<'a> SemanticModel<'a> {
|
|||
pub fn restore(&mut self, snapshot: Snapshot) {
|
||||
let Snapshot {
|
||||
scope_id,
|
||||
stmt_id,
|
||||
expr_id,
|
||||
node_id,
|
||||
branch_id,
|
||||
definition_id,
|
||||
flags,
|
||||
} = snapshot;
|
||||
self.scope_id = scope_id;
|
||||
self.statement_id = stmt_id;
|
||||
self.expression_id = expr_id;
|
||||
self.node_id = node_id;
|
||||
self.branch_id = branch_id;
|
||||
self.definition_id = definition_id;
|
||||
self.flags = flags;
|
||||
|
@ -1625,8 +1605,7 @@ impl SemanticModelFlags {
|
|||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||
pub struct Snapshot {
|
||||
scope_id: ScopeId,
|
||||
stmt_id: Option<StatementId>,
|
||||
expr_id: Option<ExpressionId>,
|
||||
node_id: Option<NodeId>,
|
||||
branch_id: Option<BranchId>,
|
||||
definition_id: DefinitionId,
|
||||
flags: SemanticModelFlags,
|
||||
|
|
136
crates/ruff_python_semantic/src/nodes.rs
Normal file
136
crates/ruff_python_semantic/src/nodes.rs
Normal file
|
@ -0,0 +1,136 @@
|
|||
use std::ops::Index;
|
||||
|
||||
use ruff_index::{newtype_index, IndexVec};
|
||||
use ruff_python_ast::{Expr, Ranged, Stmt};
|
||||
use ruff_text_size::TextRange;
|
||||
|
||||
use crate::BranchId;
|
||||
|
||||
/// Id uniquely identifying an AST node in a program.
|
||||
///
|
||||
/// Using a `u32` is sufficient because Ruff only supports parsing documents with a size of max
|
||||
/// `u32::max` and it is impossible to have more nodes than characters in the file. We use a
|
||||
/// `NonZeroU32` to take advantage of memory layout optimizations.
|
||||
#[newtype_index]
|
||||
#[derive(Ord, PartialOrd)]
|
||||
pub struct NodeId;
|
||||
|
||||
/// An AST node in a program, along with a pointer to its parent node (if any).
|
||||
#[derive(Debug)]
|
||||
struct NodeWithParent<'a> {
|
||||
/// A pointer to the AST node.
|
||||
node: NodeRef<'a>,
|
||||
/// The ID of the parent of this node, if any.
|
||||
parent: Option<NodeId>,
|
||||
/// The branch ID of this node, if any.
|
||||
branch: Option<BranchId>,
|
||||
}
|
||||
|
||||
/// The nodes of a program indexed by [`NodeId`]
|
||||
#[derive(Debug, Default)]
|
||||
pub struct Nodes<'a> {
|
||||
nodes: IndexVec<NodeId, NodeWithParent<'a>>,
|
||||
}
|
||||
|
||||
impl<'a> Nodes<'a> {
|
||||
/// Inserts a new AST node into the tree and returns its unique ID.
|
||||
pub(crate) fn insert(
|
||||
&mut self,
|
||||
node: NodeRef<'a>,
|
||||
parent: Option<NodeId>,
|
||||
branch: Option<BranchId>,
|
||||
) -> NodeId {
|
||||
self.nodes.push(NodeWithParent {
|
||||
node,
|
||||
parent,
|
||||
branch,
|
||||
})
|
||||
}
|
||||
|
||||
/// Return the [`NodeId`] of the parent node.
|
||||
#[inline]
|
||||
pub fn parent_id(&self, node_id: NodeId) -> Option<NodeId> {
|
||||
self.nodes[node_id].parent
|
||||
}
|
||||
|
||||
/// Return the [`BranchId`] of the branch node.
|
||||
#[inline]
|
||||
pub(crate) fn branch_id(&self, node_id: NodeId) -> Option<BranchId> {
|
||||
self.nodes[node_id].branch
|
||||
}
|
||||
|
||||
/// Returns an iterator over all [`NodeId`] ancestors, starting from the given [`NodeId`].
|
||||
pub(crate) fn ancestor_ids(&self, node_id: NodeId) -> impl Iterator<Item = NodeId> + '_ {
|
||||
std::iter::successors(Some(node_id), |&node_id| self.nodes[node_id].parent)
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> Index<NodeId> for Nodes<'a> {
|
||||
type Output = NodeRef<'a>;
|
||||
|
||||
#[inline]
|
||||
fn index(&self, index: NodeId) -> &Self::Output {
|
||||
&self.nodes[index].node
|
||||
}
|
||||
}
|
||||
|
||||
/// A reference to an AST node. Like [`ruff_python_ast::node::AnyNodeRef`], but wraps the node
|
||||
/// itself (like [`Stmt`]) rather than the narrowed type (like [`ruff_python_ast::StmtAssign`]).
|
||||
///
|
||||
/// TODO(charlie): Replace with [`ruff_python_ast::node::AnyNodeRef`]. This requires migrating
|
||||
/// the rest of the codebase to use [`ruff_python_ast::node::AnyNodeRef`] and related abstractions,
|
||||
/// like [`ruff_python_ast::ExpressionRef`] instead of [`Expr`].
|
||||
#[derive(Copy, Clone, Debug, PartialEq)]
|
||||
pub enum NodeRef<'a> {
|
||||
Stmt(&'a Stmt),
|
||||
Expr(&'a Expr),
|
||||
}
|
||||
|
||||
impl<'a> NodeRef<'a> {
|
||||
/// Returns the [`Stmt`] if this is a statement, or `None` if the reference is to another
|
||||
/// kind of AST node.
|
||||
pub fn as_statement(&self) -> Option<&'a Stmt> {
|
||||
match self {
|
||||
NodeRef::Stmt(stmt) => Some(stmt),
|
||||
NodeRef::Expr(_) => None,
|
||||
}
|
||||
}
|
||||
|
||||
/// Returns the [`Expr`] if this is a expression, or `None` if the reference is to another
|
||||
/// kind of AST node.
|
||||
pub fn as_expression(&self) -> Option<&'a Expr> {
|
||||
match self {
|
||||
NodeRef::Stmt(_) => None,
|
||||
NodeRef::Expr(expr) => Some(expr),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn is_statement(&self) -> bool {
|
||||
self.as_statement().is_some()
|
||||
}
|
||||
|
||||
pub fn is_expression(&self) -> bool {
|
||||
self.as_expression().is_some()
|
||||
}
|
||||
}
|
||||
|
||||
impl Ranged for NodeRef<'_> {
|
||||
fn range(&self) -> TextRange {
|
||||
match self {
|
||||
NodeRef::Stmt(stmt) => stmt.range(),
|
||||
NodeRef::Expr(expr) => expr.range(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> From<&'a Expr> for NodeRef<'a> {
|
||||
fn from(expr: &'a Expr) -> Self {
|
||||
NodeRef::Expr(expr)
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> From<&'a Stmt> for NodeRef<'a> {
|
||||
fn from(stmt: &'a Stmt) -> Self {
|
||||
NodeRef::Stmt(stmt)
|
||||
}
|
||||
}
|
|
@ -1,72 +0,0 @@
|
|||
use std::ops::Index;
|
||||
|
||||
use ruff_index::{newtype_index, IndexVec};
|
||||
use ruff_python_ast::Stmt;
|
||||
|
||||
use crate::branches::BranchId;
|
||||
|
||||
/// Id uniquely identifying a statement AST node.
|
||||
///
|
||||
/// Using a `u32` is sufficient because Ruff only supports parsing documents with a size of max
|
||||
/// `u32::max` and it is impossible to have more nodes than characters in the file. We use a
|
||||
/// `NonZeroU32` to take advantage of memory layout optimizations.
|
||||
#[newtype_index]
|
||||
#[derive(Ord, PartialOrd)]
|
||||
pub struct StatementId;
|
||||
|
||||
/// A [`Stmt`] AST node, along with a pointer to its parent statement (if any).
|
||||
#[derive(Debug)]
|
||||
struct StatementWithParent<'a> {
|
||||
/// A pointer to the AST node.
|
||||
statement: &'a Stmt,
|
||||
/// The ID of the parent of this node, if any.
|
||||
parent: Option<StatementId>,
|
||||
/// The branch ID of this node, if any.
|
||||
branch: Option<BranchId>,
|
||||
}
|
||||
|
||||
/// The statements of a program indexed by [`StatementId`]
|
||||
#[derive(Debug, Default)]
|
||||
pub struct Statements<'a>(IndexVec<StatementId, StatementWithParent<'a>>);
|
||||
|
||||
impl<'a> Statements<'a> {
|
||||
/// Inserts a new statement into the statement vector and returns its unique ID.
|
||||
pub(crate) fn insert(
|
||||
&mut self,
|
||||
statement: &'a Stmt,
|
||||
parent: Option<StatementId>,
|
||||
branch: Option<BranchId>,
|
||||
) -> StatementId {
|
||||
self.0.push(StatementWithParent {
|
||||
statement,
|
||||
parent,
|
||||
branch,
|
||||
})
|
||||
}
|
||||
|
||||
/// Return the [`StatementId`] of the parent statement.
|
||||
#[inline]
|
||||
pub(crate) fn parent_id(&self, statement_id: StatementId) -> Option<StatementId> {
|
||||
self.0[statement_id].parent
|
||||
}
|
||||
|
||||
/// Return the [`StatementId`] of the parent statement.
|
||||
#[inline]
|
||||
pub(crate) fn branch_id(&self, statement_id: StatementId) -> Option<BranchId> {
|
||||
self.0[statement_id].branch
|
||||
}
|
||||
|
||||
/// Returns an iterator over all [`StatementId`] ancestors, starting from the given [`StatementId`].
|
||||
pub(crate) fn ancestor_ids(&self, id: StatementId) -> impl Iterator<Item = StatementId> + '_ {
|
||||
std::iter::successors(Some(id), |&id| self.0[id].parent)
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> Index<StatementId> for Statements<'a> {
|
||||
type Output = &'a Stmt;
|
||||
|
||||
#[inline]
|
||||
fn index(&self, index: StatementId) -> &Self::Output {
|
||||
&self.0[index].statement
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue