123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <?php
- namespace Symfony\Component\Finder\Expression;
- @trigger_error('The '.__NAMESPACE__.'\Expression class is deprecated since Symfony 2.8 and will be removed in 3.0.', E_USER_DEPRECATED);
- class Expression implements ValueInterface
- {
- const TYPE_REGEX = 1;
- const TYPE_GLOB = 2;
-
- private $value;
-
- public static function create($expr)
- {
- return new self($expr);
- }
-
- public function __construct($expr)
- {
- try {
- $this->value = Regex::create($expr);
- } catch (\InvalidArgumentException $e) {
- $this->value = new Glob($expr);
- }
- }
-
- public function __toString()
- {
- return $this->render();
- }
-
- public function render()
- {
- return $this->value->render();
- }
-
- public function renderPattern()
- {
- return $this->value->renderPattern();
- }
-
- public function isCaseSensitive()
- {
- return $this->value->isCaseSensitive();
- }
-
- public function getType()
- {
- return $this->value->getType();
- }
-
- public function prepend($expr)
- {
- $this->value->prepend($expr);
- return $this;
- }
-
- public function append($expr)
- {
- $this->value->append($expr);
- return $this;
- }
-
- public function isRegex()
- {
- return self::TYPE_REGEX === $this->value->getType();
- }
-
- public function isGlob()
- {
- return self::TYPE_GLOB === $this->value->getType();
- }
-
- public function getGlob()
- {
- if (self::TYPE_GLOB !== $this->value->getType()) {
- throw new \LogicException('Regex can\'t be transformed to glob.');
- }
- return $this->value;
- }
-
- public function getRegex()
- {
- return self::TYPE_REGEX === $this->value->getType() ? $this->value : $this->value->toRegex();
- }
- }
|