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
5 # found in the LICENSE file.
7 """Command line tool for forwarding ports from a device to the host.
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|
18 from pylib
import android_commands
19 from pylib
import constants
, forwarder
20 from pylib
.device
import device_utils
21 from pylib
.utils
import run_tests_helper
25 parser
= optparse
.OptionParser(usage
='Usage: %prog [options] device_port '
26 'host_port [device_port_2 host_port_2] ...',
28 parser
.add_option('-v',
33 help='Verbose level (multiple times for more)')
34 parser
.add_option('--device',
35 help='Serial number of device we should use.')
36 parser
.add_option('--debug', action
='store_const', const
='Debug',
37 dest
='build_type', default
='Release',
38 help='Use Debug build of host tools instead of Release.')
40 options
, args
= parser
.parse_args(argv
)
41 run_tests_helper
.SetLogLevel(options
.verbose_count
)
43 if len(args
) < 2 or not len(args
) % 2:
44 parser
.error('Need even number of port pairs')
48 port_pairs
= map(int, args
[1:])
49 port_pairs
= zip(port_pairs
[::2], port_pairs
[1::2])
51 parser
.error('Bad port number')
54 devices
= android_commands
.GetAttachedDevices()
57 if options
.device
not in devices
:
58 raise Exception('Error: %s not in attached devices %s' % (options
.device
,
60 devices
= [options
.device
]
63 raise Exception('Error: no connected devices')
64 print "No device specified. Defaulting to " + devices
[0]
66 device
= device_utils
.DeviceUtils(devices
[0])
67 constants
.SetBuildType(options
.build_type
)
69 forwarder
.Forwarder
.Map(port_pairs
, device
)
72 except KeyboardInterrupt:
75 forwarder
.Forwarder
.UnmapAllDevicePorts(device
)
77 if __name__
== '__main__':