fnmatch.py 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. """Filename matching with shell patterns.
  2. fnmatch(FILENAME, PATTERN) matches according to the local convention.
  3. fnmatchcase(FILENAME, PATTERN) always takes case in account.
  4. The functions operate by translating the pattern into a regular
  5. expression. They cache the compiled regular expressions for speed.
  6. The function translate(PATTERN) returns a regular expression
  7. corresponding to PATTERN. (It does not compile it.)
  8. """
  9. import os
  10. import posixpath
  11. import re
  12. import functools
  13. __all__ = ["filter", "fnmatch", "fnmatchcase", "translate"]
  14. def fnmatch(name, pat):
  15. """Test whether FILENAME matches PATTERN.
  16. Patterns are Unix shell style:
  17. * matches everything
  18. ? matches any single character
  19. [seq] matches any character in seq
  20. [!seq] matches any char not in seq
  21. An initial period in FILENAME is not special.
  22. Both FILENAME and PATTERN are first case-normalized
  23. if the operating system requires it.
  24. If you don't want this, use fnmatchcase(FILENAME, PATTERN).
  25. """
  26. name = os.path.normcase(name)
  27. pat = os.path.normcase(pat)
  28. return fnmatchcase(name, pat)
  29. @functools.lru_cache(maxsize=256, typed=True)
  30. def _compile_pattern(pat):
  31. if isinstance(pat, bytes):
  32. pat_str = str(pat, 'ISO-8859-1')
  33. res_str = translate(pat_str)
  34. res = bytes(res_str, 'ISO-8859-1')
  35. else:
  36. res = translate(pat)
  37. return re.compile(res).match
  38. def filter(names, pat):
  39. """Return the subset of the list NAMES that match PAT."""
  40. result = []
  41. pat = os.path.normcase(pat)
  42. match = _compile_pattern(pat)
  43. if os.path is posixpath:
  44. # normcase on posix is NOP. Optimize it away from the loop.
  45. for name in names:
  46. if match(name):
  47. result.append(name)
  48. else:
  49. for name in names:
  50. if match(os.path.normcase(name)):
  51. result.append(name)
  52. return result
  53. def fnmatchcase(name, pat):
  54. """Test whether FILENAME matches PATTERN, including case.
  55. This is a version of fnmatch() which doesn't case-normalize
  56. its arguments.
  57. """
  58. match = _compile_pattern(pat)
  59. return match(name) is not None
  60. def translate(pat):
  61. """Translate a shell PATTERN to a regular expression.
  62. There is no way to quote meta-characters.
  63. """
  64. i, n = 0, len(pat)
  65. res = ''
  66. while i < n:
  67. c = pat[i]
  68. i = i+1
  69. if c == '*':
  70. res = res + '.*'
  71. elif c == '?':
  72. res = res + '.'
  73. elif c == '[':
  74. j = i
  75. if j < n and pat[j] == '!':
  76. j = j+1
  77. if j < n and pat[j] == ']':
  78. j = j+1
  79. while j < n and pat[j] != ']':
  80. j = j+1
  81. if j >= n:
  82. res = res + '\\['
  83. else:
  84. stuff = pat[i:j].replace('\\','\\\\')
  85. i = j+1
  86. if stuff[0] == '!':
  87. stuff = '^' + stuff[1:]
  88. elif stuff[0] == '^':
  89. stuff = '\\' + stuff
  90. res = '%s[%s]' % (res, stuff)
  91. else:
  92. res = res + re.escape(c)
  93. return res + '\Z(?ms)'