You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.4 KiB

3 years ago
  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\TokenizerPatterns;
  14. use Symfony\Component\CssSelector\Parser\TokenStream;
  15. /**
  16. * CSS selector comment handler.
  17. *
  18. * This component is a port of the Python cssselect library,
  19. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
  20. *
  21. * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
  22. *
  23. * @internal
  24. */
  25. class NumberHandler implements HandlerInterface
  26. {
  27. private $patterns;
  28. public function __construct(TokenizerPatterns $patterns)
  29. {
  30. $this->patterns = $patterns;
  31. }
  32. /**
  33. * {@inheritdoc}
  34. */
  35. public function handle(Reader $reader, TokenStream $stream): bool
  36. {
  37. $match = $reader->findPattern($this->patterns->getNumberPattern());
  38. if (!$match) {
  39. return false;
  40. }
  41. $stream->push(new Token(Token::TYPE_NUMBER, $match[0], $reader->getPosition()));
  42. $reader->moveForward(\strlen($match[0]));
  43. return true;
  44. }
  45. }