Skip to content
Navigation Menu
{{ message }}
forked from cycodehq/cycode-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathignore_utils.py
More file actions
478 lines (391 loc) · 15.2 KB
/
Copy pathignore_utils.py
File metadata and controls
478 lines (391 loc) · 15.2 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
# Copyright (C) 2017 Jelmer Vernooij <jelmer@jelmer.uk>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Modified from https://github.com/jelmer/dulwich/blob/master/dulwich/ignore.py
# Copyright 2020 Ben Kehoe
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Modified from https://github.com/benkehoe/ignorelib/blob/main/ignorelib.py
"""Parsing of ignore files according to gitignore rules.
For details for the matching rules, see https://git-scm.com/docs/gitignore
"""
import contextlib
import os.path
import re
from collections.abc import Generator, Iterable
from os import PathLike
from typing import (
Any,
BinaryIO,
Optional,
Union,
)
def _translate_segment(segment: bytes) -> bytes: # noqa: C901
if segment == b'*':
return b'[^/]+'
res = b''
i, n = 0, len(segment)
while i < n:
c = segment[i : i + 1]
i = i + 1
if c == b'*':
res += b'[^/]*'
elif c == b'?':
res += b'[^/]'
elif c == b'\\':
res += re.escape(segment[i : i + 1])
i += 1
elif c == b'[':
j = i
if j < n and segment[j : j + 1] == b'!':
j = j + 1
if j < n and segment[j : j + 1] == b']':
j = j + 1
while j < n and segment[j : j + 1] != b']':
j = j + 1
if j >= n:
res += b'\\['
else:
stuff = segment[i:j].replace(b'\\', b'\\\\')
i = j + 1
if stuff.startswith(b'!'):
stuff = b'^' + stuff[1:]
elif stuff.startswith(b'^'):
stuff = b'\\' + stuff
res += b'[' + stuff + b']'
else:
res += re.escape(c)
return res
def translate(pat: bytes) -> bytes:
"""Translate a shell PATTERN to a regular expression.
There is no way to quote meta-characters.
Originally copied from fnmatch in Python 2.7, but modified for Dulwich
to cope with features in Git ignore patterns.
"""
res = b'(?ms)'
if b'/' not in pat[:-1]:
# If there's no slash, this is a filename-based match
res += b'(.*/)?'
if pat.startswith(b'**/'):
# Leading **/
pat = pat[2:]
res += b'(.*/)?'
if pat.startswith(b'/'):
pat = pat[1:]
for i, segment in enumerate(pat.split(b'/')):
if segment == b'**':
res += b'(/.*)?'
continue
res += (re.escape(b'/') if i > 0 else b'') + _translate_segment(segment)
if not pat.endswith(b'/'):
res += b'/?'
return res + b'\\Z'
def read_ignore_patterns(f: BinaryIO) -> Iterable[bytes]:
"""Read a git ignore file.
Args:
f: File-like object to read from
Returns: List of patterns
"""
for line in f:
line = line.rstrip(b'\r\n')
# Ignore blank lines, they're used for readability.
if not line.strip():
continue
if line.startswith(b'#'):
# Comment
continue
# Trailing spaces are ignored unless they are quoted with a backslash.
while line.endswith(b' ') and not line.endswith(b'\\ '):
line = line[:-1]
line = line.replace(b'\\ ', b' ')
yield line
def match_pattern(path: bytes, pattern: bytes, ignore_case: bool = False) -> bool:
"""Match a gitignore-style pattern against a path.
Args:
path: Path to match
pattern: Pattern to match
ignore_case: Whether to do case-sensitive matching
Returns:
bool indicating whether the pattern matched
"""
return Pattern(pattern, ignore_case).match(path)
class Pattern:
"""A single ignore pattern."""
def __init__(self, pattern: bytes, ignore_case: bool = False) -> None:
self.pattern = pattern
self.ignore_case = ignore_case
if pattern[0:1] == b'!':
self.is_exclude = False
pattern = pattern[1:]
else:
if pattern[0:1] == b'\\':
pattern = pattern[1:]
self.is_exclude = True
flags = 0
if self.ignore_case:
flags = re.IGNORECASE
self._re = re.compile(translate(pattern), flags)
def __bytes__(self) -> bytes:
return self.pattern
def __str__(self) -> str:
return os.fsdecode(self.pattern)
def __eq__(self, other: object) -> bool:
return isinstance(other, type(self)) and self.pattern == other.pattern and self.ignore_case == other.ignore_case
def __repr__(self) -> str:
return f'{type(self).__name__}({self.pattern!r}, {self.ignore_case!r})'
def match(self, path: bytes) -> bool:
"""Try to match a path against this ignore pattern.
Args:
path: Path to match (relative to ignore location)
Returns: boolean
"""
return bool(self._re.match(path))
class IgnoreFilter:
def __init__(
self,
patterns: Iterable[Union[str, bytes]],
ignore_case: bool = False,
path: Optional[Union[PathLike, str]] = None,
) -> None:
if hasattr(path, '__fspath__'):
path = path.__fspath__()
self._patterns = [] # type: List[Pattern]
self._ignore_case = ignore_case
self._path = path
for pattern in patterns:
self.append_pattern(pattern)
def to_dict(self) -> dict[str, Any]:
d = {
'patterns': [str(p) for p in self._patterns],
'ignore_case': self._ignore_case,
}
path = getattr(self, '_path', None)
if path:
d['path'] = path
return d
def append_pattern(self, pattern: Union[str, bytes]) -> None:
"""Add a pattern to the set."""
if isinstance(pattern, str):
pattern = bytes(pattern, 'utf-8')
self._patterns.append(Pattern(pattern, self._ignore_case))
def find_matching(self, path: Union[bytes, str]) -> Iterable[Pattern]:
"""Yield all matching patterns for path.
Args:
path: Path to match
Returns:
Iterator over iterators
"""
if not isinstance(path, bytes):
path = os.fsencode(path)
for pattern in self._patterns:
if pattern.match(path):
yield pattern
def is_ignored(self, path: Union[bytes, str]) -> Optional[bool]:
"""Check whether a path is ignored.
For directories, include a trailing slash.
Returns: status is None if file is not mentioned, True if it is
included, False if it is explicitly excluded.
"""
if hasattr(path, '__fspath__'):
path = path.__fspath__()
status = None
for pattern in self.find_matching(path):
status = pattern.is_exclude
return status
@classmethod
def from_path(cls, path: Union[PathLike, str], ignore_case: bool = False) -> 'IgnoreFilter':
if hasattr(path, '__fspath__'):
path = path.__fspath__()
with open(path, 'rb') as f:
return cls(read_ignore_patterns(f), ignore_case, path=path)
def __repr__(self) -> str:
path = getattr(self, '_path', None)
if path is not None:
return f'{type(self).__name__}.from_path({path!r})'
return f'<{type(self).__name__}>'
class IgnoreFilterManager:
"""Ignore file manager."""
def __init__(
self,
path: str,
global_filters: list[IgnoreFilter],
ignore_file_name: Optional[str] = None,
ignore_case: bool = False,
) -> None:
if hasattr(path, '__fspath__'):
path = path.__fspath__()
self._path_filters = {} # type: Dict[str, Optional[IgnoreFilter]]
self._top_path = path
self._global_filters = global_filters
self._ignore_file_name = ignore_file_name
if self._ignore_file_name is None:
self._ignore_file_name = '.gitignore'
self._ignore_case = ignore_case
def __repr__(self) -> str:
return f'{type(self).__name__}({self._top_path}, {self._global_filters!r}, {self._ignore_case!r})'
def to_dict(self, include_path_filters: bool = True) -> dict[str, Any]:
d = {
'path': self._top_path,
'global_filters': [f.to_dict() for f in self._global_filters],
'ignore_case': self._ignore_case,
}
if include_path_filters:
d['path_filters'] = {path: f.to_dict() for path, f in self._path_filters.items() if f is not None}
return d
@property
def path(self) -> str:
return self._top_path
@property
def ignore_file_name(self) -> Optional[str]:
return self._ignore_file_name
@property
def ignore_case(self) -> bool:
return self._ignore_case
def _load_path(self, path: str) -> Optional[IgnoreFilter]:
try:
return self._path_filters[path]
except KeyError:
pass
if not self._ignore_file_name:
self._path_filters[path] = None
else:
p = os.path.join(self._top_path, path, self._ignore_file_name)
try:
self._path_filters[path] = IgnoreFilter.from_path(p, self._ignore_case)
except OSError:
self._path_filters[path] = None
return self._path_filters[path]
def _find_matching(self, path: str) -> Iterable[Pattern]:
"""Find matching patterns for path.
Args:
path: Path to check
Returns:
Iterator over Pattern instances
"""
if os.path.isabs(path):
raise ValueError(f'{path} is an absolute path')
filters = [(0, f) for f in self._global_filters]
if os.path.sep != '/':
path = path.replace(os.path.sep, '/')
parts = path.split('/')
matches = []
for i in range(len(parts) + 1):
dirname = '/'.join(parts[:i])
for s, f in filters:
relpath = '/'.join(parts[s:i])
if i < len(parts):
# Paths leading up to the final part are all directories,
# so need a trailing slash.
relpath += '/'
matches += list(f.find_matching(relpath))
ignore_filter = self._load_path(dirname)
if ignore_filter is not None:
filters.insert(0, (i, ignore_filter))
return iter(matches)
def is_ignored(self, path: str) -> Optional[bool]:
"""Check whether a path is ignored.
Args:
path: Path to check, relative to the IgnoreFilterManager path
Returns:
True if the path matches an ignore pattern,
False if the path is explicitly not ignored,
or None if the file does not match any patterns.
"""
if hasattr(path, '__fspath__'):
path = path.__fspath__()
matches = list(self._find_matching(path))
if matches:
return matches[-1].is_exclude
return None
def walk_with_ignored(
self, **kwargs
) -> Generator[tuple[str, list[str], list[str], list[str], list[str]], None, None]:
"""Wrap os.walk() and also return lists of ignored directories and files.
Yields tuples: (dirpath, included_dirnames, included_filenames, ignored_dirnames, ignored_filenames)
"""
for dirpath, dirnames, filenames in os.walk(self.path, topdown=True, **kwargs):
rel_dirpath = '' if dirpath == self.path else os.path.relpath(dirpath, self.path)
original_dirnames = list(dirnames)
included_dirnames = []
ignored_dirnames = []
for d in original_dirnames:
if self.is_ignored(os.path.join(rel_dirpath, d)):
ignored_dirnames.append(d)
else:
included_dirnames.append(d)
# decrease recursion depth of os.walk() by ignoring subdirectories because of topdown=True
# slicing ([:]) is mandatory to change dict in-place!
dirnames[:] = included_dirnames
included_filenames = []
ignored_filenames = []
for f in filenames:
if self.is_ignored(os.path.join(rel_dirpath, f)):
ignored_filenames.append(f)
else:
included_filenames.append(f)
yield dirpath, dirnames, included_filenames, ignored_dirnames, ignored_filenames
@classmethod
def build(
cls,
path: str,
global_ignore_file_paths: Optional[Iterable[str]] = None,
global_patterns: Optional[Iterable[Union[str, bytes]]] = None,
ignore_file_name: Optional[str] = None,
ignore_case: bool = False,
) -> 'IgnoreFilterManager':
"""Create a IgnoreFilterManager from patterns and paths.
Args:
path: The root path for ignore checks.
global_ignore_file_paths: A list of file paths to load patterns from.
Relative paths are relative to the IgnoreFilterManager path, not
the current directory.
global_patterns: Global patterns to ignore.
ignore_file_name: The per-directory ignore file name.
ignore_case: Whether to ignore case in matching.
Returns:
A `IgnoreFilterManager` object
"""
if not global_ignore_file_paths:
global_ignore_file_paths = []
if not global_patterns:
global_patterns = []
global_ignore_file_paths.extend(
[
os.path.join('.git', 'info', 'exclude'), # relative to an input path, so within the repo
os.path.expanduser(os.path.join('~', '.config', 'git', 'ignore')), # absolute
]
)
if hasattr(path, '__fspath__'):
path = path.__fspath__()
global_filters = []
for p in global_ignore_file_paths:
if hasattr(p, '__fspath__'):
p = p.__fspath__()
p = os.path.expanduser(p)
if not os.path.isabs(p):
p = os.path.join(path, p)
with contextlib.suppress(IOError):
global_filters.append(IgnoreFilter.from_path(p))
if global_patterns:
global_filters.append(IgnoreFilter(global_patterns))
return cls(path, global_filters=global_filters, ignore_file_name=ignore_file_name, ignore_case=ignore_case)
You can’t perform that action at this time.
