Skip to content

Commit 1ce7013

Browse files
committed
[libc++] Simplify ssh.py by not passing args everywhere
1 parent 2d14317 commit 1ce7013

File tree

1 file changed

+17
-23
lines changed

1 file changed

+17
-23
lines changed

libcxx/utils/ssh.py

+17-23
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,6 @@
2323
import tarfile
2424
import tempfile
2525

26-
from shlex import quote as cmd_quote
27-
28-
29-
def ssh(args, command):
30-
cmd = ["ssh", "-oBatchMode=yes"]
31-
if args.extra_ssh_args is not None:
32-
cmd.extend(shlex.split(args.extra_ssh_args))
33-
return cmd + [args.host, command]
34-
35-
36-
def scp(args, src, dst):
37-
cmd = ["scp", "-q", "-oBatchMode=yes"]
38-
if args.extra_scp_args is not None:
39-
cmd.extend(shlex.split(args.extra_scp_args))
40-
return cmd + [src, "{}:{}".format(args.host, dst)]
41-
42-
def runCommand(command, *args, **kwargs):
43-
return subprocess.run(command, *args, **kwargs)
4426

4527
def main():
4628
parser = argparse.ArgumentParser()
@@ -57,6 +39,18 @@ def main():
5739
args = parser.parse_args()
5840
commandLine = args.command
5941

42+
def ssh(command):
43+
cmd = ["ssh", "-oBatchMode=yes"]
44+
if args.extra_ssh_args is not None:
45+
cmd.extend(shlex.split(args.extra_ssh_args))
46+
return cmd + [args.host, command]
47+
48+
def scp(src, dst):
49+
cmd = ["scp", "-q", "-oBatchMode=yes"]
50+
if args.extra_scp_args is not None:
51+
cmd.extend(shlex.split(args.extra_scp_args))
52+
return cmd + [src, "{}:{}".format(args.host, dst)]
53+
6054
def runCommand(command, *args_, **kwargs):
6155
if args.verbose:
6256
print(f"$ {' '.join(command)}")
@@ -65,7 +59,7 @@ def runCommand(command, *args_, **kwargs):
6559
# Create a temporary directory where the test will be run.
6660
# That is effectively the value of %T on the remote host.
6761
tmp = runCommand(
68-
ssh(args, "mktemp -d {}/libcxx.XXXXXXXXXX".format(args.tempdir)),
62+
ssh("mktemp -d {}/libcxx.XXXXXXXXXX".format(args.tempdir)),
6963
universal_newlines=True,
7064
check=True,
7165
capture_output=True
@@ -99,7 +93,7 @@ def runCommand(command, *args_, **kwargs):
9993
# the temporary file while still open doesn't work on Windows.
10094
tmpTar.close()
10195
remoteTarball = pathOnRemote(tmpTar.name)
102-
runCommand(scp(args, tmpTar.name, remoteTarball), check=True)
96+
runCommand(scp(tmpTar.name, remoteTarball), check=True)
10397
finally:
10498
# Make sure we close the file in case an exception happens before
10599
# we've closed it above -- otherwise close() is idempotent.
@@ -131,17 +125,17 @@ def runCommand(command, *args_, **kwargs):
131125
args.env.extend(args.prepend_env)
132126

133127
if args.env:
134-
env = list(map(cmd_quote, args.env))
128+
env = list(map(shlex.quote, args.env))
135129
remoteCommands.append("export {}".format(" ".join(args.env)))
136130
remoteCommands.append(subprocess.list2cmdline(commandLine))
137131

138132
# Finally, SSH to the remote host and execute all the commands.
139-
rc = runCommand(ssh(args, " && ".join(remoteCommands))).returncode
133+
rc = runCommand(ssh(" && ".join(remoteCommands))).returncode
140134
return rc
141135

142136
finally:
143137
# Make sure the temporary directory is removed when we're done.
144-
runCommand(ssh(args, "rm -r {}".format(tmp)), check=True)
138+
runCommand(ssh("rm -r {}".format(tmp)), check=True)
145139

146140

147141
if __name__ == "__main__":

0 commit comments

Comments
 (0)