summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2013-10-17 03:34:44 +0000
committercliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2013-10-17 03:34:44 +0000
commit19aab07e645fa972c7e6599d5cba5079161ff1fc (patch)
tree87e5af435c152dc1db76983796ee5df3146a5b4f
parent0565a87498c70ada1dc6c08463a157d01926058c (diff)
downloadpyserial-19aab07e645fa972c7e6599d5cba5079161ff1fc.tar.gz
doc update, do not include bytes but str in list_ports_windows
git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@485 f19166aa-fa4f-0410-85c2-fa1106f25c8a
-rw-r--r--serial/tools/list_ports.py16
-rw-r--r--serial/tools/list_ports_linux.py3
-rw-r--r--serial/tools/list_ports_windows.py57
3 files changed, 57 insertions, 19 deletions
diff --git a/serial/tools/list_ports.py b/serial/tools/list_ports.py
index 6231d7d..bfcfdeb 100644
--- a/serial/tools/list_ports.py
+++ b/serial/tools/list_ports.py
@@ -31,6 +31,7 @@ elif os.name == 'posix':
else:
raise ImportError("Sorry: no implementation for your platform ('%s') available" % (os.name,))
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def grep(regexp):
"""\
@@ -38,11 +39,13 @@ def grep(regexp):
hardware ID are searched. The function returns an iterable that returns the
same tuples as comport() would do.
"""
+ r = re.compile(regexp, re.I)
for port, desc, hwid in comports():
- if re.search(regexp, port, re.I) or re.search(regexp, desc, re.I) or re.search(regexp, hwid, re.I):
+ if r.search(port) or r.search(regexp) or r.search(regexp):
yield port, desc, hwid
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def main():
import optparse
@@ -83,17 +86,18 @@ def main():
iterator = sorted(comports())
# list them
for port, desc, hwid in iterator:
- print "%-20s" % (port,)
+ print("%-20s" % (port,))
if options.verbose > 1:
- print " desc: %s" % (desc,)
- print " hwid: %s" % (hwid,)
+ print(" desc: %s" % (desc,))
+ print(" hwid: %s" % (hwid,))
hits += 1
if options.verbose:
if hits:
- print "%d ports found" % (hits,)
+ print("%d ports found" % (hits,))
else:
- print "no ports found"
+ print("no ports found")
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# test
if __name__ == '__main__':
main()
diff --git a/serial/tools/list_ports_linux.py b/serial/tools/list_ports_linux.py
index eecbf41..0a23e09 100644
--- a/serial/tools/list_ports_linux.py
+++ b/serial/tools/list_ports_linux.py
@@ -80,7 +80,7 @@ def usb_lsusb_string(sysfs_path):
base = os.path.basename(os.path.realpath(sysfs_path))
bus = base.split('-')[0]
try:
- dev = int(open(os.path.join(sysfs_path, 'devnum')).readline().strip())
+ dev = int(read_line(os.path.join(sysfs_path, 'devnum')))
desc = popen(['lsusb', '-v', '-s', '%s:%s' % (bus, dev)])
# descriptions from device
iManufacturer = re_group('iManufacturer\s+\w+ (.+)', desc)
@@ -136,6 +136,7 @@ def comports():
devices = glob.glob('/dev/ttyS*') + glob.glob('/dev/ttyUSB*') + glob.glob('/dev/ttyACM*')
return [(d, describe(d), hwinfo(d)) for d in devices]
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# test
if __name__ == '__main__':
for port, desc, hwid in sorted(comports()):
diff --git a/serial/tools/list_ports_windows.py b/serial/tools/list_ports_windows.py
index f4ec8bd..50bc81d 100644
--- a/serial/tools/list_ports_windows.py
+++ b/serial/tools/list_ports_windows.py
@@ -143,17 +143,24 @@ REG_SZ = 1
# workaround for compatibility between Python 2.x and 3.x
Ports = serial.to_bytes([80, 111, 114, 116, 115]) # "Ports"
PortName = serial.to_bytes([80, 111, 114, 116, 78, 97, 109, 101]) # "PortName"
-NA = serial.to_bytes([110, 47, 97]) # "n/a"
def comports():
- GUIDs = (GUID*8)()
+ GUIDs = (GUID*8)() # so far only seen one used, so hope 8 are enough...
guids_size = DWORD()
- if not SetupDiClassGuidsFromName(Ports, GUIDs, ctypes.sizeof(GUIDs), ctypes.byref(guids_size)):
+ if not SetupDiClassGuidsFromName(
+ Ports,
+ GUIDs,
+ ctypes.sizeof(GUIDs),
+ ctypes.byref(guids_size)):
raise ctypes.WinError()
+ # repeat for all possible GUIDs
for index in range(guids_size.value):
- #~ g_hdi = SetupDiGetClassDevs(ctypes.byref(guid), None, NULL, DIGCF_PRESENT|DIGCF_DEVICEINTERFACE)
- g_hdi = SetupDiGetClassDevs(ctypes.byref(GUIDs[index]), None, NULL, DIGCF_PRESENT)
+ g_hdi = SetupDiGetClassDevs(
+ ctypes.byref(GUIDs[index]),
+ None,
+ NULL,
+ DIGCF_PRESENT) # was DIGCF_PRESENT|DIGCF_DEVICEINTERFACE which misses CDC ports
devinfo = SP_DEVINFO_DATA()
devinfo.cbSize = ctypes.sizeof(devinfo)
@@ -162,13 +169,24 @@ def comports():
index += 1
# get the real com port name
- hkey = SetupDiOpenDevRegKey(g_hdi, ctypes.byref(devinfo), DICS_FLAG_GLOBAL, 0, DIREG_DEV, KEY_READ)
- #~ hkey = SetupDiOpenDevRegKey(g_hdi, ctypes.byref(devinfo), DICS_FLAG_GLOBAL, 0, DIREG_DRV, KEY_READ)
+ hkey = SetupDiOpenDevRegKey(
+ g_hdi,
+ ctypes.byref(devinfo),
+ DICS_FLAG_GLOBAL,
+ 0,
+ DIREG_DEV, # DIREG_DRV for SW info
+ KEY_READ)
port_name_buffer = byte_buffer(250)
port_name_length = ULONG(ctypes.sizeof(port_name_buffer))
- RegQueryValueEx(hkey, PortName, None, None, ctypes.byref(port_name_buffer), ctypes.byref(port_name_length))
+ RegQueryValueEx(
+ hkey,
+ PortName,
+ None,
+ None,
+ ctypes.byref(port_name_buffer),
+ ctypes.byref(port_name_length))
RegCloseKey(hkey)
-
+
# unfortunately does this method also include parallel ports.
# we could check for names starting with COM or just exclude LPT
# and hope that other "unknown" names are serial ports...
@@ -177,24 +195,39 @@ def comports():
# hardware ID
szHardwareID = byte_buffer(250)
- if not SetupDiGetDeviceRegistryProperty(g_hdi, ctypes.byref(devinfo), SPDRP_HARDWAREID, None, ctypes.byref(szHardwareID), ctypes.sizeof(szHardwareID) - 1, None):
+ if not SetupDiGetDeviceRegistryProperty(
+ g_hdi,
+ ctypes.byref(devinfo),
+ SPDRP_HARDWAREID,
+ None,
+ ctypes.byref(szHardwareID),
+ ctypes.sizeof(szHardwareID) - 1,
+ None):
# Ignore ERROR_INSUFFICIENT_BUFFER
if ctypes.GetLastError() != ERROR_INSUFFICIENT_BUFFER:
raise ctypes.WinError()
# friendly name
szFriendlyName = byte_buffer(250)
- if not SetupDiGetDeviceRegistryProperty(g_hdi, ctypes.byref(devinfo), SPDRP_FRIENDLYNAME, None, ctypes.byref(szFriendlyName), ctypes.sizeof(szFriendlyName) - 1, None):
+ if not SetupDiGetDeviceRegistryProperty(
+ g_hdi,
+ ctypes.byref(devinfo),
+ SPDRP_FRIENDLYNAME,
+ None,
+ ctypes.byref(szFriendlyName),
+ ctypes.sizeof(szFriendlyName) - 1,
+ None):
# Ignore ERROR_INSUFFICIENT_BUFFER
#~ if ctypes.GetLastError() != ERROR_INSUFFICIENT_BUFFER:
#~ raise IOError("failed to get details for %s (%s)" % (devinfo, szHardwareID.value))
# ignore errors and still include the port in the list, friendly name will be same as port name
- yield string(port_name_buffer), NA, string(szHardwareID)
+ yield string(port_name_buffer), 'n/a', string(szHardwareID)
else:
yield string(port_name_buffer), string(szFriendlyName), string(szHardwareID)
SetupDiDestroyDeviceInfoList(g_hdi)
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# test
if __name__ == '__main__':
import serial