summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/lint/fnmatch.py
blob: 4148ed75a90eb5597a98fe5bf3cd65b6520cf0b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import fnmatch as _stdlib_fnmatch
import os
from typing import Iterable, List, Text


__all__ = ["fnmatch", "fnmatchcase", "filter", "translate"]


def fnmatch(name: Text, pat: Text) -> bool:
    name = os.path.normcase(name)
    pat = os.path.normcase(pat)
    return fnmatchcase(name, pat)


def fnmatchcase(name: Text, pat: Text) -> bool:
    if '?' not in pat and '[' not in pat:
        wildcards = pat.count("*")
        if wildcards == 0:
            return name == pat
        elif wildcards == 1 and pat[0] == "*":
            return name.endswith(pat[1:])
        elif wildcards == 1 and pat[-1] == "*":
            return name.startswith(pat[:-1])
    return _stdlib_fnmatch.fnmatchcase(name, pat)


def filter(names: Iterable[Text], pat: Text) -> List[Text]:
    return [n for n in names if fnmatch(n, pat)]


translate = _stdlib_fnmatch.translate