Source for file Node.php
Documentation is available at Node.php
/* vim: set expandtab tabstop=4 shiftwidth=4 foldmethod=marker: */
// +-----------------------------------------------------------------------------+
// | Copyright (c) 2003 Sérgio Gonçalves Carvalho |
// +-----------------------------------------------------------------------------+
// | This file is part of Structures_Graph. |
// | Structures_Graph is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU Lesser General Public License as published by |
// | the Free Software Foundation; either version 2.1 of the License, or |
// | (at your option) any later version. |
// | Structures_Graph is distributed in the hope that it will be useful, |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
// | GNU Lesser General Public License for more details. |
// | You should have received a copy of the GNU Lesser General Public License |
// | along with Structures_Graph; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
// +-----------------------------------------------------------------------------+
// | Author: Sérgio Carvalho <sergio.carvalho@portugalmail.com> |
// +-----------------------------------------------------------------------------+
* This file contains the definition of the Structures_Graph_Node class
* @see Structures_Graph_Node
* @package Structures_Graph
require_once 'Structures/Graph.php';
/* class Structures_Graph_Node {{{ */
* The Structures_Graph_Node class represents a Node that can be member of a
* A graph node can contain data. Under this API, the node contains default data,
* and key index data. It behaves, thus, both as a regular data node, and as a
* dictionary (or associative array) node.
* Regular data is accessed via getData and setData. Key indexed data is accessed
* via getMetadata and setMetadata.
* @author Sérgio Carvalho <sergio.carvalho@portugalmail.com>
* @copyright (c) 2004 by Sérgio Carvalho
* @package Structures_Graph
var $_metadata = array ();
* @return Structures_Graph Graph where node is stored
* Node graph setter. This method should not be called directly. Use Graph::addNode instead.
* @param Structures_Graph Set the graph for this node.
* @see Structures_Graph::addNode()
* Each graph node can contain a reference to one variable. This is the getter for that reference.
* @return mixed Data stored in node
* Each graph node can contain a reference to one variable. This is the setter for that reference.
* @return mixed Data to store in node
/* metadataKeyExists {{{ */
* Test for existence of metadata under a given key.
* Each graph node can contain multiple 'metadata' entries, each stored under a different key, as in an
* associative array or in a dictionary. This method tests whether a given metadata key exists for this node.
* @param string Key to test
* Each graph node can contain multiple 'metadata' entries, each stored under a different key, as in an
* associative array or in a dictionary. This method gets the data under the given key. If the key does
* not exist, an error will be thrown, so testing using metadataKeyExists might be needed.
* @param boolean nullIfNonexistent (defaults to false).
* @return mixed Metadata Data stored in node under given key
function &getMetadata($key, $nullIfNonexistent = false ) {
return $this->_metadata[$key];
if ($nullIfNonexistent) {
* Each graph node can contain multiple 'metadata' entries, each stored under a different key, as in an
* associative array or in a dictionary. This method removes any data that might be stored under the provided key.
* If the key does not exist, no error is thrown, so it is safe using this method without testing for key existence.
* Each graph node can contain multiple 'metadata' entries, each stored under a different key, as in an
* associative array or in a dictionary. This method stores data under the given key. If the key already exists,
* previously stored data is discarded.
$this->_metadata[$key] = & $data;
function _connectTo (&$destinationNode) {
$this->_arcs[] = & $destinationNode;
* Connect this node to another one.
* If the graph is not directed, the reverse arc, connecting $destinationNode to $this is also created.
* @param Structures_Graph Node to connect to
// We only connect to nodes
if (!is_a($destinationNode, 'Structures_Graph_Node')) return Pear ::raiseError ('Structures_Graph_Node::connectTo received an object that is not a Structures_Graph_Node', STRUCTURES_GRAPH_ERROR_GENERIC);
// Nodes must already be in graphs to be connected
if ($this->_graph == null ) return Pear ::raiseError ('Structures_Graph_Node::connectTo Tried to connect a node that is not in a graph', STRUCTURES_GRAPH_ERROR_GENERIC);
if ($destinationNode->getGraph () == null ) return Pear ::raiseError ('Structures_Graph_Node::connectTo Tried to connect to a node that is not in a graph', STRUCTURES_GRAPH_ERROR_GENERIC);
$this->_connectTo ($destinationNode);
// If graph is undirected, connect back
if (!$this->_graph->isDirected ()) {
$destinationNode->_connectTo ($this);
* Return nodes connected to this one.
* @return array Array of nodes
* Test wether this node has an arc to the target node
* @return boolean True if the two nodes are connected
foreach($arcKeys as $key) {
/* ZE1 chokes on this expression:
if ($target === $arc) return true;
so, we'll use more convoluted stuff
$arc = & $this->_arcs[$key];
* Calculate the in degree of the node.
* The indegree for a node is the number of arcs entering the node. For non directed graphs,
* the indegree is equal to the outdegree.
* @return integer In degree of the node
if ($this->_graph == null ) return 0;
if (!$this->_graph->isDirected ()) return $this->outDegree();
$graphNodes = & $this->_graph->getNodes ();
if ($graphNodes[$key]->connectsTo ($this)) $result++;
* Calculate the out degree of the node.
* The outdegree for a node is the number of arcs exiting the node. For non directed graphs,
* the outdegree is always equal to the indegree.
* @return integer Out degree of the node
if ($this->_graph == null ) return 0;
Documentation generated on Thu, 08 May 2008 18:00:06 -0400 by phpDocumentor 1.4.0. PEAR Logo Copyright © PHP Group 2004.
|