util.py
Go to the documentation of this file.
1 """
2 This file contains utilities for other commands to use.
3 
4 Copyright 2015 Fetch Robotics Inc.
5 Author: Alex Henning
6 """
7 
8 from argcomplete.completers import ChoicesCompleter
9 import subprocess
10 
11 
12 def ssh(user, host, command, password=None, fname=None):
13  "Run the command on the remote host as the given user."
14 
15  userhost = user + "@" + host
16  ssh_command = ["ssh", "-t", userhost, command]
17 
18  e_vars = None
19  if password:
20  ssh_command = ["sshpass", "-e"] + ssh_command
21  e_vars = {"SSHPASS": password}
22 
23  pipe = open(fname + ".txt", 'w') if fname else None
24 
25  proc = subprocess.Popen(ssh_command, env=e_vars, stdout=pipe, stderr=pipe)
26  proc.wait()
27  if fname:
28  pipe.close()
29  return proc.returncode
30 
31 
32 def run(command):
33  proc = subprocess.Popen(["bash", "-c", command])
34  proc.wait()
35  return proc.returncode
36 
37 
38 # Arguments
39 def RobotCompleter(prefix, **kwargs):
40  options = []
41  if "fetch".startswith(prefix) and prefix != "fetch":
42  options.extend("fetch" + str(i) for i in range(10))
43  if "freight".startswith(prefix) and prefix != "freight":
44  options.extend("freight" + str(i) for i in range(10))
45  if options:
46  return options
47  return (prefix + str(i) for i in range(10))
48 
49 users = subprocess.check_output(["awk", "-F:", "{ print $1}", "/etc/passwd"]) \
50  .split()
51 
52 
53 def add_user(parser):
54  arg = parser.add_argument("--user", action="store",
55  help="User account to use on robot")
56  arg.completer = ChoicesCompleter(users)
57 
58 
59 def add_robot(parser):
60  arg = parser.add_argument("--robot", action="store", help="Robot to use")
61  arg.completer = RobotCompleter
62 
63 
64 def add_workspace(parser):
65  parser.add_argument("--workspace", action="store",
66  help="Catkin workspace to use")
67  parser.add_argument("--remote-workspace", action="store",
68  help="Catkin workspace to use on the robot")
def RobotCompleter(prefix, kwargs)
Definition: util.py:39
def add_workspace(parser)
Definition: util.py:64
def ssh(user, host, command, password=None, fname=None)
Definition: util.py:12
def add_robot(parser)
Definition: util.py:59
def run(command)
Definition: util.py:32
def add_user(parser)
Definition: util.py:53


fetch_tools
Author(s): Alex Henning
autogenerated on Mon Feb 28 2022 22:19:10