* $workflow->verify(); * * * The verifier checks that: * - there is only one start node * - each node satisfies the constraints of the respective node type * * @package Workflow * @version 1.1rc1 */ class ezcWorkflowVisitorVerification implements ezcWorkflowVisitor { /** * Holds the number of start nodes encountered during visiting. * * @var integer */ protected $numStartNodes = 0; /** * Holds the id of each node that has been visited already. * * @var array */ protected $visited = array(); /** * Visits the node, checks contraints and calls verify on each node. * * Returns true if the node was verified. False if it was already * verified. * * @param ezcWorkflowVisitable $visitable * @throws ezcWorkflowInvalidWorkflowException * @return boolean */ public function visit( ezcWorkflowVisitable $visitable ) { if ( $visitable instanceof ezcWorkflow ) { foreach ( $visitable->nodes as $node ) { if ( $node instanceof ezcWorkflowNodeStart ) { $this->numStartNodes++; if ( $this->numStartNodes > 1 ) { throw new ezcWorkflowInvalidWorkflowException( 'A workflow may have only one start node.' ); } } } } if ( $visitable instanceof ezcWorkflowNode ) { $id = $visitable->getId(); if ( isset( $this->visited[$id] ) ) { return false; } $this->visited[$id] = true; $visitable->verify(); } return true; } } ?>