3 declare(strict_types=1);
71 if (!isset($this->returned[$objective->
getHash()])) {
72 throw new \LogicException(
73 "You may only mark objectives as failed that have been returned by this iterator." 77 $this->failed[$objective->
getHash()] =
true;
86 $this->reverse_dependencies = [];
93 throw new \LogicException(
94 "Iterator is finished or wasn't initialized correctly internally." 102 return $this->
current()->getHash();
107 if ($this->stack === []) {
112 $cur = array_pop($this->stack);
113 $hash = $cur->getHash();
115 if (isset($this->returned[$hash]) || isset($this->failed[$hash])) {
121 $failed_preconditions = [];
122 foreach ($cur->getPreconditions($this->environment) as $p) {
124 if (!isset($this->returned[$h]) || isset($this->failed[$h])) {
125 $preconditions[] = $p;
128 if (isset($this->failed[$h])) {
129 $failed_preconditions[] = $p;
135 $preconditions !== [] &&
136 count($preconditions) === count($failed_preconditions)
138 $this->returned[$hash] =
true;
140 if ($this->stack === []) {
143 if ($cur instanceof
Objective\Tentatively) {
147 "Objective '" . $cur->getLabel() .
"' had failed preconditions:\n - " .
148 implode(
"\n - ", array_map(fn ($o) => $o->getLabel(), $failed_preconditions))
156 if ($preconditions === []) {
157 $this->returned[$hash] =
true;
162 $this->stack[] = $cur;
164 foreach (array_reverse($preconditions) as $p) {
173 return $this->
current !== null;
178 if (!isset($this->reverse_dependencies[$next])) {
181 if (in_array($cur, $this->reverse_dependencies[$next])) {
183 "The objectives contain a dependency cycle and won't all be achievable." 186 foreach ($this->reverse_dependencies[$next] as
$d) {
193 if (!isset($this->reverse_dependencies[$other])) {
194 $this->reverse_dependencies[$other] = [];
196 $this->reverse_dependencies[$other][] = $cur;
An objective is a desired state of the system that is supposed to be created by the setup...
setReverseDependency(string $other, string $cur)
Class ChatMainBarProvider .
getHash()
Get a hash for this objective.
__construct(Environment $environment, Objective $objective)
Signals that some goal won't be achievable by actions of the system ever.
markAsFailed(Objective $objective)
detectDependencyCycles(string $cur, string $next)
setEnvironment(Environment $environment)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An environment holds resources to be used in the setup process.
Tries to enumerate all preconditions for the given objective, where the ones that can be achieved (i...
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d
array $reverse_dependencies