| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # | 2 # |
| 3 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 """Command line tool for forwarding ports from a device to the host. | 7 """Command line tool for forwarding ports from a device to the host. |
| 8 | 8 |
| 9 Allows an Android device to connect to services running on the host machine, | 9 Allows an Android device to connect to services running on the host machine, |
| 10 i.e., "adb forward" in reverse. Requires |host_forwarder| and |device_forwarder| | 10 i.e., "adb forward" in reverse. Requires |host_forwarder| and |device_forwarder| |
| 11 to be built. | 11 to be built. |
| 12 """ | 12 """ |
| 13 | 13 |
| 14 import optparse | 14 import optparse |
| 15 import sys | 15 import sys |
| 16 import time | 16 import time |
| 17 | 17 |
| 18 from pylib import android_commands, forwarder | 18 from pylib import android_commands, forwarder |
| 19 from pylib.utils import run_tests_helper | 19 from pylib.utils import run_tests_helper |
| 20 from pylib.valgrind_tools import CreateTool |
| 20 | 21 |
| 21 | 22 |
| 22 def main(argv): | 23 def main(argv): |
| 23 parser = optparse.OptionParser(usage='Usage: %prog [options] device_port ' | 24 parser = optparse.OptionParser(usage='Usage: %prog [options] device_port ' |
| 24 'host_port [device_port_2 host_port_2] ...', | 25 'host_port [device_port_2 host_port_2] ...', |
| 25 description=__doc__) | 26 description=__doc__) |
| 26 parser.add_option('-v', | 27 parser.add_option('-v', |
| 27 '--verbose', | 28 '--verbose', |
| 28 dest='verbose_count', | 29 dest='verbose_count', |
| 29 default=0, | 30 default=0, |
| (...skipping 16 matching lines...) Expand all Loading... |
| 46 sys.exit(1) | 47 sys.exit(1) |
| 47 | 48 |
| 48 try: | 49 try: |
| 49 port_pairs = map(int, args[1:]) | 50 port_pairs = map(int, args[1:]) |
| 50 port_pairs = zip(port_pairs[::2], port_pairs[1::2]) | 51 port_pairs = zip(port_pairs[::2], port_pairs[1::2]) |
| 51 except ValueError: | 52 except ValueError: |
| 52 parser.error('Bad port number') | 53 parser.error('Bad port number') |
| 53 sys.exit(1) | 54 sys.exit(1) |
| 54 | 55 |
| 55 adb = android_commands.AndroidCommands(options.device) | 56 adb = android_commands.AndroidCommands(options.device) |
| 57 tool = CreateTool(None, adb) |
| 56 forwarder_instance = forwarder.Forwarder(adb, options.build_type) | 58 forwarder_instance = forwarder.Forwarder(adb, options.build_type) |
| 57 try: | 59 try: |
| 58 forwarder_instance.Run(port_pairs, None, options.host) | 60 forwarder_instance.Run(port_pairs, tool, options.host) |
| 59 while True: | 61 while True: |
| 60 time.sleep(60) | 62 time.sleep(60) |
| 61 except KeyboardInterrupt: | 63 except KeyboardInterrupt: |
| 62 sys.exit(0) | 64 sys.exit(0) |
| 63 finally: | 65 finally: |
| 64 forwarder_instance.Close() | 66 forwarder_instance.Close() |
| 65 | 67 |
| 66 | 68 |
| 67 if __name__ == '__main__': | 69 if __name__ == '__main__': |
| 68 main(sys.argv) | 70 main(sys.argv) |
| OLD | NEW |