Skip to main content

CodeGraph

Struct CodeGraph 

Source
pub struct CodeGraph {
    pub snapshot_id: SnapshotId,
    /* private fields */
}
Expand description

The canonical dependency graph for a codebase snapshot.

Fields§

§snapshot_id: SnapshotId

Snapshot identifier for this graph as discussed before.

Implementations§

Source§

impl CodeGraph

Source

pub fn new(snapshot_id: SnapshotId) -> Self

Creates an empty CodeGraph for the given snapshot.

Source

pub fn graph(&self) -> &DiGraph<NodeData, EdgeData>

Immutable access to the underlying petgraph graph for SCC analysis, serialization, and deploy algorithms.

Source

pub fn add_node(&mut self, node: NodeData) -> NodeIndex

Adds a raw node to the graph. Node additions do not affect edge normalization, so this is the only direct mutation needed by deploy/test code that injects synthetic nodes post-build.

The caller remains responsible for registering the node in the index maps (file_to_index, symbol_to_index, external_index) when it is a File/Symbol/External node. This method does not sync those maps; a bare Data node needs no registration.

Source

pub fn add_file_node(&mut self, node: FileNode) -> NodeIndex

Add a file node and register it in the file index.

Source

pub fn add_symbol_node(&mut self, node: SymbolNode) -> NodeIndex

Add a symbol node and register it in the symbol index.

Source

pub fn file_node_index(&self, file_id: FileId) -> Option<NodeIndex>

Source

pub fn symbol_node_index(&self, symbol_id: SymbolId) -> Option<NodeIndex>

Source

pub fn file_node(&self, file_id: FileId) -> Option<&FileNode>

Source

pub fn symbol_node(&self, symbol_id: SymbolId) -> Option<&SymbolNode>

Source

pub fn file_count(&self) -> usize

Source

pub fn symbol_count(&self) -> usize

Source

pub fn external_count(&self) -> usize

Source

pub fn node_count(&self) -> usize

Source

pub fn edge_count(&self) -> usize

Source

pub fn get_or_create_external_node( &mut self, raw_path: String, language: LangId, ) -> NodeIndex

Resolves or creates the External node for a raw unresolved path, keeping external_index consistent so repeated loads reuse a single node.

Source

pub fn add_edge_normalized( &mut self, source: NodeIndex, target: NodeIndex, kind: EdgeKind, confidence: f32, )

Adds an edge, normalizing duplicate (src, dst, kind) triples by max-merging confidence so injected edges obey the same invariant as builder-constructed ones. The O(1) edge_index makes duplicate detection independent of out-degree.

Source

pub fn add_edge_normalized_with_flow( &mut self, source: NodeIndex, target: NodeIndex, kind: EdgeKind, confidence: f32, flow_kind: Option<FlowKind>, )

Adds a Flow edge with a specific flow kind, normalizing duplicates by max-merging confidence (same (src, dst, Flow) triple). When a duplicate edge exists, the first non-None flow_kind is preserved. The lookup is O(1) via the dedup index.

Source

pub fn files(&self) -> impl Iterator<Item = (FileId, &FileNode)> + '_

Source

pub fn symbols(&self) -> impl Iterator<Item = (SymbolId, &SymbolNode)> + '_

Files in path order.

Callers that need a stable sequence, such as a shard export or a partition, must not rely on hash map order.

Source

pub fn edges_of_kind( &self, kind: EdgeKind, ) -> impl Iterator<Item = (NodeIndex, NodeIndex)> + '_

Source

pub fn reference_edges( &self, ) -> impl Iterator<Item = (SymbolId, SymbolId, f32)> + '_

Reference edges as (source symbol, target symbol, confidence).

Skips edges whose endpoints are not symbol nodes. Use for navigation and confidence-ranked completion.

Trait Implementations§

Source§

impl Clone for CodeGraph

Source§

fn clone(&self) -> CodeGraph

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for CodeGraph

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more