Merge pull request #4036 from dokuwiki/issue4033
[dokuwiki.git] / _test / vendor / symfony / css-selector / XPath / Translator.php
blob782aef458a9e1c656c09ec4f676e3eb778e91dff
1 <?php
3 /*
4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\CssSelector\XPath;
14 use Symfony\Component\CssSelector\Exception\ExpressionErrorException;
15 use Symfony\Component\CssSelector\Node\FunctionNode;
16 use Symfony\Component\CssSelector\Node\NodeInterface;
17 use Symfony\Component\CssSelector\Node\SelectorNode;
18 use Symfony\Component\CssSelector\Parser\Parser;
19 use Symfony\Component\CssSelector\Parser\ParserInterface;
21 /**
22 * XPath expression translator interface.
24 * This component is a port of the Python cssselect library,
25 * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
27 * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
29 * @internal
31 class Translator implements TranslatorInterface
33 private $mainParser;
35 /**
36 * @var ParserInterface[]
38 private $shortcutParsers = [];
40 /**
41 * @var Extension\ExtensionInterface[]
43 private $extensions = [];
45 private $nodeTranslators = [];
46 private $combinationTranslators = [];
47 private $functionTranslators = [];
48 private $pseudoClassTranslators = [];
49 private $attributeMatchingTranslators = [];
51 public function __construct(ParserInterface $parser = null)
53 $this->mainParser = $parser ?? new Parser();
55 $this
56 ->registerExtension(new Extension\NodeExtension())
57 ->registerExtension(new Extension\CombinationExtension())
58 ->registerExtension(new Extension\FunctionExtension())
59 ->registerExtension(new Extension\PseudoClassExtension())
60 ->registerExtension(new Extension\AttributeMatchingExtension())
64 public static function getXpathLiteral(string $element): string
66 if (!str_contains($element, "'")) {
67 return "'".$element."'";
70 if (!str_contains($element, '"')) {
71 return '"'.$element.'"';
74 $string = $element;
75 $parts = [];
76 while (true) {
77 if (false !== $pos = strpos($string, "'")) {
78 $parts[] = sprintf("'%s'", substr($string, 0, $pos));
79 $parts[] = "\"'\"";
80 $string = substr($string, $pos + 1);
81 } else {
82 $parts[] = "'$string'";
83 break;
87 return sprintf('concat(%s)', implode(', ', $parts));
90 /**
91 * {@inheritdoc}
93 public function cssToXPath(string $cssExpr, string $prefix = 'descendant-or-self::'): string
95 $selectors = $this->parseSelectors($cssExpr);
97 /** @var SelectorNode $selector */
98 foreach ($selectors as $index => $selector) {
99 if (null !== $selector->getPseudoElement()) {
100 throw new ExpressionErrorException('Pseudo-elements are not supported.');
103 $selectors[$index] = $this->selectorToXPath($selector, $prefix);
106 return implode(' | ', $selectors);
110 * {@inheritdoc}
112 public function selectorToXPath(SelectorNode $selector, string $prefix = 'descendant-or-self::'): string
114 return ($prefix ?: '').$this->nodeToXPath($selector);
118 * @return $this
120 public function registerExtension(Extension\ExtensionInterface $extension): self
122 $this->extensions[$extension->getName()] = $extension;
124 $this->nodeTranslators = array_merge($this->nodeTranslators, $extension->getNodeTranslators());
125 $this->combinationTranslators = array_merge($this->combinationTranslators, $extension->getCombinationTranslators());
126 $this->functionTranslators = array_merge($this->functionTranslators, $extension->getFunctionTranslators());
127 $this->pseudoClassTranslators = array_merge($this->pseudoClassTranslators, $extension->getPseudoClassTranslators());
128 $this->attributeMatchingTranslators = array_merge($this->attributeMatchingTranslators, $extension->getAttributeMatchingTranslators());
130 return $this;
134 * @throws ExpressionErrorException
136 public function getExtension(string $name): Extension\ExtensionInterface
138 if (!isset($this->extensions[$name])) {
139 throw new ExpressionErrorException(sprintf('Extension "%s" not registered.', $name));
142 return $this->extensions[$name];
146 * @return $this
148 public function registerParserShortcut(ParserInterface $shortcut): self
150 $this->shortcutParsers[] = $shortcut;
152 return $this;
156 * @throws ExpressionErrorException
158 public function nodeToXPath(NodeInterface $node): XPathExpr
160 if (!isset($this->nodeTranslators[$node->getNodeName()])) {
161 throw new ExpressionErrorException(sprintf('Node "%s" not supported.', $node->getNodeName()));
164 return $this->nodeTranslators[$node->getNodeName()]($node, $this);
168 * @throws ExpressionErrorException
170 public function addCombination(string $combiner, NodeInterface $xpath, NodeInterface $combinedXpath): XPathExpr
172 if (!isset($this->combinationTranslators[$combiner])) {
173 throw new ExpressionErrorException(sprintf('Combiner "%s" not supported.', $combiner));
176 return $this->combinationTranslators[$combiner]($this->nodeToXPath($xpath), $this->nodeToXPath($combinedXpath));
180 * @throws ExpressionErrorException
182 public function addFunction(XPathExpr $xpath, FunctionNode $function): XPathExpr
184 if (!isset($this->functionTranslators[$function->getName()])) {
185 throw new ExpressionErrorException(sprintf('Function "%s" not supported.', $function->getName()));
188 return $this->functionTranslators[$function->getName()]($xpath, $function);
192 * @throws ExpressionErrorException
194 public function addPseudoClass(XPathExpr $xpath, string $pseudoClass): XPathExpr
196 if (!isset($this->pseudoClassTranslators[$pseudoClass])) {
197 throw new ExpressionErrorException(sprintf('Pseudo-class "%s" not supported.', $pseudoClass));
200 return $this->pseudoClassTranslators[$pseudoClass]($xpath);
204 * @throws ExpressionErrorException
206 public function addAttributeMatching(XPathExpr $xpath, string $operator, string $attribute, $value): XPathExpr
208 if (!isset($this->attributeMatchingTranslators[$operator])) {
209 throw new ExpressionErrorException(sprintf('Attribute matcher operator "%s" not supported.', $operator));
212 return $this->attributeMatchingTranslators[$operator]($xpath, $attribute, $value);
216 * @return SelectorNode[]
218 private function parseSelectors(string $css): array
220 foreach ($this->shortcutParsers as $shortcut) {
221 $tokens = $shortcut->parse($css);
223 if (!empty($tokens)) {
224 return $tokens;
228 return $this->mainParser->parse($css);