Sparksee
6.0.2
|
Breadth-First Search implementation of Traversal. More...
Public Member Functions | |
virtual sparksee::gdb::oid_t | Next () |
Gets the next object of the traversal. More... | |
virtual sparksee::gdb::bool_t | HasNext () |
Gets if there are more objects to be traversed. More... | |
virtual | ~TraversalBFS () |
Destructor. | |
virtual sparksee::gdb::int32_t | GetCurrentDepth () const |
Returns the depth of the current node. More... | |
TraversalBFS (sparksee::gdb::Session &session, sparksee::gdb::oid_t node) | |
Creates a new instance. More... | |
virtual void | AddEdgeType (sparksee::gdb::type_t type, sparksee::gdb::EdgesDirection dir) |
Allows for traversing edges of the given type. More... | |
virtual void | AddAllEdgeTypes (sparksee::gdb::EdgesDirection dir) |
Allows for traversing all edge types of the graph. More... | |
virtual void | AddNodeType (sparksee::gdb::type_t type) |
Allows for traversing nodes of the given type. More... | |
virtual void | AddAllNodeTypes () |
Allows for traversing all node types of the graph. | |
virtual void | ExcludeNodes (sparksee::gdb::Objects &nodes) |
Set which nodes can't be used. More... | |
virtual void | ExcludeEdges (sparksee::gdb::Objects &edges) |
Set which edges can't be used. More... | |
virtual void | SetMaximumHops (sparksee::gdb::int32_t maxhops) |
Sets the maximum hops restriction. More... | |
Protected Member Functions | |
void | AssertAddedEdges () |
Check that edges had been added. | |
void | AssertAddedNodes () |
Check that nodes had been added. | |
void | AssertEdgeType (sparksee::gdb::type_t edgetype) |
Check that the given edge type is valid. | |
void | AssertNodeType (sparksee::gdb::type_t nodetype) |
Check that the given node type is valid. | |
sparksee::gdb::bool_t | IsNodeTypeAllowed (sparksee::gdb::oid_t nodeId) |
Check if the given node has an allowed type. | |
sparksee::gdb::bool_t | IsNodeExcluded (sparksee::gdb::oid_t node) |
Check if the given node is forbidden. | |
sparksee::gdb::bool_t | IsEdgeExcluded (sparksee::gdb::oid_t edge) |
Check if the given edge is forbidden. | |
Protected Attributes | |
sparksee::gdb::Session * | sess |
Session. | |
sparksee::gdb::Graph * | graph |
Graph. | |
sparksee::gdb::oid_t | src |
Source node of the traversal. | |
std::map< sparksee::gdb::type_t, sparksee::gdb::EdgesDirection > | edgeTypes |
Allowed edge types. | |
std::vector< sparksee::gdb::type_t > | nodeTypes |
Allowed node types. | |
sparksee::gdb::int32_t | maxHops |
Maximum number of hops allowed. | |
sparksee::gdb::Objects * | excludedNodes |
The set of excluded nodes. | |
sparksee::gdb::Objects * | excludedEdges |
The set of excluded edges. | |
Breadth-First Search implementation of Traversal.
Starting from a source node, it visits all its neighbors at distance 1, then all its neighbors at distance 2, and so on.
Check out the 'Algorithms' section in the SPARKSEE User Manual for more details on this.
TraversalBFS::TraversalBFS | ( | sparksee::gdb::Session & | session, |
sparksee::gdb::oid_t | node | ||
) |
Creates a new instance.
session | [in] Session to get the graph from and perform traversal. |
node | [in] Node to start traversal from. |
|
virtualinherited |
Allows for traversing all edge types of the graph.
dir | [in] Edge direction. |
Reimplemented in RandomWalk.
|
virtualinherited |
Allows for traversing edges of the given type.
type | [in] Edge type. |
dir | [in] Edge direction. |
Reimplemented in RandomWalk.
|
virtualinherited |
Allows for traversing nodes of the given type.
type | The node type to add |
Reimplemented in RandomWalk.
|
virtualinherited |
Set which edges can't be used.
This will replace any previously specified set of excluded edges. Should only be used to exclude the usage of specific edges from allowed edge types because it's less efficient than not allowing an edge type.
edges | [in] A set of edge identifiers that must be kept intact until the destruction of the class. |
Reimplemented in RandomWalk.
|
virtualinherited |
Set which nodes can't be used.
This will replace any previously specified set of excluded nodes. Should only be used to exclude the usage of specific nodes from allowed node types because it's less efficient than not allowing a node type.
nodes | [in] A set of node identifiers that must be kept intact until the destruction of the class. |
Reimplemented in RandomWalk.
|
virtual |
|
virtual |
Gets if there are more objects to be traversed.
Implements Traversal.
|
virtual |
|
virtualinherited |
Sets the maximum hops restriction.
All paths longer than the maximum hops restriction will be ignored.
maxhops | [in] The maximum hops restriction. It must be positive or zero. Zero, the default value, means unlimited. |