All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
3 from asyncio.base_events import BaseEventLoop
4 from concurrent.futures import Executor, ProcessPoolExecutor
5 from functools import partial
8 from pathlib import Path
11 Dict, Generic, Iterable, Iterator, List, Optional, Set, Tuple, TypeVar, Union
14 from attr import attrib, dataclass, Factory
18 from blib2to3.pytree import Node, Leaf, type_repr
19 from blib2to3 import pygram, pytree
20 from blib2to3.pgen2 import driver, token
21 from blib2to3.pgen2.parse import ParseError
23 __version__ = "18.3a0"
24 DEFAULT_LINE_LENGTH = 88
26 syms = pygram.python_symbols
33 LN = Union[Leaf, Node]
34 out = partial(click.secho, bold=True, err=True)
35 err = partial(click.secho, fg='red', err=True)
38 class NothingChanged(UserWarning):
39 """Raised by `format_file` when the reformatted code is the same as source."""
42 class CannotSplit(Exception):
43 """A readable split that fits the allotted line length is impossible.
45 Raised by `left_hand_split()` and `right_hand_split()`.
54 default=DEFAULT_LINE_LENGTH,
55 help='How many character per line to allow.',
61 help='If --fast given, skip temporary sanity checks. [default: --safe]',
63 @click.version_option(version=__version__)
67 type=click.Path(exists=True, file_okay=True, dir_okay=True, readable=True),
70 def main(ctx: click.Context, line_length: int, fast: bool, src: List[str]) -> None:
71 """The uncompromising code formatter."""
72 sources: List[Path] = []
76 sources.extend(gen_python_files_in_dir(p))
78 # if a file was explicitly given, we don't care about its extension
81 err(f'invalid path: {s}')
84 elif len(sources) == 1:
88 changed = format_file_in_place(p, line_length=line_length, fast=fast)
89 report.done(p, changed)
90 except Exception as exc:
91 report.failed(p, str(exc))
92 ctx.exit(report.return_code)
94 loop = asyncio.get_event_loop()
95 executor = ProcessPoolExecutor(max_workers=os.cpu_count())
98 return_code = loop.run_until_complete(
99 schedule_formatting(sources, line_length, fast, loop, executor)
103 ctx.exit(return_code)
106 async def schedule_formatting(
114 src: loop.run_in_executor(
115 executor, format_file_in_place, src, line_length, fast
119 await asyncio.wait(tasks.values())
122 for src, task in tasks.items():
124 report.failed(src, 'timed out, cancelling')
126 cancelled.append(task)
127 elif task.exception():
128 report.failed(src, str(task.exception()))
130 report.done(src, task.result())
132 await asyncio.wait(cancelled, timeout=2)
133 out('All done! ✨ 🍰 ✨')
134 click.echo(str(report))
135 return report.return_code
138 def format_file_in_place(src: Path, line_length: int, fast: bool) -> bool:
139 """Format the file and rewrite if changed. Return True if changed."""
141 contents, encoding = format_file(src, line_length=line_length, fast=fast)
142 except NothingChanged:
145 with open(src, "w", encoding=encoding) as f:
151 src: Path, line_length: int, fast: bool
152 ) -> Tuple[FileContent, Encoding]:
153 """Reformats a file and returns its contents and encoding."""
154 with tokenize.open(src) as src_buffer:
155 src_contents = src_buffer.read()
156 if src_contents.strip() == '':
157 raise NothingChanged(src)
159 dst_contents = format_str(src_contents, line_length=line_length)
160 if src_contents == dst_contents:
161 raise NothingChanged(src)
164 assert_equivalent(src_contents, dst_contents)
165 assert_stable(src_contents, dst_contents, line_length=line_length)
166 return dst_contents, src_buffer.encoding
169 def format_str(src_contents: str, line_length: int) -> FileContent:
170 """Reformats a string and returns new contents."""
171 src_node = lib2to3_parse(src_contents)
173 comments: List[Line] = []
174 lines = LineGenerator()
175 elt = EmptyLineTracker()
178 for current_line in lines.visit(src_node):
179 for _ in range(after):
180 dst_contents += str(empty_line)
181 before, after = elt.maybe_empty_lines(current_line)
182 for _ in range(before):
183 dst_contents += str(empty_line)
184 if not current_line.is_comment:
185 for comment in comments:
186 dst_contents += str(comment)
188 for line in split_line(current_line, line_length=line_length):
189 dst_contents += str(line)
191 comments.append(current_line)
192 for comment in comments:
193 dst_contents += str(comment)
197 def lib2to3_parse(src_txt: str) -> Node:
198 """Given a string with source, return the lib2to3 Node."""
199 grammar = pygram.python_grammar_no_print_statement
200 drv = driver.Driver(grammar, pytree.convert)
201 if src_txt[-1] != '\n':
202 nl = '\r\n' if '\r\n' in src_txt[:1024] else '\n'
205 result = drv.parse_string(src_txt, True)
206 except ParseError as pe:
207 lineno, column = pe.context[1]
208 lines = src_txt.splitlines()
210 faulty_line = lines[lineno - 1]
212 faulty_line = "<line number missing in source>"
213 raise ValueError(f"Cannot parse: {lineno}:{column}: {faulty_line}") from None
215 if isinstance(result, Leaf):
216 result = Node(syms.file_input, [result])
220 def lib2to3_unparse(node: Node) -> str:
221 """Given a lib2to3 node, return its string representation."""
229 class Visitor(Generic[T]):
230 """Basic lib2to3 visitor that yields things on visiting."""
232 def visit(self, node: LN) -> Iterator[T]:
234 name = token.tok_name[node.type]
236 name = type_repr(node.type)
237 yield from getattr(self, f'visit_{name}', self.visit_default)(node)
239 def visit_default(self, node: LN) -> Iterator[T]:
240 if isinstance(node, Node):
241 for child in node.children:
242 yield from self.visit(child)
246 class DebugVisitor(Visitor[T]):
247 tree_depth: int = attrib(default=0)
249 def visit_default(self, node: LN) -> Iterator[T]:
250 indent = ' ' * (2 * self.tree_depth)
251 if isinstance(node, Node):
252 _type = type_repr(node.type)
253 out(f'{indent}{_type}', fg='yellow')
255 for child in node.children:
256 yield from self.visit(child)
259 out(f'{indent}/{_type}', fg='yellow', bold=False)
261 _type = token.tok_name.get(node.type, str(node.type))
262 out(f'{indent}{_type}', fg='blue', nl=False)
264 # We don't have to handle prefixes for `Node` objects since
265 # that delegates to the first child anyway.
266 out(f' {node.prefix!r}', fg='green', bold=False, nl=False)
267 out(f' {node.value!r}', fg='blue', bold=False)
270 KEYWORDS = set(keyword.kwlist)
271 WHITESPACE = {token.DEDENT, token.INDENT, token.NEWLINE}
272 FLOW_CONTROL = {'return', 'raise', 'break', 'continue'}
283 STANDALONE_COMMENT = 153
284 LOGIC_OPERATORS = {'and', 'or'}
307 COMPREHENSION_PRIORITY = 20
311 COMPARATOR_PRIORITY = 3
316 class BracketTracker:
317 depth: int = attrib(default=0)
318 bracket_match: Dict[Tuple[Depth, NodeType], Leaf] = attrib(default=Factory(dict))
319 delimiters: Dict[LeafID, Priority] = attrib(default=Factory(dict))
320 previous: Optional[Leaf] = attrib(default=None)
322 def mark(self, leaf: Leaf) -> None:
323 if leaf.type == token.COMMENT:
326 if leaf.type in CLOSING_BRACKETS:
328 opening_bracket = self.bracket_match.pop((self.depth, leaf.type))
329 leaf.opening_bracket = opening_bracket # type: ignore
330 leaf.bracket_depth = self.depth # type: ignore
332 delim = is_delimiter(leaf)
334 self.delimiters[id(leaf)] = delim
335 elif self.previous is not None:
336 if leaf.type == token.STRING and self.previous.type == token.STRING:
337 self.delimiters[id(self.previous)] = STRING_PRIORITY
339 leaf.type == token.NAME and
340 leaf.value == 'for' and
342 leaf.parent.type in {syms.comp_for, syms.old_comp_for}
344 self.delimiters[id(self.previous)] = COMPREHENSION_PRIORITY
346 leaf.type == token.NAME and
347 leaf.value == 'if' and
349 leaf.parent.type in {syms.comp_if, syms.old_comp_if}
351 self.delimiters[id(self.previous)] = COMPREHENSION_PRIORITY
352 if leaf.type in OPENING_BRACKETS:
353 self.bracket_match[self.depth, BRACKET[leaf.type]] = leaf
357 def any_open_brackets(self) -> bool:
358 """Returns True if there is an yet unmatched open bracket on the line."""
359 return bool(self.bracket_match)
361 def max_priority(self, exclude: Iterable[LeafID] = ()) -> int:
362 """Returns the highest priority of a delimiter found on the line.
364 Values are consistent with what `is_delimiter()` returns.
366 return max(v for k, v in self.delimiters.items() if k not in exclude)
371 depth: int = attrib(default=0)
372 leaves: List[Leaf] = attrib(default=Factory(list))
373 comments: Dict[LeafID, Leaf] = attrib(default=Factory(dict))
374 bracket_tracker: BracketTracker = attrib(default=Factory(BracketTracker))
375 inside_brackets: bool = attrib(default=False)
377 def append(self, leaf: Leaf, preformatted: bool = False) -> None:
378 has_value = leaf.value.strip()
382 if self.leaves and not preformatted:
383 # Note: at this point leaf.prefix should be empty except for
384 # imports, for which we only preserve newlines.
385 leaf.prefix += whitespace(leaf)
386 if self.inside_brackets or not preformatted:
387 self.bracket_tracker.mark(leaf)
388 self.maybe_remove_trailing_comma(leaf)
389 if self.maybe_adapt_standalone_comment(leaf):
392 if not self.append_comment(leaf):
393 self.leaves.append(leaf)
396 def is_comment(self) -> bool:
397 return bool(self) and self.leaves[0].type == STANDALONE_COMMENT
400 def is_decorator(self) -> bool:
401 return bool(self) and self.leaves[0].type == token.AT
404 def is_import(self) -> bool:
405 return bool(self) and is_import(self.leaves[0])
408 def is_class(self) -> bool:
411 self.leaves[0].type == token.NAME and
412 self.leaves[0].value == 'class'
416 def is_def(self) -> bool:
417 """Also returns True for async defs."""
419 first_leaf = self.leaves[0]
424 second_leaf: Optional[Leaf] = self.leaves[1]
428 (first_leaf.type == token.NAME and first_leaf.value == 'def') or
430 first_leaf.type == token.NAME and
431 first_leaf.value == 'async' and
432 second_leaf is not None and
433 second_leaf.type == token.NAME and
434 second_leaf.value == 'def'
439 def is_flow_control(self) -> bool:
442 self.leaves[0].type == token.NAME and
443 self.leaves[0].value in FLOW_CONTROL
447 def is_yield(self) -> bool:
450 self.leaves[0].type == token.NAME and
451 self.leaves[0].value == 'yield'
454 def maybe_remove_trailing_comma(self, closing: Leaf) -> bool:
457 self.leaves[-1].type == token.COMMA and
458 closing.type in CLOSING_BRACKETS
462 if closing.type == token.RSQB or closing.type == token.RBRACE:
466 # For parens let's check if it's safe to remove the comma. If the
467 # trailing one is the only one, we might mistakenly change a tuple
468 # into a different type by removing the comma.
469 depth = closing.bracket_depth + 1 # type: ignore
471 opening = closing.opening_bracket # type: ignore
472 for _opening_index, leaf in enumerate(self.leaves):
479 for leaf in self.leaves[_opening_index + 1:]:
483 bracket_depth = leaf.bracket_depth # type: ignore
484 if bracket_depth == depth and leaf.type == token.COMMA:
492 def maybe_adapt_standalone_comment(self, comment: Leaf) -> bool:
493 """Hack a standalone comment to act as a trailing comment for line splitting.
495 If this line has brackets and a standalone `comment`, we need to adapt
496 it to be able to still reformat the line.
498 This is not perfect, the line to which the standalone comment gets
499 appended will appear "too long" when splitting.
502 comment.type == STANDALONE_COMMENT and
503 self.bracket_tracker.any_open_brackets()
507 comment.type = token.COMMENT
508 comment.prefix = '\n' + ' ' * (self.depth + 1)
509 return self.append_comment(comment)
511 def append_comment(self, comment: Leaf) -> bool:
512 if comment.type != token.COMMENT:
516 after = id(self.last_non_delimiter())
518 comment.type = STANDALONE_COMMENT
523 if after in self.comments:
524 self.comments[after].value += str(comment)
526 self.comments[after] = comment
529 def last_non_delimiter(self) -> Leaf:
530 for i in range(len(self.leaves)):
531 last = self.leaves[-i - 1]
532 if not is_delimiter(last):
535 raise LookupError("No non-delimiters found")
537 def __str__(self) -> str:
541 indent = ' ' * self.depth
542 leaves = iter(self.leaves)
544 res = f'{first.prefix}{indent}{first.value}'
547 for comment in self.comments.values():
551 def __bool__(self) -> bool:
552 return bool(self.leaves or self.comments)
556 class EmptyLineTracker:
557 """Provides a stateful method that returns the number of potential extra
558 empty lines needed before and after the currently processed line.
560 Note: this tracker works on lines that haven't been split yet.
562 previous_line: Optional[Line] = attrib(default=None)
563 previous_after: int = attrib(default=0)
564 previous_defs: List[int] = attrib(default=Factory(list))
566 def maybe_empty_lines(self, current_line: Line) -> Tuple[int, int]:
567 """Returns the number of extra empty lines before and after the `current_line`.
569 This is for separating `def`, `async def` and `class` with extra empty lines
570 (two on module-level), as well as providing an extra empty line after flow
571 control keywords to make them more prominent.
573 before, after = self._maybe_empty_lines(current_line)
574 self.previous_after = after
575 self.previous_line = current_line
578 def _maybe_empty_lines(self, current_line: Line) -> Tuple[int, int]:
580 depth = current_line.depth
581 while self.previous_defs and self.previous_defs[-1] >= depth:
582 self.previous_defs.pop()
583 before = (1 if depth else 2) - self.previous_after
584 is_decorator = current_line.is_decorator
585 if is_decorator or current_line.is_def or current_line.is_class:
587 self.previous_defs.append(depth)
588 if self.previous_line is None:
589 # Don't insert empty lines before the first line in the file.
592 if self.previous_line and self.previous_line.is_decorator:
593 # Don't insert empty lines between decorators.
597 if current_line.depth:
599 newlines -= self.previous_after
602 if current_line.is_flow_control:
606 self.previous_line and
607 self.previous_line.is_import and
608 not current_line.is_import and
609 depth == self.previous_line.depth
611 return (before or 1), 0
614 self.previous_line and
615 self.previous_line.is_yield and
616 (not current_line.is_yield or depth != self.previous_line.depth)
618 return (before or 1), 0
624 class LineGenerator(Visitor[Line]):
625 """Generates reformatted Line objects. Empty lines are not emitted.
627 Note: destroys the tree it's visiting by mutating prefixes of its leaves
628 in ways that will no longer stringify to valid Python code on the tree.
630 current_line: Line = attrib(default=Factory(Line))
631 standalone_comments: List[Leaf] = attrib(default=Factory(list))
633 def line(self, indent: int = 0) -> Iterator[Line]:
636 If the line is empty, only emit if it makes sense.
637 If the line is too long, split it first and then generate.
639 If any lines were generated, set up a new current_line.
641 if not self.current_line:
642 self.current_line.depth += indent
643 return # Line is empty, don't emit. Creating a new one unnecessary.
645 complete_line = self.current_line
646 self.current_line = Line(depth=complete_line.depth + indent)
649 def visit_default(self, node: LN) -> Iterator[Line]:
650 if isinstance(node, Leaf):
651 for comment in generate_comments(node):
652 if self.current_line.bracket_tracker.any_open_brackets():
653 # any comment within brackets is subject to splitting
654 self.current_line.append(comment)
655 elif comment.type == token.COMMENT:
656 # regular trailing comment
657 self.current_line.append(comment)
658 yield from self.line()
661 # regular standalone comment, to be processed later (see
662 # docstring in `generate_comments()`
663 self.standalone_comments.append(comment)
664 normalize_prefix(node)
665 if node.type not in WHITESPACE:
666 for comment in self.standalone_comments:
667 yield from self.line()
669 self.current_line.append(comment)
670 yield from self.line()
672 self.standalone_comments = []
673 self.current_line.append(node)
674 yield from super().visit_default(node)
676 def visit_suite(self, node: Node) -> Iterator[Line]:
677 """Body of a statement after a colon."""
678 children = iter(node.children)
679 # Process newline before indenting. It might contain an inline
680 # comment that should go right after the colon.
681 newline = next(children)
682 yield from self.visit(newline)
683 yield from self.line(+1)
685 for child in children:
686 yield from self.visit(child)
688 yield from self.line(-1)
690 def visit_stmt(self, node: Node, keywords: Set[str]) -> Iterator[Line]:
691 """Visit a statement.
693 The relevant Python language keywords for this statement are NAME leaves
696 for child in node.children:
697 if child.type == token.NAME and child.value in keywords: # type: ignore
698 yield from self.line()
700 yield from self.visit(child)
702 def visit_simple_stmt(self, node: Node) -> Iterator[Line]:
703 """A statement without nested statements."""
704 is_suite_like = node.parent and node.parent.type in STATEMENT
706 yield from self.line(+1)
707 yield from self.visit_default(node)
708 yield from self.line(-1)
711 yield from self.line()
712 yield from self.visit_default(node)
714 def visit_async_stmt(self, node: Node) -> Iterator[Line]:
715 yield from self.line()
717 children = iter(node.children)
718 for child in children:
719 yield from self.visit(child)
721 if child.type == token.NAME and child.value == 'async': # type: ignore
724 internal_stmt = next(children)
725 for child in internal_stmt.children:
726 yield from self.visit(child)
728 def visit_decorators(self, node: Node) -> Iterator[Line]:
729 for child in node.children:
730 yield from self.line()
731 yield from self.visit(child)
733 def visit_SEMI(self, leaf: Leaf) -> Iterator[Line]:
734 yield from self.line()
736 def visit_ENDMARKER(self, leaf: Leaf) -> Iterator[Line]:
737 yield from self.visit_default(leaf)
738 yield from self.line()
740 def __attrs_post_init__(self) -> None:
741 """You are in a twisty little maze of passages."""
743 self.visit_if_stmt = partial(v, keywords={'if', 'else', 'elif'})
744 self.visit_while_stmt = partial(v, keywords={'while', 'else'})
745 self.visit_for_stmt = partial(v, keywords={'for', 'else'})
746 self.visit_try_stmt = partial(v, keywords={'try', 'except', 'else', 'finally'})
747 self.visit_except_clause = partial(v, keywords={'except'})
748 self.visit_funcdef = partial(v, keywords={'def'})
749 self.visit_with_stmt = partial(v, keywords={'with'})
750 self.visit_classdef = partial(v, keywords={'class'})
751 self.visit_async_funcdef = self.visit_async_stmt
752 self.visit_decorated = self.visit_decorators
755 BRACKET = {token.LPAR: token.RPAR, token.LSQB: token.RSQB, token.LBRACE: token.RBRACE}
756 OPENING_BRACKETS = set(BRACKET.keys())
757 CLOSING_BRACKETS = set(BRACKET.values())
758 BRACKETS = OPENING_BRACKETS | CLOSING_BRACKETS
761 def whitespace(leaf: Leaf) -> str:
762 """Return whitespace prefix if needed for the given `leaf`."""
777 if t == token.COMMENT:
780 if t == STANDALONE_COMMENT:
783 assert p is not None, f"INTERNAL ERROR: hand-made leaf without parent: {leaf!r}"
784 if p.type in {syms.parameters, syms.arglist}:
785 # untyped function signatures or calls
789 prev = leaf.prev_sibling
790 if not prev or prev.type != token.COMMA:
793 if p.type == syms.varargslist:
798 prev = leaf.prev_sibling
799 if prev and prev.type != token.COMMA:
802 elif p.type == syms.typedargslist:
803 # typed function signatures
804 prev = leaf.prev_sibling
809 if prev.type != syms.tname:
812 elif prev.type == token.EQUAL:
813 # A bit hacky: if the equal sign has whitespace, it means we
814 # previously found it's a typed argument. So, we're using that, too.
817 elif prev.type != token.COMMA:
820 elif p.type == syms.tname:
822 prev = leaf.prev_sibling
824 prevp = preceding_leaf(p)
825 if not prevp or prevp.type != token.COMMA:
828 elif p.type == syms.trailer:
829 # attributes and calls
830 if t == token.LPAR or t == token.RPAR:
833 prev = leaf.prev_sibling
836 prevp = preceding_leaf(p)
837 if not prevp or prevp.type != token.NUMBER:
840 elif t == token.LSQB:
843 elif prev.type != token.COMMA:
846 elif p.type == syms.argument:
851 prev = leaf.prev_sibling
853 prevp = preceding_leaf(p)
854 if not prevp or prevp.type == token.LPAR:
857 elif prev.type == token.EQUAL or prev.type == token.DOUBLESTAR:
860 elif p.type == syms.decorator:
864 elif p.type == syms.dotted_name:
865 prev = leaf.prev_sibling
869 prevp = preceding_leaf(p)
870 if not prevp or prevp.type == token.AT:
873 elif p.type == syms.classdef:
877 prev = leaf.prev_sibling
878 if prev and prev.type == token.LPAR:
881 elif p.type == syms.subscript:
886 prev = leaf.prev_sibling
887 if not prev or prev.type == token.COLON:
903 # various arithmetic and logic expressions
904 prev = leaf.prev_sibling
906 prevp = preceding_leaf(p)
907 if not prevp or prevp.type in OPENING_BRACKETS:
910 if prevp.type == token.EQUAL:
911 if prevp.parent and prevp.parent.type in {
912 syms.varargslist, syms.parameters, syms.arglist, syms.argument
918 elif p.type == syms.atom:
919 if t in CLOSING_BRACKETS:
922 prev = leaf.prev_sibling
924 prevp = preceding_leaf(p)
928 if prevp.type in OPENING_BRACKETS:
931 if prevp.type == token.EQUAL:
932 if prevp.parent and prevp.parent.type in {
933 syms.varargslist, syms.parameters, syms.arglist, syms.argument
937 if prevp.type == token.DOUBLESTAR:
938 if prevp.parent and prevp.parent.type in {
939 syms.varargslist, syms.parameters, syms.arglist, syms.dictsetmaker
943 elif prev.type in OPENING_BRACKETS:
947 # dots, but not the first one.
951 p.type == syms.listmaker or
952 p.type == syms.testlist_gexp or
953 p.type == syms.subscriptlist
955 # list interior, including unpacking
956 prev = leaf.prev_sibling
960 elif p.type == syms.dictsetmaker:
961 # dict and set interior, including unpacking
962 prev = leaf.prev_sibling
966 if prev.type == token.DOUBLESTAR:
969 elif p.type == syms.factor or p.type == syms.star_expr:
971 prev = leaf.prev_sibling
973 prevp = preceding_leaf(p)
974 if not prevp or prevp.type in OPENING_BRACKETS:
977 prevp_parent = prevp.parent
978 assert prevp_parent is not None
979 if prevp.type == token.COLON and prevp_parent.type in {
980 syms.subscript, syms.sliceop
984 elif prevp.type == token.EQUAL and prevp_parent.type == syms.argument:
987 elif t == token.NAME or t == token.NUMBER:
990 elif p.type == syms.import_from and t == token.NAME:
991 prev = leaf.prev_sibling
992 if prev and prev.type == token.DOT:
995 elif p.type == syms.sliceop:
1001 def preceding_leaf(node: Optional[LN]) -> Optional[Leaf]:
1002 """Returns the first leaf that precedes `node`, if any."""
1004 res = node.prev_sibling
1006 if isinstance(res, Leaf):
1010 return list(res.leaves())[-1]
1019 def is_delimiter(leaf: Leaf) -> int:
1020 """Returns the priority of the `leaf` delimiter. Returns 0 if not delimiter.
1022 Higher numbers are higher priority.
1024 if leaf.type == token.COMMA:
1025 return COMMA_PRIORITY
1027 if leaf.type == token.NAME and leaf.value in LOGIC_OPERATORS:
1028 return LOGIC_PRIORITY
1030 if leaf.type in COMPARATORS:
1031 return COMPARATOR_PRIORITY
1034 leaf.type in MATH_OPERATORS and
1036 leaf.parent.type not in {syms.factor, syms.star_expr}
1038 return MATH_PRIORITY
1043 def generate_comments(leaf: Leaf) -> Iterator[Leaf]:
1044 """Cleans the prefix of the `leaf` and generates comments from it, if any.
1046 Comments in lib2to3 are shoved into the whitespace prefix. This happens
1047 in `pgen2/driver.py:Driver.parse_tokens()`. This was a brilliant implementation
1048 move because it does away with modifying the grammar to include all the
1049 possible places in which comments can be placed.
1051 The sad consequence for us though is that comments don't "belong" anywhere.
1052 This is why this function generates simple parentless Leaf objects for
1053 comments. We simply don't know what the correct parent should be.
1055 No matter though, we can live without this. We really only need to
1056 differentiate between inline and standalone comments. The latter don't
1057 share the line with any code.
1059 Inline comments are emitted as regular token.COMMENT leaves. Standalone
1060 are emitted with a fake STANDALONE_COMMENT token identifier.
1065 if '#' not in leaf.prefix:
1068 before_comment, content = leaf.prefix.split('#', 1)
1069 content = content.rstrip()
1070 if content and (content[0] not in {' ', '!', '#'}):
1071 content = ' ' + content
1072 is_standalone_comment = (
1073 '\n' in before_comment or '\n' in content or leaf.type == token.DEDENT
1075 if not is_standalone_comment:
1076 # simple trailing comment
1077 yield Leaf(token.COMMENT, value='#' + content)
1080 for line in ('#' + content).split('\n'):
1081 line = line.lstrip()
1082 if not line.startswith('#'):
1085 yield Leaf(STANDALONE_COMMENT, line)
1088 def split_line(line: Line, line_length: int, inner: bool = False) -> Iterator[Line]:
1089 """Splits a `line` into potentially many lines.
1091 They should fit in the allotted `line_length` but might not be able to.
1092 `inner` signifies that there were a pair of brackets somewhere around the
1093 current `line`, possibly transitively. This means we can fallback to splitting
1094 by delimiters if the LHS/RHS don't yield any results.
1096 line_str = str(line).strip('\n')
1097 if len(line_str) <= line_length and '\n' not in line_str:
1102 split_funcs = [left_hand_split]
1103 elif line.inside_brackets:
1104 split_funcs = [delimiter_split]
1105 if '\n' not in line_str:
1106 # Only attempt RHS if we don't have multiline strings or comments
1108 split_funcs.append(right_hand_split)
1110 split_funcs = [right_hand_split]
1111 for split_func in split_funcs:
1112 # We are accumulating lines in `result` because we might want to abort
1113 # mission and return the original line in the end, or attempt a different
1115 result: List[Line] = []
1117 for l in split_func(line):
1118 if str(l).strip('\n') == line_str:
1119 raise CannotSplit("Split function returned an unchanged result")
1121 result.extend(split_line(l, line_length=line_length, inner=True))
1122 except CannotSplit as cs:
1133 def left_hand_split(line: Line) -> Iterator[Line]:
1134 """Split line into many lines, starting with the first matching bracket pair.
1136 Note: this usually looks weird, only use this for function definitions.
1137 Prefer RHS otherwise.
1139 head = Line(depth=line.depth)
1140 body = Line(depth=line.depth + 1, inside_brackets=True)
1141 tail = Line(depth=line.depth)
1142 tail_leaves: List[Leaf] = []
1143 body_leaves: List[Leaf] = []
1144 head_leaves: List[Leaf] = []
1145 current_leaves = head_leaves
1146 matching_bracket = None
1147 for leaf in line.leaves:
1149 current_leaves is body_leaves and
1150 leaf.type in CLOSING_BRACKETS and
1151 leaf.opening_bracket is matching_bracket # type: ignore
1153 current_leaves = tail_leaves
1154 current_leaves.append(leaf)
1155 if current_leaves is head_leaves:
1156 if leaf.type in OPENING_BRACKETS:
1157 matching_bracket = leaf
1158 current_leaves = body_leaves
1159 # Since body is a new indent level, remove spurious leading whitespace.
1161 normalize_prefix(body_leaves[0])
1162 # Build the new lines.
1163 for result, leaves in (
1164 (head, head_leaves), (body, body_leaves), (tail, tail_leaves)
1167 result.append(leaf, preformatted=True)
1168 comment_after = line.comments.get(id(leaf))
1170 result.append(comment_after, preformatted=True)
1171 # Check if the split succeeded.
1172 tail_len = len(str(tail))
1175 raise CannotSplit("Splitting brackets produced the same line")
1179 f"Splitting brackets on an empty body to save "
1180 f"{tail_len} characters is not worth it"
1183 for result in (head, body, tail):
1188 def right_hand_split(line: Line) -> Iterator[Line]:
1189 """Split line into many lines, starting with the last matching bracket pair."""
1190 head = Line(depth=line.depth)
1191 body = Line(depth=line.depth + 1, inside_brackets=True)
1192 tail = Line(depth=line.depth)
1193 tail_leaves: List[Leaf] = []
1194 body_leaves: List[Leaf] = []
1195 head_leaves: List[Leaf] = []
1196 current_leaves = tail_leaves
1197 opening_bracket = None
1198 for leaf in reversed(line.leaves):
1199 if current_leaves is body_leaves:
1200 if leaf is opening_bracket:
1201 current_leaves = head_leaves
1202 current_leaves.append(leaf)
1203 if current_leaves is tail_leaves:
1204 if leaf.type in CLOSING_BRACKETS:
1205 opening_bracket = leaf.opening_bracket # type: ignore
1206 current_leaves = body_leaves
1207 tail_leaves.reverse()
1208 body_leaves.reverse()
1209 head_leaves.reverse()
1210 # Since body is a new indent level, remove spurious leading whitespace.
1212 normalize_prefix(body_leaves[0])
1213 # Build the new lines.
1214 for result, leaves in (
1215 (head, head_leaves), (body, body_leaves), (tail, tail_leaves)
1218 result.append(leaf, preformatted=True)
1219 comment_after = line.comments.get(id(leaf))
1221 result.append(comment_after, preformatted=True)
1222 # Check if the split succeeded.
1223 tail_len = len(str(tail).strip('\n'))
1226 raise CannotSplit("Splitting brackets produced the same line")
1230 f"Splitting brackets on an empty body to save "
1231 f"{tail_len} characters is not worth it"
1234 for result in (head, body, tail):
1239 def delimiter_split(line: Line) -> Iterator[Line]:
1240 """Split according to delimiters of the highest priority.
1242 This kind of split doesn't increase indentation.
1245 last_leaf = line.leaves[-1]
1247 raise CannotSplit("Line empty")
1249 delimiters = line.bracket_tracker.delimiters
1251 delimiter_priority = line.bracket_tracker.max_priority(exclude={id(last_leaf)})
1253 raise CannotSplit("No delimiters found")
1255 current_line = Line(depth=line.depth, inside_brackets=line.inside_brackets)
1256 for leaf in line.leaves:
1257 current_line.append(leaf, preformatted=True)
1258 comment_after = line.comments.get(id(leaf))
1260 current_line.append(comment_after, preformatted=True)
1261 leaf_priority = delimiters.get(id(leaf))
1262 if leaf_priority == delimiter_priority:
1263 normalize_prefix(current_line.leaves[0])
1266 current_line = Line(depth=line.depth, inside_brackets=line.inside_brackets)
1269 delimiter_priority == COMMA_PRIORITY and
1270 current_line.leaves[-1].type != token.COMMA
1272 current_line.append(Leaf(token.COMMA, ','))
1273 normalize_prefix(current_line.leaves[0])
1277 def is_import(leaf: Leaf) -> bool:
1278 """Returns True if the given leaf starts an import statement."""
1285 (v == 'import' and p and p.type == syms.import_name) or
1286 (v == 'from' and p and p.type == syms.import_from)
1291 def normalize_prefix(leaf: Leaf) -> None:
1292 """Leave existing extra newlines for imports. Remove everything else."""
1294 spl = leaf.prefix.split('#', 1)
1295 nl_count = spl[0].count('\n')
1297 # Skip one newline since it was for a standalone comment.
1299 leaf.prefix = '\n' * nl_count
1305 PYTHON_EXTENSIONS = {'.py'}
1306 BLACKLISTED_DIRECTORIES = {
1307 'build', 'buck-out', 'dist', '_build', '.git', '.hg', '.mypy_cache', '.tox', '.venv'
1311 def gen_python_files_in_dir(path: Path) -> Iterator[Path]:
1312 for child in path.iterdir():
1314 if child.name in BLACKLISTED_DIRECTORIES:
1317 yield from gen_python_files_in_dir(child)
1319 elif child.suffix in PYTHON_EXTENSIONS:
1325 """Provides a reformatting counter."""
1326 change_count: int = attrib(default=0)
1327 same_count: int = attrib(default=0)
1328 failure_count: int = attrib(default=0)
1330 def done(self, src: Path, changed: bool) -> None:
1331 """Increment the counter for successful reformatting. Write out a message."""
1333 out(f'reformatted {src}')
1334 self.change_count += 1
1336 out(f'{src} already well formatted, good job.', bold=False)
1337 self.same_count += 1
1339 def failed(self, src: Path, message: str) -> None:
1340 """Increment the counter for failed reformatting. Write out a message."""
1341 err(f'error: cannot format {src}: {message}')
1342 self.failure_count += 1
1345 def return_code(self) -> int:
1346 """Which return code should the app use considering the current state."""
1347 return 1 if self.failure_count else 0
1349 def __str__(self) -> str:
1350 """A color report of the current state.
1352 Use `click.unstyle` to remove colors.
1355 if self.change_count:
1356 s = 's' if self.change_count > 1 else ''
1358 click.style(f'{self.change_count} file{s} reformatted', bold=True)
1361 s = 's' if self.same_count > 1 else ''
1362 report.append(f'{self.same_count} file{s} left unchanged')
1363 if self.failure_count:
1364 s = 's' if self.failure_count > 1 else ''
1367 f'{self.failure_count} file{s} failed to reformat', fg='red'
1370 return ', '.join(report) + '.'
1373 def assert_equivalent(src: str, dst: str) -> None:
1374 """Raises AssertionError if `src` and `dst` aren't equivalent.
1376 This is a temporary sanity check until Black becomes stable.
1382 def _v(node: ast.AST, depth: int = 0) -> Iterator[str]:
1383 """Simple visitor generating strings to compare ASTs by content."""
1384 yield f"{' ' * depth}{node.__class__.__name__}("
1386 for field in sorted(node._fields):
1388 value = getattr(node, field)
1389 except AttributeError:
1392 yield f"{' ' * (depth+1)}{field}="
1394 if isinstance(value, list):
1396 if isinstance(item, ast.AST):
1397 yield from _v(item, depth + 2)
1399 elif isinstance(value, ast.AST):
1400 yield from _v(value, depth + 2)
1403 yield f"{' ' * (depth+2)}{value!r}, # {value.__class__.__name__}"
1405 yield f"{' ' * depth}) # /{node.__class__.__name__}"
1408 src_ast = ast.parse(src)
1409 except Exception as exc:
1410 raise AssertionError(f"cannot parse source: {exc}") from None
1413 dst_ast = ast.parse(dst)
1414 except Exception as exc:
1415 log = dump_to_file(''.join(traceback.format_tb(exc.__traceback__)), dst)
1416 raise AssertionError(
1417 f"INTERNAL ERROR: Black produced invalid code: {exc}. "
1418 f"Please report a bug on https://github.com/ambv/black/issues. "
1419 f"This invalid output might be helpful: {log}",
1422 src_ast_str = '\n'.join(_v(src_ast))
1423 dst_ast_str = '\n'.join(_v(dst_ast))
1424 if src_ast_str != dst_ast_str:
1425 log = dump_to_file(diff(src_ast_str, dst_ast_str, 'src', 'dst'))
1426 raise AssertionError(
1427 f"INTERNAL ERROR: Black produced code that is not equivalent to "
1429 f"Please report a bug on https://github.com/ambv/black/issues. "
1430 f"This diff might be helpful: {log}",
1434 def assert_stable(src: str, dst: str, line_length: int) -> None:
1435 """Raises AssertionError if `dst` reformats differently the second time.
1437 This is a temporary sanity check until Black becomes stable.
1439 newdst = format_str(dst, line_length=line_length)
1442 diff(src, dst, 'source', 'first pass'),
1443 diff(dst, newdst, 'first pass', 'second pass'),
1445 raise AssertionError(
1446 f"INTERNAL ERROR: Black produced different code on the second pass "
1447 f"of the formatter. "
1448 f"Please report a bug on https://github.com/ambv/black/issues. "
1449 f"This diff might be helpful: {log}",
1453 def dump_to_file(*output: str) -> str:
1454 """Dumps `output` to a temporary file. Returns path to the file."""
1457 with tempfile.NamedTemporaryFile(
1458 mode='w', prefix='blk_', suffix='.log', delete=False
1460 for lines in output:
1466 def diff(a: str, b: str, a_name: str, b_name: str) -> str:
1467 """Returns a udiff string between strings `a` and `b`."""
1470 a_lines = [line + '\n' for line in a.split('\n')]
1471 b_lines = [line + '\n' for line in b.split('\n')]
1473 difflib.unified_diff(a_lines, b_lines, fromfile=a_name, tofile=b_name, n=5)
1477 if __name__ == '__main__':