Glob.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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\Finder;
  11. /**
  12. * Glob matches globbing patterns against text.
  13. *
  14. * if match_glob("foo.*", "foo.bar") echo "matched\n";
  15. *
  16. * // prints foo.bar and foo.baz
  17. * $regex = glob_to_regex("foo.*");
  18. * for (['foo.bar', 'foo.baz', 'foo', 'bar'] as $t)
  19. * {
  20. * if (/$regex/) echo "matched: $car\n";
  21. * }
  22. *
  23. * Glob implements glob(3) style matching that can be used to match
  24. * against text, rather than fetching names from a filesystem.
  25. *
  26. * Based on the Perl Text::Glob module.
  27. *
  28. * @author Fabien Potencier <fabien@symfony.com> PHP port
  29. * @author Richard Clamp <richardc@unixbeard.net> Perl version
  30. * @copyright 2004-2005 Fabien Potencier <fabien@symfony.com>
  31. * @copyright 2002 Richard Clamp <richardc@unixbeard.net>
  32. */
  33. class Glob
  34. {
  35. /**
  36. * Returns a regexp which is the equivalent of the glob pattern.
  37. * @param string $glob
  38. * @param bool $strictLeadingDot
  39. * @param bool $strictWildcardSlash
  40. * @param string $delimiter
  41. */
  42. public static function toRegex($glob, $strictLeadingDot = true, $strictWildcardSlash = true, $delimiter = '#')
  43. {
  44. $firstByte = true;
  45. $escaping = false;
  46. $inCurlies = 0;
  47. $regex = '';
  48. $sizeGlob = \strlen($glob);
  49. for ($i = 0; $i < $sizeGlob; ++$i) {
  50. $car = $glob[$i];
  51. if ($firstByte && $strictLeadingDot && '.' !== $car) {
  52. $regex .= '(?=[^\.])';
  53. }
  54. $firstByte = '/' === $car;
  55. if ($firstByte && $strictWildcardSlash && isset($glob[$i + 2]) && '**' === $glob[$i + 1].$glob[$i + 2] && (!isset($glob[$i + 3]) || '/' === $glob[$i + 3])) {
  56. $car = '[^/]++/';
  57. if (!isset($glob[$i + 3])) {
  58. $car .= '?';
  59. }
  60. if ($strictLeadingDot) {
  61. $car = '(?=[^\.])'.$car;
  62. }
  63. $car = '/(?:'.$car.')*';
  64. $i += 2 + isset($glob[$i + 3]);
  65. if ('/' === $delimiter) {
  66. $car = str_replace('/', '\\/', $car);
  67. }
  68. }
  69. if ($delimiter === $car || '.' === $car || '(' === $car || ')' === $car || '|' === $car || '+' === $car || '^' === $car || '$' === $car) {
  70. $regex .= "\\$car";
  71. } elseif ('*' === $car) {
  72. $regex .= $escaping ? '\\*' : ($strictWildcardSlash ? '[^/]*' : '.*');
  73. } elseif ('?' === $car) {
  74. $regex .= $escaping ? '\\?' : ($strictWildcardSlash ? '[^/]' : '.');
  75. } elseif ('{' === $car) {
  76. $regex .= $escaping ? '\\{' : '(';
  77. if (!$escaping) {
  78. ++$inCurlies;
  79. }
  80. } elseif ('}' === $car && $inCurlies) {
  81. $regex .= $escaping ? '}' : ')';
  82. if (!$escaping) {
  83. --$inCurlies;
  84. }
  85. } elseif (',' === $car && $inCurlies) {
  86. $regex .= $escaping ? ',' : '|';
  87. } elseif ('\\' === $car) {
  88. if ($escaping) {
  89. $regex .= '\\\\';
  90. $escaping = false;
  91. } else {
  92. $escaping = true;
  93. }
  94. continue;
  95. } else {
  96. $regex .= $car;
  97. }
  98. $escaping = false;
  99. }
  100. return $delimiter.'^'.$regex.'$'.$delimiter;
  101. }
  102. }