PageRenderTime 52ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 1ms

/vendor/symfony/symfony/src/Symfony/Component/Finder/Glob.php

https://bitbucket.org/arturoblack/tomoyo
PHP | 103 lines | 56 code | 8 blank | 39 comment | 18 complexity | 0b44ed57af5918230d1b82ecee9c3ba3 MD5 | raw file
Possible License(s): BSD-3-Clause, BSD-2-Clause, Apache-2.0, LGPL-2.1, CC-BY-3.0, LGPL-3.0
  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 (array('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. *
  38. * @param string $glob The glob pattern
  39. * @param Boolean $strictLeadingDot
  40. * @param Boolean $strictWildcardSlash
  41. *
  42. * @return string regex The regexp
  43. */
  44. public static function toRegex($glob, $strictLeadingDot = true, $strictWildcardSlash = true)
  45. {
  46. $firstByte = true;
  47. $escaping = false;
  48. $inCurlies = 0;
  49. $regex = '';
  50. $sizeGlob = strlen($glob);
  51. for ($i = 0; $i < $sizeGlob; $i++) {
  52. $car = $glob[$i];
  53. if ($firstByte) {
  54. if ($strictLeadingDot && '.' !== $car) {
  55. $regex .= '(?=[^\.])';
  56. }
  57. $firstByte = false;
  58. }
  59. if ('/' === $car) {
  60. $firstByte = true;
  61. }
  62. if ('.' === $car || '(' === $car || ')' === $car || '|' === $car || '+' === $car || '^' === $car || '$' === $car) {
  63. $regex .= "\\$car";
  64. } elseif ('*' === $car) {
  65. $regex .= $escaping ? '\\*' : ($strictWildcardSlash ? '[^/]*' : '.*');
  66. } elseif ('?' === $car) {
  67. $regex .= $escaping ? '\\?' : ($strictWildcardSlash ? '[^/]' : '.');
  68. } elseif ('{' === $car) {
  69. $regex .= $escaping ? '\\{' : '(';
  70. if (!$escaping) {
  71. ++$inCurlies;
  72. }
  73. } elseif ('}' === $car && $inCurlies) {
  74. $regex .= $escaping ? '}' : ')';
  75. if (!$escaping) {
  76. --$inCurlies;
  77. }
  78. } elseif (',' === $car && $inCurlies) {
  79. $regex .= $escaping ? ',' : '|';
  80. } elseif ('\\' === $car) {
  81. if ($escaping) {
  82. $regex .= '\\\\';
  83. $escaping = false;
  84. } else {
  85. $escaping = true;
  86. }
  87. continue;
  88. } else {
  89. $regex .= $car;
  90. }
  91. $escaping = false;
  92. }
  93. return '#^'.$regex.'$#';
  94. }
  95. }