Files
aqtinstall/aqt/archives.py
Hiroshi Miura 97e9af09b3 Revert mirror selection to original
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
2019-11-29 21:01:24 +09:00

188 lines
7.6 KiB
Python

#!/usr/bin/env python
#
# Copyright (C) 2018 Linus Jahn <lnj@kaidan.im>
# Copyright (C) 2019 Hiroshi Miura <miurahr@linux.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
# the Software, and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import xml.etree.ElementTree as ElementTree
from logging import getLogger
import requests
class QtPackage:
"""
Hold package information.
"""
name = ""
url = ""
archive = ""
desc = ""
mirror = None
has_mirror = False
def __init__(self, name, archive_url, archive, package_desc, has_mirror=False):
self.name = name
self.url = archive_url
self.archive = archive
self.desc = package_desc
self.has_mirror = has_mirror
class QtArchives:
"""Hold Qt archive packages list."""
BASE_URL = 'https://download.qt.io/online/qtsdkrepository/'
archives = []
base = None
has_mirror = False
version = None
qt_ver_num = None
target = None
arch = None
mod_list = []
mirror = None
def __init__(self, os_name, target, version, arch, modules=None, mirror=None, logging=None):
self.version = version
self.qt_ver_num = self.version.replace(".", "")
self.target = target
self.arch = arch
self.mirror = mirror
self.os_name = os_name
if mirror is not None:
self.has_mirror = True
self.base = mirror + '/online/qtsdkrepository/'
else:
self.has_mirror = False
self.base = self.BASE_URL
if logging:
self.logger = logging
else:
self.logger = getLogger('aqt')
for m in modules if modules is not None else []:
fqmn = "qt.qt5.{}.{}.{}".format(self.qt_ver_num, m, arch)
self.mod_list.append(fqmn)
self._get_archives()
def _get_archives(self):
qt_ver_num = self.version.replace(".", "")
# Get packages index
archive_path = "{0}{1}{2}/qt5_{3}{4}".format(self.os_name,
'_x86/' if self.os_name == 'windows' else '_x64/',
self.target, qt_ver_num,
'_wasm/' if self.arch == 'wasm_32' else '/')
update_xml_url = "{0}{1}Updates.xml".format(self.base, archive_path)
archive_url = "{0}{1}".format(self.base, archive_path)
try:
r = requests.get(update_xml_url)
except requests.exceptions.ConnectionError as e:
self.logger.error('Download error: %s\n' % e.args, exc_info=True)
raise e
else:
target_packages = []
target_packages.append("qt.qt5.{}.{}".format(qt_ver_num, self.arch))
target_packages.append("qt.{}.{}".format(qt_ver_num, self.arch))
target_packages.extend(self.mod_list)
self.update_xml = ElementTree.fromstring(r.text)
for packageupdate in self.update_xml.iter("PackageUpdate"):
name = packageupdate.find("Name").text
if packageupdate.find("DownloadableArchives").text is None:
continue
if name in target_packages:
downloadable_archives = packageupdate.find("DownloadableArchives").text.split(", ")
full_version = packageupdate.find("Version").text
package_desc = packageupdate.find("Description").text
for archive in downloadable_archives:
package_url = archive_url + name + "/" + full_version + archive
self.archives.append(QtPackage(name, package_url, archive, package_desc,
has_mirror=self.has_mirror))
if len(self.archives) == 0:
self.logger.error("Error while parsing package information!")
exit(1)
def get_archives(self):
"""
It returns an archive package list.
:return package list
:rtype: List[QtPackage]
"""
return self.archives
def get_target_config(self):
"""Get target configuration
:return: configured target and its version with arch
:rtype: tuple(version, target, arch)
"""
return self.version, self.target, self.arch
class ToolArchives(QtArchives):
"""Hold tool archive package list
when installing mingw tool, argument would be
ToolArchive(windows, desktop, 4.9.1-3, mingw)
when installing ifw tool, argument would be
ToolArchive(linux, desktop, 3.1.1, ifw)
"""
def __init__(self, os_name, tool_name, version, arch, mirror=None, logging=None):
self.tool_name = tool_name
self.os_name = os_name
super(ToolArchives, self).__init__(os_name, 'desktop', version, arch, mirror=mirror, logging=logging)
def _get_archives(self):
if self.os_name == 'windows':
archive_url = self.base + self.os_name + '_x86/' + self.target + '/'
else:
archive_url = self.base + self.os_name + '_x64/' + self.target + '/'
update_xml_url = "{0}{1}/Updates.xml".format(archive_url, self.tool_name)
try:
r = requests.get(update_xml_url)
except requests.exceptions.ConnectionError as e:
self.logger.error('Download error: %s\n' % e.args, exc_info=True)
raise e
else:
self.update_xml = ElementTree.fromstring(r.text)
for packageupdate in self.update_xml.iter("PackageUpdate"):
name = packageupdate.find("Name").text
downloadable_archives = packageupdate.find("DownloadableArchives").text.split(", ")
full_version = packageupdate.find("Version").text
if full_version != self.version:
continue
if "-" in full_version:
split_version = full_version.split("-")
named_version = split_version[0] + "-" + split_version[1]
else:
named_version = full_version
package_desc = packageupdate.find("Description").text
for archive in downloadable_archives:
package_url = archive_url + self.tool_name + "/" + name + "/" + named_version + archive
self.archives.append(QtPackage(name, package_url, archive, package_desc,
has_mirror=(self.mirror is not None)))
def get_target_config(self):
"""Get target configuration.
:return tuple of three parameter, "Tools", target and arch
"""
return "Tools", self.target, self.arch