ProgramDependences

A container of Edge edges that act as a program dependence graph (PDG). The canonical version of this lives in Node.prevPDGEdges / Node.nextPDGEdges and is populated by the ProgramDependenceGraphPass.

After population, this collection will contain a direct combination of two other edge collections (Dataflows and ControlDependences). If we would only handle an in-memory graph, we could just store the edges in their original collection (e.g. DFG) as well as in the PDG. But the Neo4J OGM does not support this, so unfortunately, we need to clone the edges before inserting them into the collection. If we ever got rid of the Neo4J OGM we could potentially also remove the cloning.

Constructors

Link copied to clipboard
constructor(thisRef: Node, mirrorProperty: KProperty<MutableCollection<Edge<NodeType>>>, outgoing: Boolean)

Properties

Link copied to clipboard

This computed property returns the common type in a Collection of Type objects. For example, if two types A and B both derive from the interface C`` then C` would be returned.

Link copied to clipboard
open override var init: (start: Node, end: NodeType) -> Edge<NodeType>
Link copied to clipboard
Link copied to clipboard
open override var onAdd: (Edge<NodeType>) -> Unit?
Link copied to clipboard
open override var onRemove: (Edge<NodeType>) -> Unit?
Link copied to clipboard
open override var outgoing: Boolean
Link copied to clipboard
open override val size: Int
Link copied to clipboard
open override var thisRef: Node

Functions

Link copied to clipboard
open fun add(target: NodeType, init: (Node, NodeType) -> Edge<NodeType> = this.init, builder: Edge<NodeType>.() -> Unit? = null): Boolean

Creates a new edge with the target node and an optional builder to include edge properties. If outgoing is true, the edge is created from thisRef ->target, otherwise from target to thisRef.

open override fun add(e: Edge<NodeType>): Boolean
Link copied to clipboard
open fun addAll(targets: Collection<NodeType>, builder: Edge<NodeType>.() -> Unit? = null): Boolean
open override fun addAll(elements: Collection<Edge<NodeType>>): Boolean
Link copied to clipboard
fun <T : Node> Collection<T>?.byNameOrNull(lookup: String, modifier: SearchModifier): T?

This function returns the first node that matches the name on the supplied list of nodes.

Link copied to clipboard
open override fun clear()
Link copied to clipboard
open override fun clone(): Any
Link copied to clipboard
open fun contains(target: NodeType): Boolean
open operator override fun contains(element: Edge<NodeType>): Boolean
Link copied to clipboard
open override fun containsAll(elements: Collection<Edge<NodeType>>): Boolean
Link copied to clipboard
open fun <NodeType : Node, PropertyEdgeType : Edge<NodeType>> createEdge(target: NodeType, init: (Node, NodeType) -> PropertyEdgeType, outgoing: Boolean = true, builder: PropertyEdgeType.() -> Unit? = null): PropertyEdgeType
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open fun forEach(p0: Consumer<in Edge<NodeType>>)
Link copied to clipboard
operator fun <T : Node> Collection<T>?.get(predicate: (T) -> Boolean, modifier: SearchModifier = SearchModifier.NONE): T?

A shortcut to call firstOrNull using the [] syntax.

operator fun <T : Node> Collection<T>?.get(lookup: String, modifier: SearchModifier = SearchModifier.NONE): T?

A shortcut to call byNameOrNull using the [] syntax.

Link copied to clipboard
open fun handleOnAdd(edge: Edge<NodeType>)

This function will be executed after the edge was added to the container. This can be used to propagate the edge to other properties or register additional handlers, e.g. a TypeObserver.

Link copied to clipboard
open fun handleOnRemove(edge: Edge<NodeType>)

This function will be executed after an edge was removed from the container. This can be used to unregister additional handlers, e.g. a TypeObserver.

Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
operator fun <T : Node> Collection<T>.invoke(predicate: (T) -> Boolean): List<T>

A shortcut invoke filter on a list of nodes.

operator fun <T : Node> Collection<T>.invoke(lookup: String): List<T>

A shortcut to filter a list of nodes by their name.

Link copied to clipboard
open override fun isEmpty(): Boolean
Link copied to clipboard
open operator override fun iterator(): MutableIterator<Edge<NodeType>>
Link copied to clipboard
Link copied to clipboard
open operator fun plusAssign(end: NodeType)
Link copied to clipboard
open fun remove(target: NodeType): Boolean

Removes all edges with the target node. The target is considered to be either the Edge.end or Edge.start depending on outgoing.

open override fun remove(element: Edge<NodeType>): Boolean
Link copied to clipboard
open override fun removeAll(elements: Collection<Edge<NodeType>>): Boolean
Link copied to clipboard
open override fun removeIf(predicate: Predicate<in Edge<NodeType>>): Boolean
Link copied to clipboard
open fun resetTo(nodes: Collection<NodeType>)

Clears the collection and adds the nodes.

Link copied to clipboard
open override fun retainAll(elements: Collection<Edge<NodeType>>): Boolean
Link copied to clipboard
open override fun spliterator(): Spliterator<Edge<NodeType>>
Link copied to clipboard
open fun stream(): Stream<Edge<NodeType>>
Link copied to clipboard
open override fun toArray(): Array<Any>
open override fun <T : Any> toArray(p0: Array<T>): Array<T>
open fun <T : Any> toArray(p0: IntFunction<Array<T>>): Array<T>
Link copied to clipboard
Link copied to clipboard
open override fun toNodeCollection(predicate: (Edge<NodeType>) -> Boolean?): MutableSet<NodeType>

Converts this collection of edges into a collection of nodes for easier access to the "target" nodes.

Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
open override fun unwrap(): UnwrappedEdgeSet<NodeType, Edge<NodeType>>

Returns an UnwrappedEdgeSet magic container which holds a structure that provides easy access to the "target" nodes without edge information.