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 concurrent.futures import Executor, ProcessPoolExecutor
4 from datetime import datetime, timezone
5 from functools import partial
6 from multiprocessing import freeze_support
7 from typing import Set, Tuple
10 from aiohttp import web
12 from .middlewares import cors
13 except ImportError as ie:
15 f"aiohttp dependency is not installed: {ie}. "
16 + "Please re-install black with the '[d]' extra install "
17 + "to obtain aiohttp_cors: `pip install black[d]`"
23 from _black_version import version as __version__
24 from black.concurrency import maybe_install_uvloop
26 # This is used internally by tests to shut down the server prematurely
27 _stop_signal = asyncio.Event()
30 PROTOCOL_VERSION_HEADER = "X-Protocol-Version"
31 LINE_LENGTH_HEADER = "X-Line-Length"
32 PYTHON_VARIANT_HEADER = "X-Python-Variant"
33 SKIP_SOURCE_FIRST_LINE = "X-Skip-Source-First-Line"
34 SKIP_STRING_NORMALIZATION_HEADER = "X-Skip-String-Normalization"
35 SKIP_MAGIC_TRAILING_COMMA = "X-Skip-Magic-Trailing-Comma"
37 FAST_OR_SAFE_HEADER = "X-Fast-Or-Safe"
38 DIFF_HEADER = "X-Diff"
41 PROTOCOL_VERSION_HEADER,
43 PYTHON_VARIANT_HEADER,
44 SKIP_SOURCE_FIRST_LINE,
45 SKIP_STRING_NORMALIZATION_HEADER,
46 SKIP_MAGIC_TRAILING_COMMA,
53 BLACK_VERSION_HEADER = "X-Black-Version"
56 class InvalidVariantHeader(Exception):
60 @click.command(context_settings={"help_option_names": ["-h", "--help"]})
64 help="Address to bind the server to.",
69 "--bind-port", type=int, help="Port to listen on", default=45484, show_default=True
71 @click.version_option(version=black.__version__)
72 def main(bind_host: str, bind_port: int) -> None:
73 logging.basicConfig(level=logging.INFO)
75 ver = black.__version__
76 black.out(f"blackd version {ver} listening on {bind_host} port {bind_port}")
77 # TODO: aiohttp had an incorrect annotation for `print` argument,
78 # It'll be fixed once aiohttp releases that code
79 web.run_app(app, host=bind_host, port=bind_port, handle_signals=True, print=None) # type: ignore[arg-type]
82 def make_app() -> web.Application:
83 app = web.Application(
84 middlewares=[cors(allow_headers=(*BLACK_HEADERS, "Content-Type"))]
86 executor = ProcessPoolExecutor()
87 app.add_routes([web.post("/", partial(handle, executor=executor))])
91 async def handle(request: web.Request, executor: Executor) -> web.Response:
92 headers = {BLACK_VERSION_HEADER: __version__}
94 if request.headers.get(PROTOCOL_VERSION_HEADER, "1") != "1":
96 status=501, text="This server only supports protocol version 1"
100 request.headers.get(LINE_LENGTH_HEADER, black.DEFAULT_LINE_LENGTH)
103 return web.Response(status=400, text="Invalid line length header value")
105 if PYTHON_VARIANT_HEADER in request.headers:
106 value = request.headers[PYTHON_VARIANT_HEADER]
108 pyi, versions = parse_python_variant_header(value)
109 except InvalidVariantHeader as e:
112 text=f"Invalid value for {PYTHON_VARIANT_HEADER}: {e.args[0]}",
118 skip_string_normalization = bool(
119 request.headers.get(SKIP_STRING_NORMALIZATION_HEADER, False)
121 skip_magic_trailing_comma = bool(
122 request.headers.get(SKIP_MAGIC_TRAILING_COMMA, False)
124 skip_source_first_line = bool(
125 request.headers.get(SKIP_SOURCE_FIRST_LINE, False)
127 preview = bool(request.headers.get(PREVIEW, False))
129 if request.headers.get(FAST_OR_SAFE_HEADER, "safe") == "fast":
131 mode = black.FileMode(
132 target_versions=versions,
134 line_length=line_length,
135 skip_source_first_line=skip_source_first_line,
136 string_normalization=not skip_string_normalization,
137 magic_trailing_comma=not skip_magic_trailing_comma,
140 req_bytes = await request.content.read()
141 charset = request.charset if request.charset is not None else "utf8"
142 req_str = req_bytes.decode(charset)
143 then = datetime.now(timezone.utc)
146 if skip_source_first_line:
147 first_newline_position: int = req_str.find("\n") + 1
148 header = req_str[:first_newline_position]
149 req_str = req_str[first_newline_position:]
151 loop = asyncio.get_event_loop()
152 formatted_str = await loop.run_in_executor(
153 executor, partial(black.format_file_contents, req_str, fast=fast, mode=mode)
156 # Preserve CRLF line endings
157 nl = req_str.find("\n")
158 if nl > 0 and req_str[nl - 1] == "\r":
159 formatted_str = formatted_str.replace("\n", "\r\n")
160 # If, after swapping line endings, nothing changed, then say so
161 if formatted_str == req_str:
162 raise black.NothingChanged
164 # Put the source first line back
165 req_str = header + req_str
166 formatted_str = header + formatted_str
168 # Only output the diff in the HTTP response
169 only_diff = bool(request.headers.get(DIFF_HEADER, False))
171 now = datetime.now(timezone.utc)
172 src_name = f"In\t{then}"
173 dst_name = f"Out\t{now}"
174 loop = asyncio.get_event_loop()
175 formatted_str = await loop.run_in_executor(
177 partial(black.diff, req_str, formatted_str, src_name, dst_name),
181 content_type=request.content_type,
186 except black.NothingChanged:
187 return web.Response(status=204, headers=headers)
188 except black.InvalidInput as e:
189 return web.Response(status=400, headers=headers, text=str(e))
190 except Exception as e:
191 logging.exception("Exception during handling a request")
192 return web.Response(status=500, headers=headers, text=str(e))
195 def parse_python_variant_header(value: str) -> Tuple[bool, Set[black.TargetVersion]]:
200 for version in value.split(","):
201 if version.startswith("py"):
202 version = version[len("py") :]
204 major_str, *rest = version.split(".")
206 major_str = version[0]
207 rest = [version[1:]] if len(version) > 1 else []
209 major = int(major_str)
210 if major not in (2, 3):
211 raise InvalidVariantHeader("major version must be 2 or 3")
215 raise InvalidVariantHeader("Python 2 is not supported")
217 # Default to lowest supported minor version.
218 minor = 7 if major == 2 else 3
219 version_str = f"PY{major}{minor}"
220 if major == 3 and not hasattr(black.TargetVersion, version_str):
221 raise InvalidVariantHeader(f"3.{minor} is not supported")
222 versions.add(black.TargetVersion[version_str])
223 except (KeyError, ValueError):
224 raise InvalidVariantHeader("expected e.g. '3.7', 'py3.5'") from None
225 return False, versions
228 def patched_main() -> None:
229 maybe_install_uvloop()
234 if __name__ == "__main__":