|
| 1 | +"""Utils to work with lookout-sdk binary.""" |
| 2 | +import io |
| 3 | +import json |
| 4 | +import logging |
| 5 | +import os |
| 6 | +import pathlib |
| 7 | +import random |
| 8 | +from shutil import copyfileobj |
| 9 | +import socket |
| 10 | +import subprocess |
| 11 | +import sys |
| 12 | +import tarfile |
| 13 | +import tempfile |
| 14 | +from typing import Optional |
| 15 | +from urllib.error import HTTPError |
| 16 | +from urllib.request import urlopen |
| 17 | + |
| 18 | +from lookout.core.api.version import __version__ as binver |
| 19 | + |
| 20 | + |
| 21 | +class LookoutSDK: |
| 22 | + """ |
| 23 | + Wrapper class for `lookout-sdk` executable. |
| 24 | +
|
| 25 | + Allows you to query analyzers the same way lookout server do. |
| 26 | + About lookout-sdk read https://github.com/src-d/lookout-sdk |
| 27 | + """ |
| 28 | + |
| 29 | + _log = logging.getLogger("LookoutSDK") |
| 30 | + |
| 31 | + def __init__(self): |
| 32 | + """ |
| 33 | + Fetch lookout-sdk executable if it is missing. |
| 34 | + """ |
| 35 | + self._version = binver |
| 36 | + self._exefile = (pathlib.Path(tempfile.gettempdir()) / |
| 37 | + "lookout-sdk-ml" / ("lookout-sdk-%s" % self._version)) |
| 38 | + if not self._exefile.exists(): |
| 39 | + self.fetch() |
| 40 | + |
| 41 | + version = property(lambda self: self._version) |
| 42 | + |
| 43 | + def fetch(self): |
| 44 | + """ |
| 45 | + Download the lookout-sdk executable from GitHub Releases. |
| 46 | + """ |
| 47 | + self._exefile.parent.mkdir(exist_ok=True) |
| 48 | + platform = sys.platform |
| 49 | + try: |
| 50 | + buffer = io.BytesIO() |
| 51 | + with urlopen("https://github.com/src-d/lookout/releases/download/" |
| 52 | + "%s/lookout-sdk_%s_%s_amd64.tar.gz" % (binver, binver, platform), |
| 53 | + ) as response: |
| 54 | + copyfileobj(response, buffer) |
| 55 | + buffer.seek(0) |
| 56 | + with tarfile.open(fileobj=buffer, mode="r:gz") as tar, \ |
| 57 | + self._exefile.open("wb") as fout: |
| 58 | + copyfileobj(tar.extractfile("lookout-sdk_%s_amd64/lookout-sdk" % platform), fout) |
| 59 | + os.chmod(str(self._exefile), 0o775) |
| 60 | + except HTTPError as e: |
| 61 | + if e.code == 404: |
| 62 | + self._log.error("Release %s for %s platform is missing." % (binver, platform)) |
| 63 | + raise e from None |
| 64 | + except Exception as e: |
| 65 | + if self._exefile.exists(): |
| 66 | + os.remove(str(self._exefile)) |
| 67 | + raise e from None |
| 68 | + |
| 69 | + def push(self, fr: str, to: str, port: int, *, git_dir: str, bblfsh: Optional[str]=None, |
| 70 | + log_level: Optional[str]=None, config_json: Optional[dict]=None) \ |
| 71 | + -> subprocess.CompletedProcess: |
| 72 | + """ |
| 73 | + Provide a simple data server and triggers an analyzer push event. |
| 74 | +
|
| 75 | + :param fr: Corresponds to --from flag. |
| 76 | + :param to: Corresponds to --to flag. |
| 77 | + :param port: Running analyzer port on localhost. |
| 78 | + :param git_dir: Corresponds to --git-dir flag. |
| 79 | + :param log_level: Corresponds to --log-level flag. |
| 80 | + :param bblfsh: Corresponds to --bblfshd flag. |
| 81 | + :param config_json: Corresponds to --config-json flag. |
| 82 | + :return: CompletedProcess with return code. |
| 83 | + """ |
| 84 | + return self._run("push", fr, to, port, git_dir, bblfsh, log_level, config_json) |
| 85 | + |
| 86 | + def review(self, fr: str, to: str, port: int, *, git_dir: str, bblfsh: Optional[str]=None, |
| 87 | + log_level: Optional[str]=None, config_json: Optional[dict]=None) \ |
| 88 | + -> subprocess.CompletedProcess: |
| 89 | + """ |
| 90 | + Provide a simple data server and triggers an analyzer review event. |
| 91 | +
|
| 92 | + :param fr: Corresponds to --from flag. |
| 93 | + :param to: Corresponds to --to flag. |
| 94 | + :param port: Running analyzer port on localhost. |
| 95 | + :param git_dir: Corresponds to --git-dir flag. |
| 96 | + :param log_level: Corresponds to --log-level flag. |
| 97 | + :param bblfsh: Corresponds to --bblfshd flag. |
| 98 | + :param config_json: Corresponds to --config-json flag. |
| 99 | + :return: CompletedProcess with return code. |
| 100 | + """ |
| 101 | + return self._run("review", fr, to, port, git_dir, bblfsh, log_level, config_json) |
| 102 | + |
| 103 | + def _run(self, cmd: str, fr: str, to: str, port: int, git_dir: str, bblfsh: Optional[str], |
| 104 | + log_level: Optional[str], config_json: Optional[dict]) -> subprocess.CompletedProcess: |
| 105 | + """ |
| 106 | + Run lookout-sdk executable. If you do not have it please fetch first. |
| 107 | +
|
| 108 | + :param cmd: Sub-command to run. |
| 109 | + :param fr: Corresponds to --from flag. |
| 110 | + :param to: Corresponds to --to flag. |
| 111 | + :param port: Running analyzer port on localhost. |
| 112 | + :param git_dir: Corresponds to --git-dir flag. |
| 113 | + :param log_level: Corresponds to --log-level flag. |
| 114 | + :param bblfsh: Corresponds to --bblfshd flag. |
| 115 | + :param config_json: Corresponds to --config-json flag. |
| 116 | + :return: CompletedProcess with return code. |
| 117 | + """ |
| 118 | + command = [ |
| 119 | + str(self._exefile), cmd, "ipv4://localhost:%d" % port, |
| 120 | + "--from", fr, |
| 121 | + "--to", to, |
| 122 | + "--git-dir", git_dir, |
| 123 | + ] |
| 124 | + if log_level: |
| 125 | + command.extend(("--log-level", log_level)) |
| 126 | + if bblfsh: |
| 127 | + command.extend(("--bblfshd", "ipv4://" + bblfsh)) |
| 128 | + if config_json: |
| 129 | + command.extend(("--config-json", json.dumps(config_json))) |
| 130 | + return subprocess.run(command, stdout=sys.stdout, stderr=sys.stderr, check=True) |
| 131 | + |
| 132 | + |
| 133 | +def check_port_free(port: int) -> bool: |
| 134 | + """ |
| 135 | + Check if the port is not taken on localhost. |
| 136 | +
|
| 137 | + :param port: Port number. |
| 138 | + :return: True if available else False. |
| 139 | + """ |
| 140 | + s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
| 141 | + try: |
| 142 | + s.connect(("localhost", port)) |
| 143 | + return False |
| 144 | + except ConnectionRefusedError: |
| 145 | + return True |
| 146 | + finally: |
| 147 | + try: |
| 148 | + s.shutdown(socket.SHUT_RDWR) |
| 149 | + except OSError: |
| 150 | + pass |
| 151 | + s.close() |
| 152 | + |
| 153 | + |
| 154 | +def find_port(attempts: int = 100) -> int: |
| 155 | + """ |
| 156 | + Find a free port on localhost. |
| 157 | +
|
| 158 | + :param attempts: Number of random search attempts. |
| 159 | + :return: Found free port number. |
| 160 | + """ |
| 161 | + while True: |
| 162 | + attempts -= 1 |
| 163 | + if attempts == 0: |
| 164 | + raise ConnectionError("cannot find an open port") |
| 165 | + port = random.randint(1024, 32768) |
| 166 | + if check_port_free(port): |
| 167 | + return port |
0 commit comments