ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Path.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\MetaData\Paths;
22 
25 
26 class Path implements PathInterface, \Stringable
27 {
31  protected array $steps;
32  protected bool $is_relative;
33  protected bool $leads_to_one;
34 
35  public function __construct(
36  bool $is_relative,
37  bool $leads_to_one,
38  StepInterface ...$steps
39  ) {
40  $this->is_relative = $is_relative;
41  $this->leads_to_one = $leads_to_one;
42  $this->steps = $steps;
43  }
44 
48  public function steps(): \Generator
49  {
50  yield from $this->steps;
51  }
52 
53  public function isRelative(): bool
54  {
55  return $this->is_relative;
56  }
57 
58  public function leadsToExactlyOneElement(): bool
59  {
60  return $this->leads_to_one;
61  }
62 
63  public function toString(): string
64  {
65  $string = '';
66 
67  if ($this->leadsToExactlyOneElement()) {
68  $string .= Token::LEADS_TO_EXACTLY_ONE->value;
69  }
70  if ($this->isRelative()) {
71  $string .= Token::START_AT_CURRENT->value;
72  } else {
73  $string .= Token::START_AT_ROOT->value;
74  }
75  foreach ($this->steps() as $step) {
76  $string .= Token::SEPARATOR->value;
77  $string .= $this->stepToString($step);
78  }
79 
80  return $string;
81  }
82 
83  protected function stepToString(StepInterface $step): string
84  {
85  $string = $step->name();
86  if ($string instanceof StepToken) {
87  $string = $string->value;
88  }
89  foreach ($step->filters() as $filter) {
90  $string .= Token::FILTER_SEPARATOR->value .
91  $filter->type()->value .
93 
94  $string .= implode(
96  iterator_to_array($filter->values())
97  );
98  }
99  return $string;
100  }
101 
102  public function __toString(): string
103  {
104  return $this->toString();
105  }
106 }
filters()
Filters restrict the elements a step leads to.
__construct(bool $is_relative, bool $leads_to_one, StepInterface ... $steps)
Definition: Path.php:35
leadsToExactlyOneElement()
Specifies whether the path should point to exactly one element, or whether it can also lead to no or ...
Definition: Path.php:58
name()
Steps are identified by the names of LOM elements, or a token to specify a step to the super-element...
StepToken
The string representation of these tokens must not occur as names of metadata elements.
Definition: StepToken.php:27
isRelative()
Relative paths start at some otherwise determined element, absolute paths start at root...
Definition: Path.php:53
stepToString(StepInterface $step)
Definition: Path.php:83