IdentifierHandler.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\CssSelector\Parser\Handler;
  11. use Symfony\Component\CssSelector\Parser\Reader;
  12. use Symfony\Component\CssSelector\Parser\Token;
  13. use Symfony\Component\CssSelector\Parser\Tokenizer\TokenizerEscaping;
  14. use Symfony\Component\CssSelector\Parser\Tokenizer\TokenizerPatterns;
  15. use Symfony\Component\CssSelector\Parser\TokenStream;
  16. /**
  17. * CSS selector comment handler.
  18. *
  19. * This component is a port of the Python cssselect library,
  20. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
  21. *
  22. * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
  23. *
  24. * @internal
  25. */
  26. class IdentifierHandler implements HandlerInterface
  27. {
  28. private TokenizerPatterns $patterns;
  29. private TokenizerEscaping $escaping;
  30. public function __construct(TokenizerPatterns $patterns, TokenizerEscaping $escaping)
  31. {
  32. $this->patterns = $patterns;
  33. $this->escaping = $escaping;
  34. }
  35. public function handle(Reader $reader, TokenStream $stream): bool
  36. {
  37. $match = $reader->findPattern($this->patterns->getIdentifierPattern());
  38. if (!$match) {
  39. return false;
  40. }
  41. $value = $this->escaping->escapeUnicode($match[0]);
  42. $stream->push(new Token(Token::TYPE_IDENTIFIER, $value, $reader->getPosition()));
  43. $reader->moveForward(\strlen($match[0]));
  44. return true;
  45. }
  46. }