idf_tools.py 56 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360
  1. #!/usr/bin/env python
  2. # coding=utf-8
  3. #
  4. # This script helps installing tools required to use the ESP-IDF, and updating PATH
  5. # to use the installed tools. It can also create a Python virtual environment,
  6. # and install Python requirements into it.
  7. # It does not install OS dependencies. It does install tools such as the Xtensa
  8. # GCC toolchain and ESP32 ULP coprocessor toolchain.
  9. #
  10. # By default, downloaded tools will be installed under $HOME/.espressif directory
  11. # (%USERPROFILE%/.espressif on Windows). This path can be modified by setting
  12. # IDF_TOOLS_PATH variable prior to running this tool.
  13. #
  14. # Users do not need to interact with this script directly. In IDF root directory,
  15. # install.sh (.bat) and export.sh (.bat) scripts are provided to invoke this script.
  16. #
  17. # Usage:
  18. #
  19. # * To install the tools, run `idf_tools.py install`.
  20. #
  21. # * To install the Python environment, run `idf_tools.py install-python-env`.
  22. #
  23. # * To start using the tools, run `eval "$(idf_tools.py export)"` — this will update
  24. # the PATH to point to the installed tools and set up other environment variables
  25. # needed by the tools.
  26. #
  27. ###
  28. #
  29. # Copyright 2019 Espressif Systems (Shanghai) PTE LTD
  30. #
  31. # Licensed under the Apache License, Version 2.0 (the "License");
  32. # you may not use this file except in compliance with the License.
  33. # You may obtain a copy of the License at
  34. #
  35. # http://www.apache.org/licenses/LICENSE-2.0
  36. #
  37. # Unless required by applicable law or agreed to in writing, software
  38. # distributed under the License is distributed on an "AS IS" BASIS,
  39. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  40. # See the License for the specific language governing permissions and
  41. # limitations under the License.
  42. import json
  43. import os
  44. import subprocess
  45. import sys
  46. import argparse
  47. import re
  48. import platform
  49. import hashlib
  50. import tarfile
  51. import zipfile
  52. import errno
  53. import shutil
  54. import functools
  55. import copy
  56. from collections import OrderedDict, namedtuple
  57. try:
  58. from urllib.request import urlretrieve
  59. except ImportError:
  60. from urllib import urlretrieve
  61. try:
  62. from exceptions import WindowsError
  63. except ImportError:
  64. class WindowsError(OSError):
  65. pass
  66. TOOLS_FILE = 'tools/tools.json'
  67. TOOLS_SCHEMA_FILE = 'tools/tools_schema.json'
  68. TOOLS_FILE_NEW = 'tools/tools.new.json'
  69. TOOLS_FILE_VERSION = 1
  70. IDF_TOOLS_PATH_DEFAULT = os.path.join('~', '.espressif')
  71. UNKNOWN_VERSION = 'unknown'
  72. SUBST_TOOL_PATH_REGEX = re.compile(r'\${TOOL_PATH}')
  73. VERSION_REGEX_REPLACE_DEFAULT = r'\1'
  74. IDF_MAINTAINER = os.environ.get('IDF_MAINTAINER') or False
  75. TODO_MESSAGE = 'TODO'
  76. DOWNLOAD_RETRY_COUNT = 3
  77. URL_PREFIX_MAP_SEPARATOR = ','
  78. IDF_TOOLS_INSTALL_CMD = os.environ.get('IDF_TOOLS_INSTALL_CMD')
  79. IDF_TOOLS_EXPORT_CMD = os.environ.get('IDF_TOOLS_INSTALL_CMD')
  80. PYTHON_PLATFORM = platform.system() + '-' + platform.machine()
  81. # Identifiers used in tools.json for different platforms.
  82. PLATFORM_WIN32 = 'win32'
  83. PLATFORM_WIN64 = 'win64'
  84. PLATFORM_MACOS = 'macos'
  85. PLATFORM_LINUX32 = 'linux-i686'
  86. PLATFORM_LINUX64 = 'linux-amd64'
  87. PLATFORM_LINUX_ARM32 = 'linux-armel'
  88. PLATFORM_LINUX_ARMHF = 'linux-armhf'
  89. PLATFORM_LINUX_ARM64 = 'linux-arm64'
  90. # Mappings from various other names these platforms are known as, to the identifiers above.
  91. # This includes strings produced from "platform.system() + '-' + platform.machine()", see PYTHON_PLATFORM
  92. # definition above.
  93. # This list also includes various strings used in release archives of xtensa-esp32-elf-gcc, OpenOCD, etc.
  94. PLATFORM_FROM_NAME = {
  95. # Windows
  96. PLATFORM_WIN32: PLATFORM_WIN32,
  97. 'Windows-i686': PLATFORM_WIN32,
  98. 'Windows-x86': PLATFORM_WIN32,
  99. PLATFORM_WIN64: PLATFORM_WIN64,
  100. 'Windows-x86_64': PLATFORM_WIN64,
  101. 'Windows-AMD64': PLATFORM_WIN64,
  102. # macOS
  103. PLATFORM_MACOS: PLATFORM_MACOS,
  104. 'osx': PLATFORM_MACOS,
  105. 'darwin': PLATFORM_MACOS,
  106. 'Darwin-x86_64': PLATFORM_MACOS,
  107. # Linux
  108. PLATFORM_LINUX64: PLATFORM_LINUX64,
  109. 'linux64': PLATFORM_LINUX64,
  110. 'Linux-x86_64': PLATFORM_LINUX64,
  111. PLATFORM_LINUX32: PLATFORM_LINUX32,
  112. 'linux32': PLATFORM_LINUX32,
  113. 'Linux-i686': PLATFORM_LINUX32,
  114. PLATFORM_LINUX_ARM32: PLATFORM_LINUX_ARM32,
  115. 'Linux-arm': PLATFORM_LINUX_ARM32,
  116. 'Linux-armv7l': PLATFORM_LINUX_ARM32,
  117. PLATFORM_LINUX_ARMHF: PLATFORM_LINUX_ARMHF,
  118. PLATFORM_LINUX_ARM64: PLATFORM_LINUX_ARM64,
  119. 'Linux-arm64': PLATFORM_LINUX_ARM64,
  120. 'Linux-aarch64': PLATFORM_LINUX_ARM64,
  121. 'Linux-armv8l': PLATFORM_LINUX_ARM64,
  122. }
  123. UNKNOWN_PLATFORM = 'unknown'
  124. CURRENT_PLATFORM = PLATFORM_FROM_NAME.get(PYTHON_PLATFORM, UNKNOWN_PLATFORM)
  125. EXPORT_SHELL = 'shell'
  126. EXPORT_KEY_VALUE = 'key-value'
  127. global_quiet = False
  128. global_non_interactive = False
  129. global_idf_path = None
  130. global_idf_tools_path = None
  131. global_tools_json = None
  132. def fatal(text, *args):
  133. if not global_quiet:
  134. sys.stderr.write('ERROR: ' + text + '\n', *args)
  135. def warn(text, *args):
  136. if not global_quiet:
  137. sys.stderr.write('WARNING: ' + text + '\n', *args)
  138. def info(text, f=None, *args):
  139. if not global_quiet:
  140. if f is None:
  141. f = sys.stdout
  142. f.write(text + '\n', *args)
  143. def run_cmd_check_output(cmd, input_text=None, extra_paths=None):
  144. # If extra_paths is given, locate the executable in one of these directories.
  145. # Note: it would seem logical to add extra_paths to env[PATH], instead, and let OS do the job of finding the
  146. # executable for us. However this does not work on Windows: https://bugs.python.org/issue8557.
  147. if extra_paths:
  148. found = False
  149. extensions = ['']
  150. if sys.platform == 'win32':
  151. extensions.append('.exe')
  152. for path in extra_paths:
  153. for ext in extensions:
  154. fullpath = os.path.join(path, cmd[0] + ext)
  155. if os.path.exists(fullpath):
  156. cmd[0] = fullpath
  157. found = True
  158. break
  159. if found:
  160. break
  161. try:
  162. if input_text:
  163. input_text = input_text.encode()
  164. result = subprocess.run(cmd, capture_output=True, check=True, input=input_text)
  165. return result.stdout + result.stderr
  166. except (AttributeError, TypeError):
  167. p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
  168. stdout, stderr = p.communicate(input_text)
  169. if p.returncode != 0:
  170. try:
  171. raise subprocess.CalledProcessError(p.returncode, cmd, stdout, stderr)
  172. except TypeError:
  173. raise subprocess.CalledProcessError(p.returncode, cmd, stdout)
  174. return stdout + stderr
  175. def to_shell_specific_paths(paths_list):
  176. if sys.platform == 'win32':
  177. paths_list = [p.replace('/', os.path.sep) if os.path.sep in p else p for p in paths_list]
  178. if 'MSYSTEM' in os.environ:
  179. paths_msys = run_cmd_check_output(['cygpath', '-u', '-f', '-'],
  180. input_text='\n'.join(paths_list))
  181. paths_list = paths_msys.decode().strip().split('\n')
  182. return paths_list
  183. def get_env_for_extra_paths(extra_paths):
  184. """
  185. Return a copy of environment variables dict, prepending paths listed in extra_paths
  186. to the PATH environment variable.
  187. """
  188. env_arg = os.environ.copy()
  189. new_path = os.pathsep.join(extra_paths) + os.pathsep + env_arg['PATH']
  190. if sys.version_info.major == 2:
  191. env_arg['PATH'] = new_path.encode('utf8')
  192. else:
  193. env_arg['PATH'] = new_path
  194. return env_arg
  195. def get_file_size_sha256(filename, block_size=65536):
  196. sha256 = hashlib.sha256()
  197. size = 0
  198. with open(filename, 'rb') as f:
  199. for block in iter(lambda: f.read(block_size), b''):
  200. sha256.update(block)
  201. size += len(block)
  202. return size, sha256.hexdigest()
  203. def report_progress(count, block_size, total_size):
  204. percent = int(count * block_size * 100 / total_size)
  205. percent = min(100, percent)
  206. sys.stdout.write("\r%d%%" % percent)
  207. sys.stdout.flush()
  208. def mkdir_p(path):
  209. try:
  210. os.makedirs(path)
  211. except OSError as exc:
  212. if exc.errno != errno.EEXIST or not os.path.isdir(path):
  213. raise
  214. def unpack(filename, destination):
  215. info('Extracting {0} to {1}'.format(filename, destination))
  216. if filename.endswith('tar.gz'):
  217. archive_obj = tarfile.open(filename, 'r:gz')
  218. elif filename.endswith('zip'):
  219. archive_obj = zipfile.ZipFile(filename)
  220. else:
  221. raise NotImplementedError('Unsupported archive type')
  222. if sys.version_info.major == 2:
  223. # This is a workaround for the issue that unicode destination is not handled:
  224. # https://bugs.python.org/issue17153
  225. destination = str(destination)
  226. archive_obj.extractall(destination)
  227. # Sometimes renaming a directory on Windows (randomly?) causes a PermissionError.
  228. # This is confirmed to be a workaround:
  229. # https://github.com/espressif/esp-idf/issues/3819#issuecomment-515167118
  230. # https://github.com/espressif/esp-idf/issues/4063#issuecomment-531490140
  231. # https://stackoverflow.com/a/43046729
  232. def rename_with_retry(path_from, path_to):
  233. if sys.platform.startswith('win'):
  234. retry_count = 100
  235. else:
  236. retry_count = 1
  237. for retry in range(retry_count):
  238. try:
  239. os.rename(path_from, path_to)
  240. return
  241. except (OSError, WindowsError): # WindowsError until Python 3.3, then OSError
  242. if retry == retry_count - 1:
  243. raise
  244. warn('Rename {} to {} failed, retrying...'.format(path_from, path_to))
  245. def strip_container_dirs(path, levels):
  246. assert levels > 0
  247. # move the original directory out of the way (add a .tmp suffix)
  248. tmp_path = path + '.tmp'
  249. if os.path.exists(tmp_path):
  250. shutil.rmtree(tmp_path)
  251. rename_with_retry(path, tmp_path)
  252. os.mkdir(path)
  253. base_path = tmp_path
  254. # walk given number of levels down
  255. for level in range(levels):
  256. contents = os.listdir(base_path)
  257. if len(contents) > 1:
  258. raise RuntimeError('at level {}, expected 1 entry, got {}'.format(level, contents))
  259. base_path = os.path.join(base_path, contents[0])
  260. if not os.path.isdir(base_path):
  261. raise RuntimeError('at level {}, {} is not a directory'.format(level, contents[0]))
  262. # get the list of directories/files to move
  263. contents = os.listdir(base_path)
  264. for name in contents:
  265. move_from = os.path.join(base_path, name)
  266. move_to = os.path.join(path, name)
  267. rename_with_retry(move_from, move_to)
  268. shutil.rmtree(tmp_path)
  269. class ToolNotFound(RuntimeError):
  270. pass
  271. class ToolExecError(RuntimeError):
  272. pass
  273. class DownloadError(RuntimeError):
  274. pass
  275. class IDFToolDownload(object):
  276. def __init__(self, platform_name, url, size, sha256):
  277. self.platform_name = platform_name
  278. self.url = url
  279. self.size = size
  280. self.sha256 = sha256
  281. self.platform_name = platform_name
  282. @functools.total_ordering
  283. class IDFToolVersion(object):
  284. STATUS_RECOMMENDED = 'recommended'
  285. STATUS_SUPPORTED = 'supported'
  286. STATUS_DEPRECATED = 'deprecated'
  287. STATUS_VALUES = [STATUS_RECOMMENDED, STATUS_SUPPORTED, STATUS_DEPRECATED]
  288. def __init__(self, version, status):
  289. self.version = version
  290. self.status = status
  291. self.downloads = OrderedDict()
  292. self.latest = False
  293. def __lt__(self, other):
  294. if self.status != other.status:
  295. return self.status > other.status
  296. else:
  297. assert not (self.status == IDFToolVersion.STATUS_RECOMMENDED
  298. and other.status == IDFToolVersion.STATUS_RECOMMENDED)
  299. return self.version < other.version
  300. def __eq__(self, other):
  301. return self.status == other.status and self.version == other.version
  302. def add_download(self, platform_name, url, size, sha256):
  303. self.downloads[platform_name] = IDFToolDownload(platform_name, url, size, sha256)
  304. def get_download_for_platform(self, platform_name):
  305. if platform_name in PLATFORM_FROM_NAME.keys():
  306. platform_name = PLATFORM_FROM_NAME[platform_name]
  307. if platform_name in self.downloads.keys():
  308. return self.downloads[platform_name]
  309. if 'any' in self.downloads.keys():
  310. return self.downloads['any']
  311. return None
  312. def compatible_with_platform(self, platform_name=PYTHON_PLATFORM):
  313. return self.get_download_for_platform(platform_name) is not None
  314. OPTIONS_LIST = ['version_cmd',
  315. 'version_regex',
  316. 'version_regex_replace',
  317. 'export_paths',
  318. 'export_vars',
  319. 'install',
  320. 'info_url',
  321. 'license',
  322. 'strip_container_dirs']
  323. IDFToolOptions = namedtuple('IDFToolOptions', OPTIONS_LIST)
  324. class IDFTool(object):
  325. # possible values of 'install' field
  326. INSTALL_ALWAYS = 'always'
  327. INSTALL_ON_REQUEST = 'on_request'
  328. INSTALL_NEVER = 'never'
  329. def __init__(self, name, description, install, info_url, license, version_cmd, version_regex, version_regex_replace=None,
  330. strip_container_dirs=0):
  331. self.name = name
  332. self.description = description
  333. self.versions = OrderedDict()
  334. self.version_in_path = None
  335. self.versions_installed = []
  336. if version_regex_replace is None:
  337. version_regex_replace = VERSION_REGEX_REPLACE_DEFAULT
  338. self.options = IDFToolOptions(version_cmd, version_regex, version_regex_replace,
  339. [], OrderedDict(), install, info_url, license, strip_container_dirs)
  340. self.platform_overrides = []
  341. self._platform = CURRENT_PLATFORM
  342. self._update_current_options()
  343. def copy_for_platform(self, platform):
  344. result = copy.deepcopy(self)
  345. result._platform = platform
  346. result._update_current_options()
  347. return result
  348. def _update_current_options(self):
  349. self._current_options = IDFToolOptions(*self.options)
  350. for override in self.platform_overrides:
  351. if self._platform not in override['platforms']:
  352. continue
  353. override_dict = override.copy()
  354. del override_dict['platforms']
  355. self._current_options = self._current_options._replace(**override_dict)
  356. def add_version(self, version):
  357. assert(type(version) is IDFToolVersion)
  358. self.versions[version.version] = version
  359. def get_path(self):
  360. return os.path.join(global_idf_tools_path, 'tools', self.name)
  361. def get_path_for_version(self, version):
  362. assert(version in self.versions)
  363. return os.path.join(self.get_path(), version)
  364. def get_export_paths(self, version):
  365. tool_path = self.get_path_for_version(version)
  366. return [os.path.join(tool_path, *p) for p in self._current_options.export_paths]
  367. def get_export_vars(self, version):
  368. """
  369. Get the dictionary of environment variables to be exported, for the given version.
  370. Expands:
  371. - ${TOOL_PATH} => the actual path where the version is installed
  372. """
  373. result = {}
  374. for k, v in self._current_options.export_vars.items():
  375. replace_path = self.get_path_for_version(version).replace('\\', '\\\\')
  376. v_repl = re.sub(SUBST_TOOL_PATH_REGEX, replace_path, v)
  377. if v_repl != v:
  378. v_repl = to_shell_specific_paths([v_repl])[0]
  379. result[k] = v_repl
  380. return result
  381. def check_version(self, extra_paths=None):
  382. """
  383. Execute the tool, optionally prepending extra_paths to PATH,
  384. extract the version string and return it as a result.
  385. Raises ToolNotFound if the tool is not found (not present in the paths).
  386. Raises ToolExecError if the tool returns with a non-zero exit code.
  387. Returns 'unknown' if tool returns something from which version string
  388. can not be extracted.
  389. """
  390. # this function can not be called for a different platform
  391. assert self._platform == CURRENT_PLATFORM
  392. cmd = self._current_options.version_cmd
  393. try:
  394. version_cmd_result = run_cmd_check_output(cmd, None, extra_paths)
  395. except OSError:
  396. # tool is not on the path
  397. raise ToolNotFound('Tool {} not found'.format(self.name))
  398. except subprocess.CalledProcessError as e:
  399. raise ToolExecError('Command {} has returned non-zero exit code ({})\n'.format(
  400. ' '.join(self._current_options.version_cmd), e.returncode))
  401. in_str = version_cmd_result.decode("utf-8")
  402. match = re.search(self._current_options.version_regex, in_str)
  403. if not match:
  404. return UNKNOWN_VERSION
  405. return re.sub(self._current_options.version_regex, self._current_options.version_regex_replace, match.group(0))
  406. def get_install_type(self):
  407. return self._current_options.install
  408. def compatible_with_platform(self):
  409. return any([v.compatible_with_platform() for v in self.versions.values()])
  410. def get_recommended_version(self):
  411. recommended_versions = [k for k, v in self.versions.items()
  412. if v.status == IDFToolVersion.STATUS_RECOMMENDED
  413. and v.compatible_with_platform(self._platform)]
  414. assert len(recommended_versions) <= 1
  415. if recommended_versions:
  416. return recommended_versions[0]
  417. return None
  418. def get_preferred_installed_version(self):
  419. recommended_versions = [k for k in self.versions_installed
  420. if self.versions[k].status == IDFToolVersion.STATUS_RECOMMENDED
  421. and self.versions[k].compatible_with_platform(self._platform)]
  422. assert len(recommended_versions) <= 1
  423. if recommended_versions:
  424. return recommended_versions[0]
  425. return None
  426. def find_installed_versions(self):
  427. """
  428. Checks whether the tool can be found in PATH and in global_idf_tools_path.
  429. Writes results to self.version_in_path and self.versions_installed.
  430. """
  431. # this function can not be called for a different platform
  432. assert self._platform == CURRENT_PLATFORM
  433. # First check if the tool is in system PATH
  434. try:
  435. ver_str = self.check_version()
  436. except ToolNotFound:
  437. # not in PATH
  438. pass
  439. except ToolExecError:
  440. warn('tool {} found in path, but failed to run'.format(self.name))
  441. else:
  442. self.version_in_path = ver_str
  443. # Now check all the versions installed in global_idf_tools_path
  444. self.versions_installed = []
  445. for version, version_obj in self.versions.items():
  446. if not version_obj.compatible_with_platform():
  447. continue
  448. tool_path = self.get_path_for_version(version)
  449. if not os.path.exists(tool_path):
  450. # version not installed
  451. continue
  452. try:
  453. ver_str = self.check_version(self.get_export_paths(version))
  454. except ToolNotFound:
  455. warn('directory for tool {} version {} is present, but tool was not found'.format(
  456. self.name, version))
  457. except ToolExecError:
  458. warn('tool {} version {} is installed, but the tool failed to run'.format(
  459. self.name, version))
  460. else:
  461. if ver_str != version:
  462. warn('tool {} version {} is installed, but has reported version {}'.format(
  463. self.name, version, ver_str))
  464. else:
  465. self.versions_installed.append(version)
  466. def download(self, version):
  467. assert(version in self.versions)
  468. download_obj = self.versions[version].get_download_for_platform(self._platform)
  469. if not download_obj:
  470. fatal('No packages for tool {} platform {}!'.format(self.name, self._platform))
  471. raise DownloadError()
  472. url = download_obj.url
  473. archive_name = os.path.basename(url)
  474. local_path = os.path.join(global_idf_tools_path, 'dist', archive_name)
  475. mkdir_p(os.path.dirname(local_path))
  476. if os.path.isfile(local_path):
  477. if not self.check_download_file(download_obj, local_path):
  478. warn('removing downloaded file {0} and downloading again'.format(archive_name))
  479. os.unlink(local_path)
  480. else:
  481. info('file {0} is already downloaded'.format(archive_name))
  482. return
  483. downloaded = False
  484. for retry in range(DOWNLOAD_RETRY_COUNT):
  485. local_temp_path = local_path + '.tmp'
  486. info('Downloading {} to {}'.format(archive_name, local_temp_path))
  487. urlretrieve(url, local_temp_path, report_progress if not global_non_interactive else None)
  488. sys.stdout.write("\rDone\n")
  489. sys.stdout.flush()
  490. if not self.check_download_file(download_obj, local_temp_path):
  491. warn('Failed to download file {}'.format(local_temp_path))
  492. continue
  493. rename_with_retry(local_temp_path, local_path)
  494. downloaded = True
  495. break
  496. if not downloaded:
  497. fatal('Failed to download, and retry count has expired')
  498. raise DownloadError()
  499. def install(self, version):
  500. # Currently this is called after calling 'download' method, so here are a few asserts
  501. # for the conditions which should be true once that method is done.
  502. assert (version in self.versions)
  503. download_obj = self.versions[version].get_download_for_platform(self._platform)
  504. assert (download_obj is not None)
  505. archive_name = os.path.basename(download_obj.url)
  506. archive_path = os.path.join(global_idf_tools_path, 'dist', archive_name)
  507. assert (os.path.isfile(archive_path))
  508. dest_dir = self.get_path_for_version(version)
  509. if os.path.exists(dest_dir):
  510. warn('destination path already exists, removing')
  511. shutil.rmtree(dest_dir)
  512. mkdir_p(dest_dir)
  513. unpack(archive_path, dest_dir)
  514. if self._current_options.strip_container_dirs:
  515. strip_container_dirs(dest_dir, self._current_options.strip_container_dirs)
  516. @staticmethod
  517. def check_download_file(download_obj, local_path):
  518. expected_sha256 = download_obj.sha256
  519. expected_size = download_obj.size
  520. file_size, file_sha256 = get_file_size_sha256(local_path)
  521. if file_size != expected_size:
  522. warn('file size mismatch for {}, expected {}, got {}'.format(local_path, expected_size, file_size))
  523. return False
  524. if file_sha256 != expected_sha256:
  525. warn('hash mismatch for {}, expected {}, got {}'.format(local_path, expected_sha256, file_sha256))
  526. return False
  527. return True
  528. @classmethod
  529. def from_json(cls, tool_dict):
  530. # json.load will return 'str' types in Python 3 and 'unicode' in Python 2
  531. expected_str_type = type(u'')
  532. # Validate json fields
  533. tool_name = tool_dict.get('name')
  534. if type(tool_name) is not expected_str_type:
  535. raise RuntimeError('tool_name is not a string')
  536. description = tool_dict.get('description')
  537. if type(description) is not expected_str_type:
  538. raise RuntimeError('description is not a string')
  539. version_cmd = tool_dict.get('version_cmd')
  540. if type(version_cmd) is not list:
  541. raise RuntimeError('version_cmd for tool %s is not a list of strings' % tool_name)
  542. version_regex = tool_dict.get('version_regex')
  543. if type(version_regex) is not expected_str_type or not version_regex:
  544. raise RuntimeError('version_regex for tool %s is not a non-empty string' % tool_name)
  545. version_regex_replace = tool_dict.get('version_regex_replace')
  546. if version_regex_replace and type(version_regex_replace) is not expected_str_type:
  547. raise RuntimeError('version_regex_replace for tool %s is not a string' % tool_name)
  548. export_paths = tool_dict.get('export_paths')
  549. if type(export_paths) is not list:
  550. raise RuntimeError('export_paths for tool %s is not a list' % tool_name)
  551. export_vars = tool_dict.get('export_vars', {})
  552. if type(export_vars) is not dict:
  553. raise RuntimeError('export_vars for tool %s is not a mapping' % tool_name)
  554. versions = tool_dict.get('versions')
  555. if type(versions) is not list:
  556. raise RuntimeError('versions for tool %s is not an array' % tool_name)
  557. install = tool_dict.get('install', False)
  558. if type(install) is not expected_str_type:
  559. raise RuntimeError('install for tool %s is not a string' % tool_name)
  560. info_url = tool_dict.get('info_url', False)
  561. if type(info_url) is not expected_str_type:
  562. raise RuntimeError('info_url for tool %s is not a string' % tool_name)
  563. license = tool_dict.get('license', False)
  564. if type(license) is not expected_str_type:
  565. raise RuntimeError('license for tool %s is not a string' % tool_name)
  566. strip_container_dirs = tool_dict.get('strip_container_dirs', 0)
  567. if strip_container_dirs and type(strip_container_dirs) is not int:
  568. raise RuntimeError('strip_container_dirs for tool %s is not an int' % tool_name)
  569. overrides_list = tool_dict.get('platform_overrides', [])
  570. if type(overrides_list) is not list:
  571. raise RuntimeError('platform_overrides for tool %s is not a list' % tool_name)
  572. # Create the object
  573. tool_obj = cls(tool_name, description, install, info_url, license,
  574. version_cmd, version_regex, version_regex_replace,
  575. strip_container_dirs)
  576. for path in export_paths:
  577. tool_obj.options.export_paths.append(path)
  578. for name, value in export_vars.items():
  579. tool_obj.options.export_vars[name] = value
  580. for index, override in enumerate(overrides_list):
  581. platforms_list = override.get('platforms')
  582. if type(platforms_list) is not list:
  583. raise RuntimeError('platforms for override %d of tool %s is not a list' % (index, tool_name))
  584. install = override.get('install')
  585. if install is not None and type(install) is not expected_str_type:
  586. raise RuntimeError('install for override %d of tool %s is not a string' % (index, tool_name))
  587. version_cmd = override.get('version_cmd')
  588. if version_cmd is not None and type(version_cmd) is not list:
  589. raise RuntimeError('version_cmd for override %d of tool %s is not a list of strings' %
  590. (index, tool_name))
  591. version_regex = override.get('version_regex')
  592. if version_regex is not None and (type(version_regex) is not expected_str_type or not version_regex):
  593. raise RuntimeError('version_regex for override %d of tool %s is not a non-empty string' %
  594. (index, tool_name))
  595. version_regex_replace = override.get('version_regex_replace')
  596. if version_regex_replace is not None and type(version_regex_replace) is not expected_str_type:
  597. raise RuntimeError('version_regex_replace for override %d of tool %s is not a string' %
  598. (index, tool_name))
  599. export_paths = override.get('export_paths')
  600. if export_paths is not None and type(export_paths) is not list:
  601. raise RuntimeError('export_paths for override %d of tool %s is not a list' % (index, tool_name))
  602. export_vars = override.get('export_vars')
  603. if export_vars is not None and type(export_vars) is not dict:
  604. raise RuntimeError('export_vars for override %d of tool %s is not a mapping' % (index, tool_name))
  605. tool_obj.platform_overrides.append(override)
  606. recommended_versions = {}
  607. for version_dict in versions:
  608. version = version_dict.get('name')
  609. if type(version) is not expected_str_type:
  610. raise RuntimeError('version name for tool {} is not a string'.format(tool_name))
  611. version_status = version_dict.get('status')
  612. if type(version_status) is not expected_str_type and version_status not in IDFToolVersion.STATUS_VALUES:
  613. raise RuntimeError('tool {} version {} status is not one of {}', tool_name, version,
  614. IDFToolVersion.STATUS_VALUES)
  615. version_obj = IDFToolVersion(version, version_status)
  616. for platform_id, platform_dict in version_dict.items():
  617. if platform_id in ['name', 'status']:
  618. continue
  619. if platform_id not in PLATFORM_FROM_NAME.keys():
  620. raise RuntimeError('invalid platform %s for tool %s version %s' %
  621. (platform_id, tool_name, version))
  622. version_obj.add_download(platform_id,
  623. platform_dict['url'], platform_dict['size'], platform_dict['sha256'])
  624. if version_status == IDFToolVersion.STATUS_RECOMMENDED:
  625. if platform_id not in recommended_versions:
  626. recommended_versions[platform_id] = []
  627. recommended_versions[platform_id].append(version)
  628. tool_obj.add_version(version_obj)
  629. for platform_id, version_list in recommended_versions.items():
  630. if len(version_list) > 1:
  631. raise RuntimeError('tool {} for platform {} has {} recommended versions'.format(
  632. tool_name, platform_id, len(recommended_versions)))
  633. if install != IDFTool.INSTALL_NEVER and len(recommended_versions) == 0:
  634. raise RuntimeError('required/optional tool {} for platform {} has no recommended versions'.format(
  635. tool_name, platform_id))
  636. tool_obj._update_current_options()
  637. return tool_obj
  638. def to_json(self):
  639. versions_array = []
  640. for version, version_obj in self.versions.items():
  641. version_json = {
  642. 'name': version,
  643. 'status': version_obj.status
  644. }
  645. for platform_id, download in version_obj.downloads.items():
  646. version_json[platform_id] = {
  647. 'url': download.url,
  648. 'size': download.size,
  649. 'sha256': download.sha256
  650. }
  651. versions_array.append(version_json)
  652. overrides_array = self.platform_overrides
  653. tool_json = {
  654. 'name': self.name,
  655. 'description': self.description,
  656. 'export_paths': self.options.export_paths,
  657. 'export_vars': self.options.export_vars,
  658. 'install': self.options.install,
  659. 'info_url': self.options.info_url,
  660. 'license': self.options.license,
  661. 'version_cmd': self.options.version_cmd,
  662. 'version_regex': self.options.version_regex,
  663. 'versions': versions_array,
  664. }
  665. if self.options.version_regex_replace != VERSION_REGEX_REPLACE_DEFAULT:
  666. tool_json['version_regex_replace'] = self.options.version_regex_replace
  667. if overrides_array:
  668. tool_json['platform_overrides'] = overrides_array
  669. if self.options.strip_container_dirs:
  670. tool_json['strip_container_dirs'] = self.options.strip_container_dirs
  671. return tool_json
  672. def load_tools_info():
  673. """
  674. Load tools metadata from tools.json, return a dictionary: tool name - tool info
  675. """
  676. tool_versions_file_name = global_tools_json
  677. with open(tool_versions_file_name, 'r') as f:
  678. tools_info = json.load(f)
  679. return parse_tools_info_json(tools_info)
  680. def parse_tools_info_json(tools_info):
  681. """
  682. Parse and validate the dictionary obtained by loading the tools.json file.
  683. Returns a dictionary of tools (key: tool name, value: IDFTool object).
  684. """
  685. if tools_info['version'] != TOOLS_FILE_VERSION:
  686. raise RuntimeError('Invalid version')
  687. tools_dict = OrderedDict()
  688. tools_array = tools_info.get('tools')
  689. if type(tools_array) is not list:
  690. raise RuntimeError('tools property is missing or not an array')
  691. for tool_dict in tools_array:
  692. tool = IDFTool.from_json(tool_dict)
  693. tools_dict[tool.name] = tool
  694. return tools_dict
  695. def dump_tools_json(tools_info):
  696. tools_array = []
  697. for tool_name, tool_obj in tools_info.items():
  698. tool_json = tool_obj.to_json()
  699. tools_array.append(tool_json)
  700. file_json = {'version': TOOLS_FILE_VERSION, 'tools': tools_array}
  701. return json.dumps(file_json, indent=2, separators=(',', ': '), sort_keys=True)
  702. def get_python_env_path():
  703. python_ver_major_minor = '{}.{}'.format(sys.version_info.major, sys.version_info.minor)
  704. version_file_path = os.path.join(global_idf_path, 'version.txt')
  705. if os.path.exists(version_file_path):
  706. with open(version_file_path, "r") as version_file:
  707. idf_version_str = version_file.read()
  708. else:
  709. idf_version_str = subprocess.check_output(['git', '--work-tree=' + global_idf_path, 'describe'], cwd=global_idf_path, env=os.environ).decode()
  710. match = re.match(r'^v([0-9]+\.[0-9]+).*', idf_version_str)
  711. idf_version = match.group(1)
  712. idf_python_env_path = os.path.join(global_idf_tools_path, 'python_env',
  713. 'idf{}_py{}_env'.format(idf_version, python_ver_major_minor))
  714. if sys.platform == 'win32':
  715. subdir = 'Scripts'
  716. python_exe = 'python.exe'
  717. else:
  718. subdir = 'bin'
  719. python_exe = 'python'
  720. idf_python_export_path = os.path.join(idf_python_env_path, subdir)
  721. virtualenv_python = os.path.join(idf_python_export_path, python_exe)
  722. return idf_python_env_path, idf_python_export_path, virtualenv_python
  723. def action_list(args):
  724. tools_info = load_tools_info()
  725. for name, tool in tools_info.items():
  726. if tool.get_install_type() == IDFTool.INSTALL_NEVER:
  727. continue
  728. optional_str = ' (optional)' if tool.get_install_type() == IDFTool.INSTALL_ON_REQUEST else ''
  729. info('* {}: {}{}'.format(name, tool.description, optional_str))
  730. tool.find_installed_versions()
  731. versions_for_platform = {k: v for k, v in tool.versions.items() if v.compatible_with_platform()}
  732. if not versions_for_platform:
  733. info(' (no versions compatible with platform {})'.format(PYTHON_PLATFORM))
  734. continue
  735. versions_sorted = sorted(versions_for_platform.keys(), key=tool.versions.get, reverse=True)
  736. for version in versions_sorted:
  737. version_obj = tool.versions[version]
  738. info(' - {} ({}{})'.format(version, version_obj.status,
  739. ', installed' if version in tool.versions_installed else ''))
  740. def action_check(args):
  741. tools_info = load_tools_info()
  742. not_found_list = []
  743. info('Checking for installed tools...')
  744. for name, tool in tools_info.items():
  745. if tool.get_install_type() == IDFTool.INSTALL_NEVER:
  746. continue
  747. tool_found_somewhere = False
  748. info('Checking tool %s' % name)
  749. tool.find_installed_versions()
  750. if tool.version_in_path:
  751. info(' version found in PATH: %s' % tool.version_in_path)
  752. tool_found_somewhere = True
  753. else:
  754. info(' no version found in PATH')
  755. for version in tool.versions_installed:
  756. info(' version installed in tools directory: %s' % version)
  757. tool_found_somewhere = True
  758. if not tool_found_somewhere and tool.get_install_type() == IDFTool.INSTALL_ALWAYS:
  759. not_found_list.append(name)
  760. if not_found_list:
  761. fatal('The following required tools were not found: ' + ' '.join(not_found_list))
  762. raise SystemExit(1)
  763. def action_export(args):
  764. tools_info = load_tools_info()
  765. all_tools_found = True
  766. export_vars = {}
  767. paths_to_export = []
  768. for name, tool in tools_info.items():
  769. if tool.get_install_type() == IDFTool.INSTALL_NEVER:
  770. continue
  771. tool.find_installed_versions()
  772. if tool.version_in_path:
  773. if tool.version_in_path not in tool.versions:
  774. # unsupported version
  775. if args.prefer_system:
  776. warn('using an unsupported version of tool {} found in PATH: {}'.format(
  777. tool.name, tool.version_in_path))
  778. continue
  779. else:
  780. # unsupported version in path
  781. pass
  782. else:
  783. # supported/deprecated version in PATH, use it
  784. version_obj = tool.versions[tool.version_in_path]
  785. if version_obj.status == IDFToolVersion.STATUS_SUPPORTED:
  786. info('Using a supported version of tool {} found in PATH: {}.'.format(name, tool.version_in_path),
  787. f=sys.stderr)
  788. info('However the recommended version is {}.'.format(tool.get_recommended_version()),
  789. f=sys.stderr)
  790. elif version_obj.status == IDFToolVersion.STATUS_DEPRECATED:
  791. warn('using a deprecated version of tool {} found in PATH: {}'.format(name, tool.version_in_path))
  792. continue
  793. self_restart_cmd = '{} {}{}'.format(sys.executable, __file__,
  794. (' --tools-json ' + args.tools_json) if args.tools_json else '')
  795. self_restart_cmd = to_shell_specific_paths([self_restart_cmd])[0]
  796. if IDF_TOOLS_EXPORT_CMD:
  797. prefer_system_hint = ''
  798. else:
  799. prefer_system_hint = ' To use it, run \'{} export --prefer-system\''.format(self_restart_cmd)
  800. if IDF_TOOLS_INSTALL_CMD:
  801. install_cmd = to_shell_specific_paths([IDF_TOOLS_INSTALL_CMD])[0]
  802. else:
  803. install_cmd = self_restart_cmd + ' install'
  804. if not tool.versions_installed:
  805. if tool.get_install_type() == IDFTool.INSTALL_ALWAYS:
  806. all_tools_found = False
  807. fatal('tool {} has no installed versions. Please run \'{}\' to install it.'.format(
  808. tool.name, install_cmd))
  809. if tool.version_in_path and tool.version_in_path not in tool.versions:
  810. info('An unsupported version of tool {} was found in PATH: {}. '.format(name, tool.version_in_path) +
  811. prefer_system_hint, f=sys.stderr)
  812. continue
  813. else:
  814. # tool is optional, and does not have versions installed
  815. # use whatever is available in PATH
  816. continue
  817. if tool.version_in_path and tool.version_in_path not in tool.versions:
  818. info('Not using an unsupported version of tool {} found in PATH: {}.'.format(
  819. tool.name, tool.version_in_path) + prefer_system_hint, f=sys.stderr)
  820. version_to_use = tool.get_preferred_installed_version()
  821. export_paths = tool.get_export_paths(version_to_use)
  822. if export_paths:
  823. paths_to_export += export_paths
  824. tool_export_vars = tool.get_export_vars(version_to_use)
  825. for k, v in tool_export_vars.items():
  826. old_v = os.environ.get(k)
  827. if old_v is None or old_v != v:
  828. export_vars[k] = v
  829. current_path = os.getenv('PATH')
  830. idf_python_env_path, idf_python_export_path, virtualenv_python = get_python_env_path()
  831. if os.path.exists(virtualenv_python):
  832. idf_python_env_path = to_shell_specific_paths([idf_python_env_path])[0]
  833. if os.getenv('IDF_PYTHON_ENV_PATH') != idf_python_env_path:
  834. export_vars['IDF_PYTHON_ENV_PATH'] = to_shell_specific_paths([idf_python_env_path])[0]
  835. if idf_python_export_path not in current_path:
  836. paths_to_export.append(idf_python_export_path)
  837. idf_tools_dir = os.path.join(global_idf_path, 'tools')
  838. idf_tools_dir = to_shell_specific_paths([idf_tools_dir])[0]
  839. if idf_tools_dir not in current_path:
  840. paths_to_export.append(idf_tools_dir)
  841. if sys.platform == 'win32' and 'MSYSTEM' not in os.environ:
  842. old_path = '%PATH%'
  843. path_sep = ';'
  844. else:
  845. old_path = '$PATH'
  846. # can't trust os.pathsep here, since for Windows Python started from MSYS shell,
  847. # os.pathsep will be ';'
  848. path_sep = ':'
  849. if args.format == EXPORT_SHELL:
  850. if sys.platform == 'win32' and 'MSYSTEM' not in os.environ:
  851. export_format = 'SET "{}={}"'
  852. export_sep = '\n'
  853. else:
  854. export_format = 'export {}="{}"'
  855. export_sep = ';'
  856. elif args.format == EXPORT_KEY_VALUE:
  857. export_format = '{}={}'
  858. export_sep = '\n'
  859. else:
  860. raise NotImplementedError('unsupported export format {}'.format(args.format))
  861. if paths_to_export:
  862. export_vars['PATH'] = path_sep.join(to_shell_specific_paths(paths_to_export) + [old_path])
  863. export_statements = export_sep.join([export_format.format(k, v) for k, v in export_vars.items()])
  864. if export_statements:
  865. print(export_statements)
  866. if not all_tools_found:
  867. raise SystemExit(1)
  868. def apply_mirror_prefix_map(args, tool_download_obj):
  869. """Rewrite URL for given tool_obj, given tool_version, and current platform,
  870. if --mirror-prefix-map flag or IDF_MIRROR_PREFIX_MAP environment variable is given.
  871. """
  872. mirror_prefix_map = None
  873. mirror_prefix_map_env = os.getenv('IDF_MIRROR_PREFIX_MAP')
  874. if mirror_prefix_map_env:
  875. mirror_prefix_map = mirror_prefix_map_env.split(';')
  876. if IDF_MAINTAINER and args.mirror_prefix_map:
  877. if mirror_prefix_map:
  878. warn('Both IDF_MIRROR_PREFIX_MAP environment variable and --mirror-prefix-map flag are specified, ' +
  879. 'will use the value from the command line.')
  880. mirror_prefix_map = args.mirror_prefix_map
  881. if mirror_prefix_map and tool_download_obj:
  882. for item in mirror_prefix_map:
  883. if URL_PREFIX_MAP_SEPARATOR not in item:
  884. warn('invalid mirror-prefix-map item (missing \'{}\') {}'.format(URL_PREFIX_MAP_SEPARATOR, item))
  885. continue
  886. search, replace = item.split(URL_PREFIX_MAP_SEPARATOR, 1)
  887. old_url = tool_download_obj.url
  888. new_url = re.sub(search, replace, old_url)
  889. if new_url != old_url:
  890. info('Changed download URL: {} => {}'.format(old_url, new_url))
  891. tool_download_obj.url = new_url
  892. break
  893. def action_download(args):
  894. tools_info = load_tools_info()
  895. tools_spec = args.tools
  896. if args.platform not in PLATFORM_FROM_NAME:
  897. fatal('unknown platform: {}' % args.platform)
  898. raise SystemExit(1)
  899. platform = PLATFORM_FROM_NAME[args.platform]
  900. tools_info_for_platform = OrderedDict()
  901. for name, tool_obj in tools_info.items():
  902. tool_for_platform = tool_obj.copy_for_platform(platform)
  903. tools_info_for_platform[name] = tool_for_platform
  904. if not tools_spec or 'required' in tools_spec:
  905. tools_spec = [k for k, v in tools_info_for_platform.items() if v.get_install_type() == IDFTool.INSTALL_ALWAYS]
  906. info('Downloading tools for {}: {}'.format(platform, ', '.join(tools_spec)))
  907. elif 'all' in tools_spec:
  908. tools_spec = [k for k, v in tools_info_for_platform.items() if v.get_install_type() != IDFTool.INSTALL_NEVER]
  909. info('Downloading tools for {}: {}'.format(platform, ', '.join(tools_spec)))
  910. for tool_spec in tools_spec:
  911. if '@' not in tool_spec:
  912. tool_name = tool_spec
  913. tool_version = None
  914. else:
  915. tool_name, tool_version = tool_spec.split('@', 1)
  916. if tool_name not in tools_info_for_platform:
  917. fatal('unknown tool name: {}'.format(tool_name))
  918. raise SystemExit(1)
  919. tool_obj = tools_info_for_platform[tool_name]
  920. if tool_version is not None and tool_version not in tool_obj.versions:
  921. fatal('unknown version for tool {}: {}'.format(tool_name, tool_version))
  922. raise SystemExit(1)
  923. if tool_version is None:
  924. tool_version = tool_obj.get_recommended_version()
  925. if tool_version is None:
  926. fatal('tool {} not found for {} platform'.format(tool_name, platform))
  927. raise SystemExit(1)
  928. tool_spec = '{}@{}'.format(tool_name, tool_version)
  929. info('Downloading {}'.format(tool_spec))
  930. apply_mirror_prefix_map(args, tool_obj.versions[tool_version].get_download_for_platform(platform))
  931. tool_obj.download(tool_version)
  932. def action_install(args):
  933. tools_info = load_tools_info()
  934. tools_spec = args.tools
  935. if not tools_spec or 'required' in tools_spec:
  936. tools_spec = [k for k, v in tools_info.items() if v.get_install_type() == IDFTool.INSTALL_ALWAYS]
  937. info('Installing tools: {}'.format(', '.join(tools_spec)))
  938. elif 'all' in tools_spec:
  939. tools_spec = [k for k, v in tools_info.items() if v.get_install_type() != IDFTool.INSTALL_NEVER]
  940. info('Installing tools: {}'.format(', '.join(tools_spec)))
  941. for tool_spec in tools_spec:
  942. if '@' not in tool_spec:
  943. tool_name = tool_spec
  944. tool_version = None
  945. else:
  946. tool_name, tool_version = tool_spec.split('@', 1)
  947. if tool_name not in tools_info:
  948. fatal('unknown tool name: {}'.format(tool_name))
  949. raise SystemExit(1)
  950. tool_obj = tools_info[tool_name]
  951. if not tool_obj.compatible_with_platform():
  952. fatal('tool {} does not have versions compatible with platform {}'.format(tool_name, CURRENT_PLATFORM))
  953. raise SystemExit(1)
  954. if tool_version is not None and tool_version not in tool_obj.versions:
  955. fatal('unknown version for tool {}: {}'.format(tool_name, tool_version))
  956. raise SystemExit(1)
  957. if tool_version is None:
  958. tool_version = tool_obj.get_recommended_version()
  959. assert tool_version is not None
  960. tool_obj.find_installed_versions()
  961. tool_spec = '{}@{}'.format(tool_name, tool_version)
  962. if tool_version in tool_obj.versions_installed:
  963. info('Skipping {} (already installed)'.format(tool_spec))
  964. continue
  965. info('Installing {}'.format(tool_spec))
  966. apply_mirror_prefix_map(args, tool_obj.versions[tool_version].get_download_for_platform(PYTHON_PLATFORM))
  967. tool_obj.download(tool_version)
  968. tool_obj.install(tool_version)
  969. def action_install_python_env(args):
  970. idf_python_env_path, _, virtualenv_python = get_python_env_path()
  971. if args.reinstall and os.path.exists(idf_python_env_path):
  972. warn('Removing the existing Python environment in {}'.format(idf_python_env_path))
  973. shutil.rmtree(idf_python_env_path)
  974. if not os.path.exists(virtualenv_python):
  975. info('Creating a new Python environment in {}'.format(idf_python_env_path))
  976. try:
  977. import virtualenv # noqa: F401
  978. except ImportError:
  979. info('Installing virtualenv')
  980. subprocess.check_call([sys.executable, '-m', 'pip', 'install', '--user', 'virtualenv'],
  981. stdout=sys.stdout, stderr=sys.stderr)
  982. subprocess.check_call([sys.executable, '-m', 'virtualenv', idf_python_env_path],
  983. stdout=sys.stdout, stderr=sys.stderr)
  984. run_args = [virtualenv_python, '-m', 'pip', 'install', '--no-warn-script-location']
  985. requirements_txt = os.path.join(global_idf_path, 'requirements.txt')
  986. run_args += ['-r', requirements_txt]
  987. if args.extra_wheels_dir:
  988. run_args += ['--find-links', args.extra_wheels_dir]
  989. info('Installing Python packages from {}'.format(requirements_txt))
  990. subprocess.check_call(run_args, stdout=sys.stdout, stderr=sys.stderr)
  991. def action_add_version(args):
  992. tools_info = load_tools_info()
  993. tool_name = args.tool
  994. tool_obj = tools_info.get(tool_name)
  995. if not tool_obj:
  996. info('Creating new tool entry for {}'.format(tool_name))
  997. tool_obj = IDFTool(tool_name, TODO_MESSAGE, IDFTool.INSTALL_ALWAYS,
  998. TODO_MESSAGE, TODO_MESSAGE, [TODO_MESSAGE], TODO_MESSAGE)
  999. tools_info[tool_name] = tool_obj
  1000. version = args.version
  1001. version_obj = tool_obj.versions.get(version)
  1002. if version not in tool_obj.versions:
  1003. info('Creating new version {}'.format(version))
  1004. version_obj = IDFToolVersion(version, IDFToolVersion.STATUS_SUPPORTED)
  1005. tool_obj.versions[version] = version_obj
  1006. url_prefix = args.url_prefix or 'https://%s/' % TODO_MESSAGE
  1007. for file_path in args.files:
  1008. file_name = os.path.basename(file_path)
  1009. # Guess which platform this file is for
  1010. found_platform = None
  1011. for platform_alias, platform_id in PLATFORM_FROM_NAME.items():
  1012. if platform_alias in file_name:
  1013. found_platform = platform_id
  1014. break
  1015. if found_platform is None:
  1016. info('Could not guess platform for file {}'.format(file_name))
  1017. found_platform = TODO_MESSAGE
  1018. # Get file size and calculate the SHA256
  1019. file_size, file_sha256 = get_file_size_sha256(file_path)
  1020. url = url_prefix + file_name
  1021. info('Adding download for platform {}'.format(found_platform))
  1022. info(' size: {}'.format(file_size))
  1023. info(' SHA256: {}'.format(file_sha256))
  1024. info(' URL: {}'.format(url))
  1025. version_obj.add_download(found_platform, url, file_size, file_sha256)
  1026. json_str = dump_tools_json(tools_info)
  1027. if not args.output:
  1028. args.output = os.path.join(global_idf_path, TOOLS_FILE_NEW)
  1029. with open(args.output, 'w') as f:
  1030. f.write(json_str)
  1031. f.write('\n')
  1032. info('Wrote output to {}'.format(args.output))
  1033. def action_rewrite(args):
  1034. tools_info = load_tools_info()
  1035. json_str = dump_tools_json(tools_info)
  1036. if not args.output:
  1037. args.output = os.path.join(global_idf_path, TOOLS_FILE_NEW)
  1038. with open(args.output, 'w') as f:
  1039. f.write(json_str)
  1040. f.write('\n')
  1041. info('Wrote output to {}'.format(args.output))
  1042. def action_validate(args):
  1043. try:
  1044. import jsonschema
  1045. except ImportError:
  1046. fatal('You need to install jsonschema package to use validate command')
  1047. raise SystemExit(1)
  1048. with open(os.path.join(global_idf_path, TOOLS_FILE), 'r') as tools_file:
  1049. tools_json = json.load(tools_file)
  1050. with open(os.path.join(global_idf_path, TOOLS_SCHEMA_FILE), 'r') as schema_file:
  1051. schema_json = json.load(schema_file)
  1052. jsonschema.validate(tools_json, schema_json)
  1053. # on failure, this will raise an exception with a fairly verbose diagnostic message
  1054. def main(argv):
  1055. parser = argparse.ArgumentParser()
  1056. parser.add_argument('--quiet', help='Don\'t output diagnostic messages to stdout/stderr', action='store_true')
  1057. parser.add_argument('--non-interactive', help='Don\'t output interactive messages and questions', action='store_true')
  1058. parser.add_argument('--tools-json', help='Path to the tools.json file to use')
  1059. parser.add_argument('--idf-path', help='ESP-IDF path to use')
  1060. subparsers = parser.add_subparsers(dest='action')
  1061. subparsers.add_parser('list', help='List tools and versions available')
  1062. subparsers.add_parser('check', help='Print summary of tools installed or found in PATH')
  1063. export = subparsers.add_parser('export', help='Output command for setting tool paths, suitable for shell')
  1064. export.add_argument('--format', choices=[EXPORT_SHELL, EXPORT_KEY_VALUE], default=EXPORT_SHELL,
  1065. help='Format of the output: shell (suitable for printing into shell), ' +
  1066. 'or key-value (suitable for parsing by other tools')
  1067. export.add_argument('--prefer-system', help='Normally, if the tool is already present in PATH, ' +
  1068. 'but has an unsupported version, a version from the tools directory ' +
  1069. 'will be used instead. If this flag is given, the version in PATH ' +
  1070. 'will be used.', action='store_true')
  1071. install = subparsers.add_parser('install', help='Download and install tools into the tools directory')
  1072. install.add_argument('tools', metavar='TOOL', nargs='*', default=['required'],
  1073. help='Tools to install. ' +
  1074. 'To install a specific version use <tool_name>@<version> syntax. ' +
  1075. 'Use empty or \'required\' to install required tools, not optional ones. ' +
  1076. 'Use \'all\' to install all tools, including the optional ones.')
  1077. download = subparsers.add_parser('download', help='Download the tools into the dist directory')
  1078. download.add_argument('--platform', help='Platform to download the tools for')
  1079. download.add_argument('tools', metavar='TOOL', nargs='*', default=['required'],
  1080. help='Tools to download. ' +
  1081. 'To download a specific version use <tool_name>@<version> syntax. ' +
  1082. 'Use empty or \'required\' to download required tools, not optional ones. ' +
  1083. 'Use \'all\' to download all tools, including the optional ones.')
  1084. if IDF_MAINTAINER:
  1085. for subparser in [download, install]:
  1086. subparser.add_argument('--mirror-prefix-map', nargs='*',
  1087. help='Pattern to rewrite download URLs, with source and replacement separated by comma.' +
  1088. ' E.g. http://foo.com,http://test.foo.com')
  1089. install_python_env = subparsers.add_parser('install-python-env',
  1090. help='Create Python virtual environment and install the ' +
  1091. 'required Python packages')
  1092. install_python_env.add_argument('--reinstall', help='Discard the previously installed environment',
  1093. action='store_true')
  1094. install_python_env.add_argument('--extra-wheels-dir', help='Additional directories with wheels ' +
  1095. 'to use during installation')
  1096. if IDF_MAINTAINER:
  1097. add_version = subparsers.add_parser('add-version', help='Add or update download info for a version')
  1098. add_version.add_argument('--output', help='Save new tools.json into this file')
  1099. add_version.add_argument('--tool', help='Tool name to set add a version for', required=True)
  1100. add_version.add_argument('--version', help='Version identifier', required=True)
  1101. add_version.add_argument('--url-prefix', help='String to prepend to file names to obtain download URLs')
  1102. add_version.add_argument('files', help='File names of the download artifacts', nargs='*')
  1103. rewrite = subparsers.add_parser('rewrite', help='Load tools.json, validate, and save the result back into JSON')
  1104. rewrite.add_argument('--output', help='Save new tools.json into this file')
  1105. subparsers.add_parser('validate', help='Validate tools.json against schema file')
  1106. args = parser.parse_args(argv)
  1107. if args.action is None:
  1108. parser.print_help()
  1109. parser.exit(1)
  1110. if args.quiet:
  1111. global global_quiet
  1112. global_quiet = True
  1113. if args.non_interactive:
  1114. global global_non_interactive
  1115. global_non_interactive = True
  1116. global global_idf_path
  1117. global_idf_path = os.environ.get('IDF_PATH')
  1118. if args.idf_path:
  1119. global_idf_path = args.idf_path
  1120. if not global_idf_path:
  1121. global_idf_path = os.path.realpath(os.path.join(os.path.dirname(__file__), ".."))
  1122. global global_idf_tools_path
  1123. global_idf_tools_path = os.environ.get('IDF_TOOLS_PATH') or os.path.expanduser(IDF_TOOLS_PATH_DEFAULT)
  1124. # On macOS, unset __PYVENV_LAUNCHER__ variable if it is set.
  1125. # Otherwise sys.executable keeps pointing to the system Python, even when a python binary from a virtualenv is invoked.
  1126. # See https://bugs.python.org/issue22490#msg283859.
  1127. os.environ.pop('__PYVENV_LAUNCER__', None)
  1128. if sys.version_info.major == 2:
  1129. try:
  1130. global_idf_tools_path.decode('ascii')
  1131. except UnicodeDecodeError:
  1132. fatal('IDF_TOOLS_PATH contains non-ASCII characters: {}'.format(global_idf_tools_path) +
  1133. '\nThis is not supported yet with Python 2. ' +
  1134. 'Please set IDF_TOOLS_PATH to a directory with an ASCII name, or switch to Python 3.')
  1135. raise SystemExit(1)
  1136. if CURRENT_PLATFORM == UNKNOWN_PLATFORM:
  1137. fatal('Platform {} appears to be unsupported'.format(PYTHON_PLATFORM))
  1138. raise SystemExit(1)
  1139. global global_tools_json
  1140. if args.tools_json:
  1141. global_tools_json = args.tools_json
  1142. else:
  1143. global_tools_json = os.path.join(global_idf_path, TOOLS_FILE)
  1144. action_func_name = 'action_' + args.action.replace('-', '_')
  1145. action_func = globals()[action_func_name]
  1146. action_func(args)
  1147. if __name__ == '__main__':
  1148. main(sys.argv[1:])