Class PureBigraph
java.lang.Object
org.bigraphs.framework.core.impl.pure.PureBigraph
- All Implemented Interfaces:
Bigraph<DynamicSignature>,EcoreBigraph<DynamicSignature>,EcoreBigraphExt,HasSignature<DynamicSignature>
public class PureBigraph
extends Object
implements Bigraph<DynamicSignature>, EcoreBigraph<DynamicSignature>
Ecore-based model implementation of a pure bigraph.
Instances are created via PureBigraphBuilder and implement the
Bigraph interface with DynamicSignature as the signature type.
This class is immutable and provides basic operations (e.g., retrieving a node’s parent). Elements are stored in separate collections for efficient access; these collections are not modifiable after creation.
This class encapsulates both the Ecore-based
metamodel (getMetaModel()) and its corresponding instance model (getInstanceModel()).
- Author:
- Dominik Grzelak
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.bigraphs.framework.core.EcoreBigraph
EcoreBigraph.Stub<S extends AbstractEcoreSignature<?>> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<C extends Control<?,?>>
booleanareConnected(BigraphEntity.NodeEntity<C> place1, BigraphEntity.NodeEntity<C> place2) Check if two nodes are connected to each other.List<BigraphEntity<?>> Returns all places of the bigraph, i.e., roots, nodes and sites.List<BigraphEntity<?>> getChildrenOf(BigraphEntity<?> node) Returns the set of children of a given node (including sites).getEdges()org.eclipse.emf.ecore.EObjectReturn the Ecore-based instance model of a bigraph object or signature object.intgetLevelOf(BigraphEntity<?> place) Get the depth of a place entity in the place graph (i.e., a tree).getLinkOfPoint(BigraphEntity<?> point) Returns the link of a bigraph's point type.org.eclipse.emf.ecore.EPackageReturn the metamodel of a bigraph object or a signature object.getNodes()List<BigraphEntity<?>> getOpenNeighborhoodOfVertex(BigraphEntity<?> node) Gets the neighborhood of the given node of the place graph.getParent(BigraphEntity<?> node) Get the parent of a bigraph's place.List<BigraphEntity<?>> getPointsFromLink(BigraphEntity.Link linkEntity) Get all point entities (i.e., ports and inner names) of a link entity (i.e., edges and outer names).<C extends Control<?,?>>
intgetPortCount(BigraphEntity.NodeEntity<C> node) Get the number of "blocked/occupied" ports by links of a node.getPorts(BigraphEntity<?> node) Return all ports of a node.getRoots()getSiblingsOfInnerName(BigraphEntity.InnerName innerName) Returns all siblings of an inner name.List<BigraphEntity<?>> getSiblingsOfNode(BigraphEntity<?> node) Returns all siblings of the given node of the current bigraph.Get the corresponding signature of the underlying bigraphgetSites()getTopLevelRoot(BigraphEntity<?> node) booleanisParentOf(BigraphEntity<?> node, BigraphEntity<?> possibleParent) A recursive function that checks, whether the given node haspossibleParentas parent.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.bigraphs.framework.core.Bigraph
getIncidentLinksOf, getInnerFace, getOuterFace, getSupport, isActive, isActiveAtNode, isActiveAtSite, isDiscrete, isEpimorphic, isGround, isGuarding, isLean, isMonomorphic, isPrimeMethods inherited from interface org.bigraphs.framework.core.EcoreBigraph
getEMetaModelData, isBEdge, isBInnerName, isBLink, isBNode, isBOuterName, isBPlace, isBPoint, isBPort, isBRoot, isBSite, isIndexable, isNameable, isOfEClass
-
Constructor Details
-
PureBigraph
-
-
Method Details
-
getMetaModel
public org.eclipse.emf.ecore.EPackage getMetaModel()Description copied from interface:EcoreBigraphExtReturn the metamodel of a bigraph object or a signature object.It is a metamodel that either extends the base bigraph metamodel or the base signature metamodel.
- Specified by:
getMetaModelin interfaceEcoreBigraphExt- Returns:
- the metamodel in Ecore format
- See Also:
-
getInstanceModel
public org.eclipse.emf.ecore.EObject getInstanceModel()Description copied from interface:EcoreBigraphExtReturn the Ecore-based instance model of a bigraph object or signature object.- Specified by:
getInstanceModelin interfaceEcoreBigraphExt- Returns:
- the instance model in Ecore format
-
getSignature
Description copied from interface:HasSignatureGet the corresponding signature of the underlying bigraph- Specified by:
getSignaturein interfaceBigraph<DynamicSignature>- Specified by:
getSignaturein interfaceEcoreBigraph<DynamicSignature>- Specified by:
getSignaturein interfaceHasSignature<DynamicSignature>- Returns:
- the signature of the bigraph
-
getLevelOf
Description copied from interface:BigraphGet the depth of a place entity in the place graph (i.e., a tree). The depth of a root node is always 0.- Specified by:
getLevelOfin interfaceBigraph<DynamicSignature>- Parameters:
place- the place node in question to compute its depth- Returns:
- the depth of the given place entity of this bigraph
-
getOpenNeighborhoodOfVertex
Description copied from interface:BigraphGets the neighborhood of the given node of the place graph. The neighborhood is the set containing the its children and its parent (without the node in question itself).- Specified by:
getOpenNeighborhoodOfVertexin interfaceBigraph<DynamicSignature>- Parameters:
node- the nodes who's neighborhood should be returned- Returns:
- the neighborhood of the node of the place graph
-
getRoots
- Specified by:
getRootsin interfaceBigraph<DynamicSignature>
-
getSites
- Specified by:
getSitesin interfaceBigraph<DynamicSignature>
-
getOuterNames
- Specified by:
getOuterNamesin interfaceBigraph<DynamicSignature>
-
getInnerNames
- Specified by:
getInnerNamesin interfaceBigraph<DynamicSignature>
-
getAllPlaces
Description copied from interface:BigraphReturns all places of the bigraph, i.e., roots, nodes and sites.- Specified by:
getAllPlacesin interfaceBigraph<DynamicSignature>- Returns:
- all places of the bigraph
-
getAllLinks
- Specified by:
getAllLinksin interfaceBigraph<DynamicSignature>
-
getEdges
- Specified by:
getEdgesin interfaceBigraph<DynamicSignature>
-
getParent
Description copied from interface:BigraphGet the parent of a bigraph's place. Passing a root as argument will always returnnull.- Specified by:
getParentin interfaceBigraph<DynamicSignature>- Parameters:
node- a place of this bigraph- Returns:
- the parent of the given place, or
null
-
getSiblingsOfInnerName
Description copied from interface:BigraphReturns all siblings of an inner name. The collection will not contain any port.- Specified by:
getSiblingsOfInnerNamein interfaceBigraph<DynamicSignature>- Parameters:
innerName- the inner name who's siblings should be returned- Returns:
- the siblings connected to
innerName
-
getSiblingsOfNode
Description copied from interface:BigraphReturns all siblings of the given node of the current bigraph. The node itself is not included.- Specified by:
getSiblingsOfNodein interfaceBigraph<DynamicSignature>- Parameters:
node- the node whoms sibling should be returned- Returns:
- siblings of
node
-
getNodeOfPort
- Specified by:
getNodeOfPortin interfaceBigraph<DynamicSignature>
-
getPorts
Return all ports of a node. If the node's control has arity 0, then the list will always be empty. If no link is attached to a port, the list will also be empty.The list is ordered subject to the ports indices.
- Specified by:
getPortsin interfaceBigraph<DynamicSignature>- Parameters:
node- the node who's ports shall be returned- Returns:
- all ports of a node
-
getPortCount
Description copied from interface:BigraphGet the number of "blocked/occupied" ports by links of a node. Check with the control's arity.- Specified by:
getPortCountin interfaceBigraph<DynamicSignature>- Parameters:
node- the node- Returns:
- the port count of the node which are already used by links
-
getPointsFromLink
Description copied from interface:BigraphGet all point entities (i.e., ports and inner names) of a link entity (i.e., edges and outer names).- Specified by:
getPointsFromLinkin interfaceBigraph<DynamicSignature>- Parameters:
linkEntity- the link entity who's connections shall be returned- Returns:
- collection of points connected to the link entity
-
getLinkOfPoint
Description copied from interface:BigraphReturns the link of a bigraph's point type.- Specified by:
getLinkOfPointin interfaceBigraph<DynamicSignature>- Parameters:
point- a point of the bigraph- Returns:
- returns the link that connects the point a
null
-
getChildrenOf
Description copied from interface:BigraphReturns the set of children of a given node (including sites).
If the node has no children, then an empty set is returned.- Specified by:
getChildrenOfin interfaceBigraph<DynamicSignature>- Parameters:
node- the node whose children should be returned- Returns:
- a set of children of the given node
-
getNodes
- Specified by:
getNodesin interfaceBigraph<DynamicSignature>
-
getTopLevelRoot
- Specified by:
getTopLevelRootin interfaceBigraph<DynamicSignature>
-
isParentOf
Description copied from interface:BigraphA recursive function that checks, whether the given node haspossibleParentas parent. This means thatpossibleParentmust not necessarily be the direct parent, but can also be a parent higher in the hierarchy.- Specified by:
isParentOfin interfaceBigraph<DynamicSignature>- Parameters:
node- the node to check against the parentpossibleParentpossibleParent- the possible parent to check againstnode- Returns:
true, ifpossibleParentis directly or indirectly the parent ofnode, otherwisefalse
-
areConnected
public <C extends Control<?,?>> boolean areConnected(BigraphEntity.NodeEntity<C> place1, BigraphEntity.NodeEntity<C> place2) Description copied from interface:BigraphCheck if two nodes are connected to each other. The method considers connections by edges and outer names.- Specified by:
areConnectedin interfaceBigraph<DynamicSignature>- Parameters:
place1- left nodeplace2- right node- Returns:
- true, if the two nodes are connected by an edge or outer name
-