* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Workflow; use Symfony\Component\Workflow\Exception\InvalidArgumentException; /** * Builds a definition. * * @author Fabien Potencier * @author Grégoire Pineau * @author Tobias Nyholm */ class DefinitionBuilder { private $places = array(); private $transitions = array(); private $initialPlace; /** * @param string[] $places * @param Transition[] $transitions */ public function __construct(array $places = array(), array $transitions = array()) { $this->addPlaces($places); $this->addTransitions($transitions); } /** * @return Definition */ public function build() { return new Definition($this->places, $this->transitions, $this->initialPlace); } /** * Clear all data in the builder. */ public function reset() { $this->places = array(); $this->transitions = array(); $this->initialPlace = null; } public function setInitialPlace($place) { $this->initialPlace = $place; } public function addPlace($place) { if (!preg_match('{^[\w\d_-]+$}', $place)) { throw new InvalidArgumentException(sprintf('The place "%s" contains invalid characters.', $place)); } if (!$this->places) { $this->initialPlace = $place; } $this->places[$place] = $place; } public function addPlaces(array $places) { foreach ($places as $place) { $this->addPlace($place); } } /** * @param Transition[] $transitions */ public function addTransitions(array $transitions) { foreach ($transitions as $transition) { $this->addTransition($transition); } } public function addTransition(Transition $transition) { $this->transitions[] = $transition; } }