mirror of https://github.com/ARMmbed/mbed-os.git
227 lines
7.6 KiB
Python
227 lines
7.6 KiB
Python
# Copyright (c) 2018, Arm Limited and affiliates.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import re
|
|
import subprocess
|
|
import platform
|
|
|
|
from bs4 import BeautifulSoup
|
|
|
|
try:
|
|
from plistlib import loads
|
|
except ImportError:
|
|
from plistlib import readPlistFromString as loads
|
|
from xml.parsers.expat import ExpatError
|
|
|
|
from .lstools_base import MbedLsToolsBase
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger("mbedls.lstools_darwin")
|
|
logger.addHandler(logging.NullHandler())
|
|
DEBUG = logging.DEBUG
|
|
del logging
|
|
|
|
mbed_volume_name_match = re.compile(r"\b(mbed|SEGGER MSD|ATMEL EDBG Media)\b", re.I)
|
|
|
|
|
|
def _plist_from_popen(popen):
|
|
out, _ = popen.communicate()
|
|
if not out:
|
|
return []
|
|
try:
|
|
try:
|
|
# Try simple and fast first if this fails fall back to the slower but
|
|
# more robust process.
|
|
return loads(out)
|
|
except ExpatError:
|
|
# Beautiful soup ensures the XML is properly formed after it is parsed
|
|
# so that it can be used by other less lenient commands without problems
|
|
xml_representation = BeautifulSoup(out.decode('utf8'), 'xml')
|
|
|
|
if not xml_representation.get_text():
|
|
# The output is not in the XML format
|
|
return loads(out)
|
|
return loads(xml_representation.decode().encode('utf8'))
|
|
except ExpatError:
|
|
return []
|
|
|
|
|
|
def _find_TTY(obj):
|
|
""" Find the first tty (AKA IODialinDevice) that we can find in the
|
|
children of the specified object, or None if no tty is present.
|
|
"""
|
|
try:
|
|
return obj["IODialinDevice"]
|
|
except KeyError:
|
|
for child in obj.get("IORegistryEntryChildren", []):
|
|
found = _find_TTY(child)
|
|
if found:
|
|
return found
|
|
return None
|
|
|
|
|
|
def _prune(current, keys):
|
|
""" Reduce the amount of data we have to sift through to only
|
|
include the specified keys, and children that contain the
|
|
specified keys
|
|
"""
|
|
pruned_current = {k: current[k] for k in keys if k in current}
|
|
pruned_children = list(
|
|
filter(
|
|
None, [_prune(c, keys) for c in current.get("IORegistryEntryChildren", [])]
|
|
)
|
|
)
|
|
keep_current = any(k in current for k in keys) or pruned_children
|
|
if keep_current:
|
|
if pruned_children:
|
|
pruned_current["IORegistryEntryChildren"] = pruned_children
|
|
return pruned_current
|
|
else:
|
|
return {}
|
|
|
|
|
|
def _dfs_usb_info(obj, parents):
|
|
""" Find all of the usb info that we can from this particular IORegistry
|
|
tree with depth first search (and searching the parent stack....)
|
|
"""
|
|
output = {}
|
|
if (
|
|
"BSD Name" in obj
|
|
and obj["BSD Name"].startswith("disk")
|
|
and mbed_volume_name_match.search(obj["IORegistryEntryName"])
|
|
):
|
|
disk_id = obj["BSD Name"]
|
|
usb_info = {"serial": None, "vendor_id": None, "product_id": None, "tty": None}
|
|
for parent in [obj] + parents:
|
|
if "USB Serial Number" in parent:
|
|
usb_info["serial"] = parent["USB Serial Number"]
|
|
if "idVendor" in parent and "idProduct" in parent:
|
|
usb_info["vendor_id"] = format(parent["idVendor"], "04x")
|
|
usb_info["product_id"] = format(parent["idProduct"], "04x")
|
|
if usb_info["serial"]:
|
|
usb_info["tty"] = _find_TTY(parent)
|
|
if all(usb_info.values()):
|
|
break
|
|
logger.debug("found usb info %r", usb_info)
|
|
output[disk_id] = usb_info
|
|
for child in obj.get("IORegistryEntryChildren", []):
|
|
output.update(_dfs_usb_info(child, [obj] + parents))
|
|
return output
|
|
|
|
|
|
class MbedLsToolsDarwin(MbedLsToolsBase):
|
|
""" mbed-enabled platform detection on Mac OS X
|
|
"""
|
|
|
|
def __init__(self, **kwargs):
|
|
MbedLsToolsBase.__init__(self, **kwargs)
|
|
self.mac_version = float(".".join(platform.mac_ver()[0].split(".")[:2]))
|
|
|
|
def find_candidates(self):
|
|
# {volume_id: {serial:, vendor_id:, product_id:, tty:}}
|
|
volumes = self._volumes()
|
|
|
|
# {volume_id: mount_point}
|
|
mounts = self._mount_points()
|
|
return [
|
|
{
|
|
"mount_point": mounts[v],
|
|
"serial_port": volumes[v]["tty"],
|
|
"target_id_usb_id": volumes[v].get("serial"),
|
|
"vendor_id": volumes[v].get("vendor_id"),
|
|
"product_id": volumes[v].get("product_id"),
|
|
}
|
|
for v in set(volumes.keys()) and set(mounts.keys())
|
|
if v in mounts and v in volumes
|
|
]
|
|
|
|
def _mount_points(self):
|
|
""" Returns map {volume_id: mount_point} """
|
|
diskutil_ls = subprocess.Popen(
|
|
["diskutil", "list", "-plist"], stdout=subprocess.PIPE
|
|
)
|
|
disks = _plist_from_popen(diskutil_ls)
|
|
|
|
if logger.isEnabledFor(DEBUG):
|
|
import pprint
|
|
|
|
logger.debug(
|
|
"disks dict \n%s", pprint.PrettyPrinter(indent=2).pformat(disks)
|
|
)
|
|
return {
|
|
disk["DeviceIdentifier"]: disk.get("MountPoint", None)
|
|
for disk in disks["AllDisksAndPartitions"]
|
|
}
|
|
|
|
def _volumes(self):
|
|
""" returns a map {volume_id: {serial:, vendor_id:, product_id:, tty:}"""
|
|
|
|
# to find all the possible mbed volumes, we look for registry entries
|
|
# under all possible USB tree which have a "BSD Name" that starts with
|
|
# "disk" # (i.e. this is a USB disk), and have a IORegistryEntryName that
|
|
# matches /\cmbed/
|
|
# Once we've found a disk, we can search up for a parent with a valid
|
|
# serial number, and then search down again to find a tty that's part
|
|
# of the same composite device
|
|
# ioreg -a -r -n <usb_controller_name> -l
|
|
usb_controllers = [
|
|
"AppleUSBXHCI",
|
|
"AppleUSBUHCI",
|
|
"AppleUSBEHCI",
|
|
"AppleUSBOHCI",
|
|
"IOUSBHostDevice",
|
|
]
|
|
|
|
cmp_par = "-n"
|
|
# For El Captain we need to list all the instances of (-c) rather than
|
|
# compare names (-n)
|
|
if self.mac_version >= 10.11:
|
|
cmp_par = "-c"
|
|
|
|
usb_tree = []
|
|
for usb_controller in usb_controllers:
|
|
ioreg_usb = subprocess.Popen(
|
|
["ioreg", "-a", "-r", cmp_par, usb_controller, "-l"],
|
|
stdout=subprocess.PIPE,
|
|
)
|
|
usb_tree.extend(_plist_from_popen(ioreg_usb))
|
|
|
|
r = {}
|
|
|
|
for name, obj in enumerate(usb_tree):
|
|
pruned_obj = _prune(
|
|
obj,
|
|
[
|
|
"USB Serial Number",
|
|
"idVendor",
|
|
"BSD Name",
|
|
"IORegistryEntryName",
|
|
"idProduct",
|
|
"IODialinDevice",
|
|
],
|
|
)
|
|
if logger.isEnabledFor(DEBUG):
|
|
import pprint
|
|
|
|
logger.debug(
|
|
"finding in \n%s",
|
|
pprint.PrettyPrinter(indent=2).pformat(pruned_obj),
|
|
)
|
|
r.update(_dfs_usb_info(pruned_obj, []))
|
|
|
|
logger.debug("_volumes return %r", r)
|
|
return r
|