Skip to content

Commit

Permalink
Tools: Improve download error messages coming from idf_tools.py
Browse files Browse the repository at this point in the history
Closes #9618
  • Loading branch information
dobairoland committed Sep 23, 2022
1 parent ef66c9c commit e2c6652
Showing 1 changed file with 31 additions and 12 deletions.
43 changes: 31 additions & 12 deletions tools/idf_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,25 @@ def info(text, f=None, *args): # type: (str, Optional[IO[str]], str) -> None
f.write(text + '\n', *args)


def print_hints_on_download_error(err): # type: (str) -> None
info('Please make sure you have a working Internet connection.')

if 'CERTIFICATE' in err:
info('Certificate issues are usually caused by an outdated certificate database on your computer.')
info('Please check the documentation of your operating system for how to upgrade it.')

if sys.platform == 'darwin':
info('Running "./Install\\ Certificates.command" might be able to fix this issue.')

info('Running "{} -m pip install --upgrade certifi" can also resolve this issue in some cases.'.format(sys.executable))

# Certificate issue on Windows can be hidden under different errors which might be even translated,
# e.g. "[WinError -2146881269] ASN1 valor de tag inválido encontrado"
if sys.platform == 'win32':
info('By downloading and using the offline installer from https://dl.espressif.com/dl/esp-idf '
'you might be able to work around this issue.')


def run_cmd_check_output(cmd, input_text=None, extra_paths=None):
# type: (List[str], Optional[str], Optional[List[str]]) -> bytes
# If extra_paths is given, locate the executable in one of these directories.
Expand Down Expand Up @@ -401,7 +420,7 @@ def urlretrieve_ctx(url, filename, reporthook=None, data=None, context=None):
return result


def download(url, destination): # type: (str, str) -> None
def download(url, destination): # type: (str, str) -> Optional[Exception]
info(f'Downloading {url}')
info(f'Destination: {destination}')
try:
Expand All @@ -419,10 +438,10 @@ def download(url, destination): # type: (str, str) -> None

urlretrieve_ctx(url, destination, report_progress if not global_non_interactive else None, context=ctx)
sys.stdout.write('\rDone\n')
return None
except Exception as e:
# urlretrieve could throw different exceptions, e.g. IOError when the server is down
# Errors are ignored because the downloaded file is checked a couple of lines later.
warn('Download failure {}'.format(e))
return e
finally:
sys.stdout.flush()

Expand Down Expand Up @@ -482,10 +501,6 @@ class ToolExecError(RuntimeError):
pass


class DownloadError(RuntimeError):
pass


class IDFToolDownload(object):
def __init__(self, platform_name, url, size, sha256): # type: (str, str, int, str) -> None
self.platform_name = platform_name
Expand Down Expand Up @@ -732,7 +747,7 @@ def download(self, version): # type: (str) -> None
download_obj = self.versions[version].get_download_for_platform(self._platform)
if not download_obj:
fatal('No packages for tool {} platform {}!'.format(self.name, self._platform))
raise DownloadError()
raise SystemExit(1)

url = download_obj.url
archive_name = os.path.basename(url)
Expand All @@ -750,16 +765,18 @@ def download(self, version): # type: (str) -> None
downloaded = False
local_temp_path = local_path + '.tmp'
for retry in range(DOWNLOAD_RETRY_COUNT):
download(url, local_temp_path)
err = download(url, local_temp_path)
if not os.path.isfile(local_temp_path) or not self.check_download_file(download_obj, local_temp_path):
warn('Download failure: {}'.format(err))
warn('Failed to download {} to {}'.format(url, local_temp_path))
continue
rename_with_retry(local_temp_path, local_path)
downloaded = True
break
if not downloaded:
fatal('Failed to download, and retry count has expired')
raise DownloadError()
print_hints_on_download_error(str(err))
raise SystemExit(1)

def install(self, version): # type: (str) -> None
# Currently this is called after calling 'download' method, so here are a few asserts
Expand Down Expand Up @@ -1873,8 +1890,9 @@ def get_constraints(idf_version): # type: (str) -> str
pass

for _ in range(DOWNLOAD_RETRY_COUNT):
download(constraint_url, temp_path)
err = download(constraint_url, temp_path)
if not os.path.isfile(temp_path):
warn('Download failure: {}'.format(err))
warn('Failed to download {} to {}'.format(constraint_url, temp_path))
continue
if os.path.isfile(constraint_path):
Expand All @@ -1888,8 +1906,9 @@ def get_constraints(idf_version): # type: (str) -> str
return constraint_path
else:
fatal('Failed to download, and retry count has expired')
print_hints_on_download_error(str(err))
info('See the help on how to disable constraints in order to work around this issue.')
raise DownloadError()
raise SystemExit(1)


def install_legacy_python_virtualenv(path): # type: (str) -> None
Expand Down

0 comments on commit e2c6652

Please sign in to comment.