Created
July 12, 2023 16:26
-
-
Save superm1/febc125a231e863966e3780bfa5776ab to your computer and use it in GitHub Desktop.
servo docker launcher
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Copyright 2022 The Chromium OS Authors. All rights reserved. | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
import docker | |
import logging | |
import argparse | |
IMAGE = "us-docker.pkg.dev/chromeos-hw-tools/servod/servod:release" | |
def setup(): | |
client = docker.from_env() | |
try: | |
client.images.pull(IMAGE) | |
except docker.errors.APIError: | |
logging.exception("Failed to pull image") | |
return client | |
def start_servod(client, dut_hostname, board, model, serial_no): | |
environment = [ | |
"BOARD=%s" % board, | |
"MODEL=%s" % model, | |
"SERIAL=%s" % serial_no, | |
"PORT=%s" % "9999", | |
] | |
name = "%s-docker_servod" % dut_hostname | |
logs_volume = "%s_log" % dut_hostname | |
command = ["bash", "/start_servod.sh"] | |
cont = client.containers.run( | |
IMAGE, | |
remove=True, | |
privileged=True, | |
name=name, | |
hostname=name, | |
cap_add=["NET_ADMIN"], | |
detach=True, | |
volumes=["/dev:/dev", "%s:/var/log/servod_9999/" % logs_volume], | |
environment=environment, | |
command=command, | |
) | |
log_lines = cont.logs(stream=True, follow=True) | |
started = False | |
while log_lines and not started: | |
cont.reload() | |
for line in log_lines: | |
print(line.decode("utf-8").strip()) | |
if b"servod - INFO - Listening on 0.0.0.0 port" in line: | |
started = True | |
logging.info("Detected servod has started.") | |
break | |
if cont.status == "removing": | |
break | |
if __name__ == "__main__": | |
parser = argparse.ArgumentParser(add_help=False) | |
parser.add_argument( | |
"-h", | |
"--hostname", | |
required=True, | |
type=str, | |
help="The IP or hostname of the DUT connected to servo.", | |
) | |
parser.add_argument( | |
"-b", "--board", required=True, type=str, help="The board of the DUT." | |
) | |
parser.add_argument( | |
"-m", "--model", required=True, type=str, help="The model of the DUT." | |
) | |
parser.add_argument( | |
"-s", | |
"--serial", | |
required=True, | |
type=str, | |
help="The serial number of the servo.", | |
) | |
args = parser.parse_args() | |
client = setup() | |
start_servod(client, args.hostname, args.board, args.model, args.serial) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment