19 declare(strict_types=1);
35 $this->step_class = $steps::class;
40 $execution_log = $environment->
getResource(ilDatabaseUpdateStepExecutionLog::class);
41 $step_reader = $environment->
getResource(ilDBStepReader::class);
44 Metric::STABILITY_STABLE,
46 (
string) ($execution_log->getLastFinishedStep($this->step_class))
49 $available_version =
new Metric(
50 Metric::STABILITY_STABLE,
52 (
string) $step_reader->getLatestStepNumber($this->step_class, self::STEP_METHOD_PREFIX)
55 $update_required =
new Metric(
56 Metric::STABILITY_STABLE,
58 $execution_log->getLastFinishedStep($this->step_class) !== $step_reader->getLatestStepNumber(
60 self::STEP_METHOD_PREFIX
65 Metric::STABILITY_STABLE,
66 Metric::TYPE_COLLECTION,
69 "available_version" => $available_version,
70 "update_required" => $update_required
74 $storage->
store($this->step_class, $collection);
89 return hash(
"sha256", static::class . $this->step_class);
getLabel()
Get a label that describes this objective.
store(string $key, Metric $metric)
Store some metric in the storage.
getHash()
Get a hash for this objective.
A metric is something we can measure about the system.
Base class to simplify collection of metrics.
__construct(Storage $storage, ilDatabaseUpdateSteps $steps)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
An environment holds resources to be used in the setup process.
collectFrom(Environment $environment, Storage $storage)
__construct(Container $dic, ilPlugin $plugin)
getTentativePreconditions(Environment $environment)