aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/tools
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2017-08-08 14:07:29 -0700
committerMartin Braun <martin.braun@ettus.com>2017-12-22 15:04:00 -0800
commitf24b7fcdbdf48bf947bde5cbf1d6532bd0979a8e (patch)
treed9407a4402eafa7ec35026e2f91193250e74b837 /mpm/tools
parentd4047be7f2886bc060b6c7458ee17fec8ede0379 (diff)
downloaduhd-f24b7fcdbdf48bf947bde5cbf1d6532bd0979a8e.tar.gz
uhd-f24b7fcdbdf48bf947bde5cbf1d6532bd0979a8e.tar.bz2
uhd-f24b7fcdbdf48bf947bde5cbf1d6532bd0979a8e.zip
mpm: Added mpm_shell.py
Was actually the old rpc_shell.py, was renamed and heavily refactored. Now includes claim logic and other fancy features.
Diffstat (limited to 'mpm/tools')
-rw-r--r--mpm/tools/CMakeLists.txt2
-rwxr-xr-xmpm/tools/mpm_shell.py355
-rwxr-xr-xmpm/tools/rpc_shell.py116
3 files changed, 356 insertions, 117 deletions
diff --git a/mpm/tools/CMakeLists.txt b/mpm/tools/CMakeLists.txt
index 107aedeae..6f303c485 100644
--- a/mpm/tools/CMakeLists.txt
+++ b/mpm/tools/CMakeLists.txt
@@ -16,6 +16,6 @@
#
INSTALL(PROGRAMS
- rpc_shell.py
+ mpm_shell.py
mpm_debug.py
DESTINATION ${RUNTIME_DIR})
diff --git a/mpm/tools/mpm_shell.py b/mpm/tools/mpm_shell.py
new file mode 100755
index 000000000..704cfbcf5
--- /dev/null
+++ b/mpm/tools/mpm_shell.py
@@ -0,0 +1,355 @@
+#!/usr/bin/env python
+#
+# Copyright 2017 Ettus Research (National Instruments)
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+"""
+RPC shell to debug USRP MPM capable devices
+"""
+
+from __future__ import print_function
+import cmd
+import time
+import argparse
+import threading
+from importlib import import_module
+from mprpc import RPCClient
+from mprpc.exceptions import RPCError
+
+try:
+ from usrp_mpm.mpmtypes import MPM_RPC_PORT
+except ImportError:
+ MPM_RPC_PORT = None
+
+DEFAULT_MPM_RPC_PORT = 49601
+if MPM_RPC_PORT is None:
+ MPM_RPC_PORT = DEFAULT_MPM_RPC_PORT
+if MPM_RPC_PORT != DEFAULT_MPM_RPC_PORT:
+ print("Warning: Default encoded MPM RPC port does not match that in MPM.")
+
+
+def parse_args():
+ """
+ Parse command line args.
+ """
+ parser = argparse.ArgumentParser(
+ description="MPM Shell",
+ )
+ parser.add_argument(
+ 'host',
+ help="Specify host to connect to.", default=None,
+ )
+ parser.add_argument(
+ '-p', '--port', type=int,
+ help="Specify port to connect to.", default=MPM_RPC_PORT,
+ )
+ parser.add_argument(
+ '-c', '--claim',
+ action='store_true',
+ help="Claim device after connecting."
+ )
+ return parser.parse_args()
+
+
+def split_args(args, *default_args):
+ " Returns an array of args, space-separated "
+ args = args.split()
+ return [
+ arg_val if arg_idx < len(args) else default_args[arg_idx]
+ for arg_idx, arg_val in enumerate(args)
+ ]
+
+
+class MPMClaimer(object):
+ """
+ Holds a claim.
+ """
+ def __init__(self, host, port, disc_callback):
+ self.token = None
+ self._exit_loop = False
+ self._disc_callback = disc_callback
+ self._claim_loop = threading.Thread(
+ target=self.claim_loop,
+ name="Claimer Loop",
+ args=(host, port, self._disc_callback)
+ )
+ self._claim_loop.start()
+
+ def claim_loop(self, host, port, disc_callback):
+ """
+ Run a claim loop
+ """
+ client = RPCClient(host, port, pack_params={'use_bin_type': True})
+ self.token = client.call('claim', 'MPM Shell')
+ while not self._exit_loop:
+ client.call('reclaim', self.token)
+ time.sleep(1)
+ client.call('unclaim', self.token)
+ disc_callback()
+ self.token = None
+
+ def unclaim(self):
+ """
+ Unclaim device and exit claim loop.
+ """
+ self._exit_loop = True
+ self._claim_loop.join()
+
+
+class MPMShell(cmd.Cmd):
+ """
+ RPC Shell class. See cmd module.
+ """
+ def __init__(self):
+ cmd.Cmd.__init__(self)
+ self.prompt = "> "
+ self.client = None
+ self.remote_methods = []
+ self._claimer = None
+ self._host = None
+ self._port = None
+ self._device_info = None
+ args = parse_args()
+ if args.host is not None:
+ self.connect(args.host, args.port)
+ if args.claim:
+ self.claim()
+ self.update_prompt()
+
+ def _add_command(self, command, docs):
+ """
+ Add a command to the current session
+ """
+ cmd_name = 'do_' + command
+ if not hasattr(self, cmd_name):
+ new_command = lambda args: self.rpc_template(str(command), args)
+ new_command.__doc__ = docs
+ setattr(self, cmd_name, new_command)
+ self.remote_methods.append(command)
+
+ def rpc_template(self, command, args=None):
+ """
+ Template function to create new RPC shell commands
+ """
+ try:
+ if args:
+ expanded_args = self.expand_args(args)
+ response = self.client.call(command, *expanded_args)
+ else:
+ response = self.client.call(command)
+ except RPCError as ex:
+ print("RPC Command failed!")
+ print("Error: {}".format(ex))
+ return
+ except Exception as ex:
+ print("Unexpected exception!")
+ print("Error: {}".format(ex))
+ return
+ if isinstance(response, bool):
+ if response:
+ print("Command executed successfully!")
+ return
+ print("Command failed!")
+ return
+ print("==> " + str(response))
+
+ def get_names(self):
+ " We need this for tab completion. "
+ return dir(self)
+
+ ###########################################################################
+ # Cmd module specific
+ ###########################################################################
+ def run(self):
+ " Go, go, go! "
+ try:
+ self.cmdloop()
+ except KeyboardInterrupt:
+ self.do_disconnect(None)
+ exit(0)
+
+ def postcmd(self, stop, line):
+ """
+ Is run after every command executes. Does:
+ - Update prompt
+ """
+ self.update_prompt()
+
+ ###########################################################################
+ # Internal methods
+ ###########################################################################
+ def connect(self, host, port):
+ """
+ Launch a connection.
+ """
+ print("Attempting to connect to {host}:{port}...".format(
+ host=host, port=port
+ ))
+ try:
+ self.client = RPCClient(host, port, pack_params={'use_bin_type': True})
+ print("Connection successful.")
+ except Exception as ex:
+ print("Connection refused")
+ print("Error: {}".format(ex))
+ return False
+ self._host = host
+ self._port = port
+ print("Getting methods...")
+ methods = self.client.call('list_methods')
+ for method in methods:
+ self._add_command(*method)
+ print("Added {} methods.".format(len(methods)))
+ print("Quering device info...")
+ self._device_info = self.client.call('get_device_info')
+ return True
+
+ def disconnect(self):
+ """
+ Clean up after a connection was closed.
+ """
+ self._device_info = None
+ if self._claimer is not None:
+ self._claimer.unclaim()
+ if self.client:
+ try:
+ self.client.close()
+ except RPCError as ex:
+ print("Error while closing the connection")
+ print("Error: {}".format(ex))
+ for method in self.remote_methods:
+ delattr(self, "do_" + method)
+ self.remote_methods = []
+ self.client = None
+ self._host = None
+ self._port = None
+
+ def claim(self):
+ " Initialize claim "
+ assert self.client is not None
+ if self._claimer is not None:
+ print("Claimer already active.")
+ return True
+ print("Claiming device...")
+ self._claimer = MPMClaimer(self._host, self._port, self.unclaim_hook)
+ return True
+
+ def unclaim(self):
+ """
+ unclaim
+ """
+ if self._claimer is not None:
+ self._claimer.unclaim()
+ self._claimer = None
+
+ def unclaim_hook(self):
+ """
+ Hook
+ """
+ pass
+
+ def update_prompt(self):
+ """
+ Update prompt
+ """
+ if self._device_info is None:
+ self.prompt = '> '
+ else:
+ self.prompt = '{dev_id}{claim_status}> '.format(
+ dev_id=self._device_info.get(
+ 'name', self._device_info.get('serial', '?')
+ ),
+ claim_status=' [C]' if self._claimer is not None else ''
+ )
+
+ def expand_args(self, args):
+ """
+ Takes a string and returns a list
+ """
+ if self._claimer is not None and self._claimer.token is not None:
+ args = args.replace('$T', str(self._claimer.token))
+ eval_preamble = '='
+ args = args.strip()
+ print('args ' + str(args))
+ if args.startswith(eval_preamble):
+ parsed_args = eval(args.lstrip(eval_preamble))
+ if not isinstance(parsed_args, list):
+ parsed_args = [parsed_args]
+ else:
+ parsed_args = []
+ for arg in args.split():
+ try:
+ parsed_args.append(int(arg, 0))
+ continue
+ except ValueError:
+ pass
+ try:
+ parsed_args.append(float(arg))
+ continue
+ except ValueError:
+ pass
+ parsed_args.append(arg)
+ return parsed_args
+
+ ###########################################################################
+ # Predefined commands
+ ###########################################################################
+ def do_connect(self, args):
+ """
+ Connect to a remote MPM server. See connect()
+ """
+ host, port = split_args(args, 'localhost', MPM_RPC_PORT)
+ port = int(port)
+ self.connect(host, port)
+
+ def do_claim(self, _):
+ """
+ Spawn a claim loop
+ """
+ self.claim()
+
+ def do_unclaim(self, _):
+ """
+ unclaim
+ """
+ self.unclaim()
+
+ def do_disconnect(self, _):
+ """
+ disconnect from the RPC server
+ """
+ self.disconnect()
+
+ def do_import(self, args):
+ """import a python module into the global namespace"""
+ globals()[args] = import_module(args)
+
+ def do_EOF(self, _):
+ " When catching EOF, exit the program. "
+ print("Exiting...")
+ self.disconnect()
+ exit(0)
+
+def main():
+ " Go, go, go! "
+ my_shell = MPMShell()
+ try:
+ return my_shell.run()
+ except (KeyboardInterrupt, Exception):
+ my_shell.disconnect()
+ return True
+
+if __name__ == "__main__":
+ exit(not main())
+
diff --git a/mpm/tools/rpc_shell.py b/mpm/tools/rpc_shell.py
deleted file mode 100755
index 36c16880a..000000000
--- a/mpm/tools/rpc_shell.py
+++ /dev/null
@@ -1,116 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright 2017 Ettus Research (National Instruments)
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-#
-"""
-RPC shell to debug USRP MPM capable devices
-"""
-
-import sys
-import cmd
-import types
-from mprpc import RPCClient
-from mprpc.exceptions import RPCError
-from usrp_mpm import types
-from importlib import import_module
-
-
-class RPCShell(cmd.Cmd):
- prompt = "MPM> "
- client = None
- remote_methods = []
-
- def rpc_template(self, command, args=None):
- """Template function to create new RPC shell commands"""
- eval_preamble = "="
- try:
- if args:
- if isinstance(args, list):
- parsed_args = [
- eval(a.lstrip(eval_preamble))
- if a.startswith(eval_preamble) else a for a in args
- ]
- response = self.client.call(command, parsed_args)
- else:
- response = self.client.call(
- command,
- eval(args.lstrip(eval_preamble))
- if args.startswith(eval_preamble) else args)
- else:
- response = self.client.call(command)
- except RPCError as e:
- print("RPC Command failed!")
- print("Error: {}".format(e))
- return
- if isinstance(response, bool):
- if response:
- print("Commend executed successfully!")
- return
- print("Command failed!")
- return
- print(response)
-
- def do_connect(self, host, port=types.MPM_RPC_PORT):
- """connect to a remote RPC serverconnect <host> (port=MPM_RPC_PORT)"""
- try:
- self.client = RPCClient(host, port)
- except:
- print("Connection refused")
- return
- methods = self.client.call('list_methods')
- for method in methods:
- self.add_command(*method)
-
- def do_disconnect(self, args):
- """disconnect from the RPC server"""
- if self.client:
- try:
- self.client.close()
- except RPCError as e:
- print("Error while closing the connection")
- print("Error: {}".format(e))
- for method in self.remote_methods:
- delattr(self, "do_" + method)
- self.remote_methods = []
- self.client = None
-
- def do_import(self, args):
- """import a python module into the global namespace"""
- globals()[args] = import_module(args)
-
- def do_EOF(self, args):
- exit(0)
-
- def add_command(self, command, docs):
- def new_command(args): self.rpc_template(str(command), args)
- new_command.__doc__ = docs
- setattr(self, "do_" + command, new_command)
- self.remote_methods.append(command)
-
- def run(self):
- try:
- self.cmdloop()
- except KeyboardInterrupt:
- self.do_disconnect(None)
- exit(0)
-
- def get_names(self):
- return dir(self)
-
-
-if __name__ == "__main__":
- my_shell = RPCShell()
- exit(not (my_shell.run()))