ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
StatusCommand.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Setup\CLI;
22 
31 
35 class StatusCommand extends Command
36 {
37  use HasAgent;
38  use ObjectiveHelper;
39 
40  protected static $defaultName = "status";
41 
42  public function __construct(AgentFinder $agent_finder)
43  {
45  $this->agent_finder = $agent_finder;
46  }
47 
48  protected function configure(): void
49  {
50  $this->setDescription("Collect and show status information about the installation.");
52  }
53 
54 
55  protected function execute(InputInterface $input, OutputInterface $output): int
56  {
57  $agent = $this->getRelevantAgent($input);
58 
59  $output->write($this->getMetrics($agent)->toYAML() . "\n");
60 
61  return 0;
62  }
63 
64  public function getMetrics(Agent $agent): Metrics\Metric
65  {
66  // ATTENTION: Don't do this (in general), please have a look at the comment
67  // in ilIniFilesLoadedObjective.
69 
70  $environment = new ArrayEnvironment([]);
71  $storage = new Metrics\ArrayStorage();
72  $objective = new Tentatively(
73  $agent->getStatusObjective($storage)
74  );
75 
76  $this->achieveObjective($objective, $environment);
77 
78  $metric = $storage->asMetric();
79  list($config, $other) = $metric->extractByStability(Metrics\Metric::STABILITY_CONFIG);
80  if ($other) {
81  $values = $other->getValue();
82  } else {
83  $values = [];
84  }
85  if ($config) {
86  $values["config"] = $config;
87  }
88 
89  return new Metrics\Metric(
92  $values
93  );
94  }
95 }
execute(InputInterface $input, OutputInterface $output)
Command to output status information about the installation.
A metric is something we can measure about the system.
Definition: Metric.php:33
getRelevantAgent(InputInterface $input)
Definition: HasAgent.php:40
__construct(AgentFinder $agent_finder)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A wrapper around an objective that attempts to achieve the wrapped objective but won&#39;t stop the proce...
Definition: Tentatively.php:29
configureCommandForPlugins()
Definition: HasAgent.php:33
__construct(Container $dic, ilPlugin $plugin)
trait HasAgent
Add this to an Command that has an agent.
Definition: HasAgent.php:30
const STABILITY_CONFIG
The stability of a metric tells how often we expect changes in the metric.
Definition: Metric.php:40