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 logging |
14 import optparse | 15 import optparse |
15 import sys | 16 import sys |
16 import time | 17 import time |
17 | 18 |
18 from pylib import android_commands | 19 from pylib import constants |
19 from pylib import constants, forwarder | 20 from pylib import forwarder |
| 21 from pylib.device import adb_wrapper |
| 22 from pylib.device import device_filter |
20 from pylib.device import device_utils | 23 from pylib.device import device_utils |
21 from pylib.utils import run_tests_helper | 24 from pylib.utils import run_tests_helper |
22 | 25 |
23 | 26 |
24 def main(argv): | 27 def main(argv): |
25 parser = optparse.OptionParser(usage='Usage: %prog [options] device_port ' | 28 parser = optparse.OptionParser(usage='Usage: %prog [options] device_port ' |
26 'host_port [device_port_2 host_port_2] ...', | 29 'host_port [device_port_2 host_port_2] ...', |
27 description=__doc__) | 30 description=__doc__) |
28 parser.add_option('-v', | 31 parser.add_option('-v', |
29 '--verbose', | 32 '--verbose', |
(...skipping 14 matching lines...) Expand all Loading... |
44 parser.error('Need even number of port pairs') | 47 parser.error('Need even number of port pairs') |
45 sys.exit(1) | 48 sys.exit(1) |
46 | 49 |
47 try: | 50 try: |
48 port_pairs = map(int, args[1:]) | 51 port_pairs = map(int, args[1:]) |
49 port_pairs = zip(port_pairs[::2], port_pairs[1::2]) | 52 port_pairs = zip(port_pairs[::2], port_pairs[1::2]) |
50 except ValueError: | 53 except ValueError: |
51 parser.error('Bad port number') | 54 parser.error('Bad port number') |
52 sys.exit(1) | 55 sys.exit(1) |
53 | 56 |
54 devices = android_commands.GetAttachedDevices() | 57 devices = adb_wrapper.AdbWrapper.Devices( |
| 58 filters=device_filter.DefaultFilters()) |
55 | 59 |
56 if options.device: | 60 if options.device: |
57 if options.device not in devices: | 61 if options.device not in [d.GetDeviceSerial() for d in devices]: |
58 raise Exception('Error: %s not in attached devices %s' % (options.device, | 62 raise Exception('Error: %s not in attached devices %s' % (options.device, |
59 ','.join(devices))) | 63 ','.join(devices))) |
60 devices = [options.device] | 64 devices = [options.device] |
61 else: | 65 else: |
62 if not devices: | 66 if not devices: |
63 raise Exception('Error: no connected devices') | 67 raise Exception('Error: no connected devices') |
64 print "No device specified. Defaulting to " + devices[0] | 68 logging.info('No device specified. Defaulting to %s', devices[0]) |
65 | 69 |
66 device = device_utils.DeviceUtils(devices[0]) | 70 device = device_utils.DeviceUtils(devices[0]) |
67 constants.SetBuildType(options.build_type) | 71 constants.SetBuildType(options.build_type) |
68 try: | 72 try: |
69 forwarder.Forwarder.Map(port_pairs, device) | 73 forwarder.Forwarder.Map(port_pairs, device) |
70 while True: | 74 while True: |
71 time.sleep(60) | 75 time.sleep(60) |
72 except KeyboardInterrupt: | 76 except KeyboardInterrupt: |
73 sys.exit(0) | 77 sys.exit(0) |
74 finally: | 78 finally: |
75 forwarder.Forwarder.UnmapAllDevicePorts(device) | 79 forwarder.Forwarder.UnmapAllDevicePorts(device) |
76 | 80 |
77 if __name__ == '__main__': | 81 if __name__ == '__main__': |
78 main(sys.argv) | 82 main(sys.argv) |
OLD | NEW |