2017-06-05 16:02:39 +03:00
|
|
|
# Copyright (c) 2014-present PlatformIO <contact@platformio.org>
|
2016-08-31 16:07:35 +03:00
|
|
|
#
|
|
|
|
|
# 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.
|
|
|
|
|
|
2020-02-13 15:53:42 +02:00
|
|
|
import json
|
2016-08-31 16:07:35 +03:00
|
|
|
import os
|
|
|
|
|
import subprocess
|
2016-11-24 00:01:15 +02:00
|
|
|
import sys
|
2018-10-25 13:44:41 +03:00
|
|
|
|
2020-04-19 19:26:56 +03:00
|
|
|
from platformio import exception, util
|
|
|
|
|
from platformio.compat import PY2
|
2016-08-31 16:07:35 +03:00
|
|
|
from platformio.managers.package import PackageManager
|
2020-04-19 19:26:56 +03:00
|
|
|
from platformio.proc import get_pythonexe_path
|
2019-09-27 14:13:53 +03:00
|
|
|
from platformio.project.config import ProjectConfig
|
2016-08-31 16:07:35 +03:00
|
|
|
|
2017-03-11 23:28:55 +02:00
|
|
|
CORE_PACKAGES = {
|
2020-04-28 13:25:52 +03:00
|
|
|
"contrib-piohome": "~3.2.0",
|
2020-02-13 15:53:42 +02:00
|
|
|
"contrib-pysite": "~2.%d%d.0" % (sys.version_info.major, sys.version_info.minor),
|
2020-01-31 15:10:45 +02:00
|
|
|
"tool-unity": "~1.20500.0",
|
2019-12-22 01:27:51 +02:00
|
|
|
"tool-scons": "~2.20501.7" if PY2 else "~3.30102.0",
|
2020-04-26 00:10:41 +03:00
|
|
|
"tool-cppcheck": "~1.190.0",
|
|
|
|
|
"tool-clangtidy": "~1.100000.0",
|
|
|
|
|
"tool-pvs-studio": "~7.7.0",
|
2016-10-31 20:05:34 +02:00
|
|
|
}
|
2016-08-31 16:07:35 +03:00
|
|
|
|
2020-04-28 12:48:15 +03:00
|
|
|
# pylint: disable=arguments-differ,signature-differs
|
2017-06-30 01:23:52 +03:00
|
|
|
|
2016-08-31 16:07:35 +03:00
|
|
|
|
2017-03-11 23:28:55 +02:00
|
|
|
class CorePackageManager(PackageManager):
|
2016-08-31 16:07:35 +03:00
|
|
|
def __init__(self):
|
2019-09-27 14:13:53 +03:00
|
|
|
config = ProjectConfig.get_instance()
|
|
|
|
|
packages_dir = config.get_optional_dir("packages")
|
2019-09-23 23:13:48 +03:00
|
|
|
super(CorePackageManager, self).__init__(
|
2019-09-27 14:13:53 +03:00
|
|
|
packages_dir,
|
2019-09-23 23:13:48 +03:00
|
|
|
[
|
|
|
|
|
"https://dl.bintray.com/platformio/dl-packages/manifest.json",
|
|
|
|
|
"http%s://dl.platformio.org/packages/manifest.json"
|
|
|
|
|
% ("" if sys.version_info < (2, 7, 9) else "s"),
|
|
|
|
|
],
|
|
|
|
|
)
|
2016-08-31 16:07:35 +03:00
|
|
|
|
2017-12-15 22:16:37 +02:00
|
|
|
def install( # pylint: disable=keyword-arg-before-vararg
|
2019-09-23 23:13:48 +03:00
|
|
|
self, name, requirements=None, *args, **kwargs
|
|
|
|
|
):
|
2017-06-26 19:16:44 +03:00
|
|
|
PackageManager.install(self, name, requirements, *args, **kwargs)
|
|
|
|
|
self.cleanup_packages()
|
|
|
|
|
return self.get_package_dir(name, requirements)
|
|
|
|
|
|
2017-06-30 01:23:52 +03:00
|
|
|
def update(self, *args, **kwargs):
|
2017-06-26 19:16:44 +03:00
|
|
|
result = PackageManager.update(self, *args, **kwargs)
|
|
|
|
|
self.cleanup_packages()
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
def cleanup_packages(self):
|
|
|
|
|
self.cache_reset()
|
|
|
|
|
best_pkg_versions = {}
|
|
|
|
|
for name, requirements in CORE_PACKAGES.items():
|
|
|
|
|
pkg_dir = self.get_package_dir(name, requirements)
|
|
|
|
|
if not pkg_dir:
|
|
|
|
|
continue
|
2019-09-23 23:13:48 +03:00
|
|
|
best_pkg_versions[name] = self.load_manifest(pkg_dir)["version"]
|
2017-06-26 19:16:44 +03:00
|
|
|
for manifest in self.get_installed():
|
2019-09-23 23:13:48 +03:00
|
|
|
if manifest["name"] not in best_pkg_versions:
|
2017-06-26 19:16:44 +03:00
|
|
|
continue
|
2019-09-23 23:13:48 +03:00
|
|
|
if manifest["version"] != best_pkg_versions[manifest["name"]]:
|
|
|
|
|
self.uninstall(manifest["__pkg_dir"], after_update=True)
|
2017-06-26 19:16:44 +03:00
|
|
|
self.cache_reset()
|
|
|
|
|
return True
|
|
|
|
|
|
2016-08-31 16:07:35 +03:00
|
|
|
|
2017-03-11 23:28:55 +02:00
|
|
|
def get_core_package_dir(name):
|
2017-12-27 22:05:56 +02:00
|
|
|
if name not in CORE_PACKAGES:
|
|
|
|
|
raise exception.PlatformioException("Please upgrade PIO Core")
|
2017-03-11 23:28:55 +02:00
|
|
|
requirements = CORE_PACKAGES[name]
|
|
|
|
|
pm = CorePackageManager()
|
|
|
|
|
pkg_dir = pm.get_package_dir(name, requirements)
|
|
|
|
|
if pkg_dir:
|
|
|
|
|
return pkg_dir
|
|
|
|
|
return pm.install(name, requirements)
|
2016-08-31 16:07:35 +03:00
|
|
|
|
|
|
|
|
|
2017-03-27 14:14:29 +03:00
|
|
|
def update_core_packages(only_check=False, silent=False):
|
2017-03-11 23:28:55 +02:00
|
|
|
pm = CorePackageManager()
|
|
|
|
|
for name, requirements in CORE_PACKAGES.items():
|
|
|
|
|
pkg_dir = pm.get_package_dir(name)
|
2017-03-27 14:14:29 +03:00
|
|
|
if not pkg_dir:
|
|
|
|
|
continue
|
|
|
|
|
if not silent or pm.outdated(pkg_dir, requirements):
|
2017-03-11 23:28:55 +02:00
|
|
|
pm.update(name, requirements, only_check=only_check)
|
2017-12-19 15:24:23 +02:00
|
|
|
return True
|
2016-08-31 16:07:35 +03:00
|
|
|
|
|
|
|
|
|
2020-04-29 12:40:04 +03:00
|
|
|
def inject_contrib_pysite(verify_openssl=False):
|
|
|
|
|
# pylint: disable=import-outside-toplevel
|
|
|
|
|
from site import addsitedir
|
2019-09-23 23:13:48 +03:00
|
|
|
|
2019-04-19 19:56:16 +03:00
|
|
|
contrib_pysite_dir = get_core_package_dir("contrib-pysite")
|
|
|
|
|
if contrib_pysite_dir in sys.path:
|
2020-04-29 12:40:04 +03:00
|
|
|
return True
|
2019-04-19 19:56:16 +03:00
|
|
|
addsitedir(contrib_pysite_dir)
|
|
|
|
|
sys.path.insert(0, contrib_pysite_dir)
|
|
|
|
|
|
2020-04-29 12:40:04 +03:00
|
|
|
if not verify_openssl:
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
try:
|
2020-04-29 12:56:54 +03:00
|
|
|
# pylint: disable=import-error,unused-import,unused-variable
|
|
|
|
|
from OpenSSL import SSL
|
2020-04-29 12:40:04 +03:00
|
|
|
except: # pylint: disable=bare-except
|
|
|
|
|
build_contrib_pysite_deps(get_core_package_dir("contrib-pysite"))
|
|
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
2019-04-19 19:56:16 +03:00
|
|
|
|
2020-02-13 15:53:42 +02:00
|
|
|
def build_contrib_pysite_deps(target_dir):
|
|
|
|
|
if os.path.isdir(target_dir):
|
|
|
|
|
util.rmtree_(target_dir)
|
|
|
|
|
os.makedirs(target_dir)
|
|
|
|
|
with open(os.path.join(target_dir, "package.json"), "w") as fp:
|
|
|
|
|
json.dump(
|
|
|
|
|
dict(
|
|
|
|
|
name="contrib-pysite",
|
|
|
|
|
version="2.%d%d.0" % (sys.version_info.major, sys.version_info.minor),
|
|
|
|
|
system=util.get_systype(),
|
|
|
|
|
),
|
|
|
|
|
fp,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
pythonexe = get_pythonexe_path()
|
|
|
|
|
for dep in get_contrib_pysite_deps():
|
|
|
|
|
subprocess.call(
|
|
|
|
|
[
|
|
|
|
|
pythonexe,
|
|
|
|
|
"-m",
|
|
|
|
|
"pip",
|
|
|
|
|
"install",
|
|
|
|
|
"--no-cache-dir",
|
|
|
|
|
"--no-compile",
|
|
|
|
|
"-t",
|
|
|
|
|
target_dir,
|
|
|
|
|
dep,
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_contrib_pysite_deps():
|
|
|
|
|
sys_type = util.get_systype()
|
|
|
|
|
py_version = "%d%d" % (sys.version_info.major, sys.version_info.minor)
|
|
|
|
|
|
2020-04-29 12:40:04 +03:00
|
|
|
twisted_version = "19.10.0" if PY2 else "20.3.0"
|
2020-02-13 15:53:42 +02:00
|
|
|
result = [
|
|
|
|
|
"twisted == %s" % twisted_version,
|
2020-04-29 12:40:04 +03:00
|
|
|
"autobahn == 20.4.3",
|
|
|
|
|
"json-rpc == 1.13.0",
|
2020-02-13 15:53:42 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
# twisted[tls], see setup.py for %twisted_version%
|
|
|
|
|
result.extend(
|
|
|
|
|
["pyopenssl >= 16.0.0", "service_identity >= 18.1.0", "idna >= 0.6, != 2.3"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# zeroconf
|
2020-04-29 12:40:04 +03:00
|
|
|
if PY2:
|
2020-02-13 15:53:42 +02:00
|
|
|
result.append(
|
|
|
|
|
"https://github.com/ivankravets/python-zeroconf/" "archive/pio-py27.zip"
|
|
|
|
|
)
|
|
|
|
|
else:
|
2020-04-29 12:40:04 +03:00
|
|
|
result.append("zeroconf == 0.26.0")
|
2020-02-13 15:53:42 +02:00
|
|
|
|
|
|
|
|
if "windows" in sys_type:
|
|
|
|
|
result.append("pypiwin32 == 223")
|
|
|
|
|
# workaround for twisted wheels
|
|
|
|
|
twisted_wheel = (
|
|
|
|
|
"https://download.lfd.uci.edu/pythonlibs/g5apjq5m/Twisted-"
|
|
|
|
|
"%s-cp%s-cp%sm-win%s.whl"
|
|
|
|
|
% (
|
|
|
|
|
twisted_version,
|
|
|
|
|
py_version,
|
|
|
|
|
py_version,
|
|
|
|
|
"_amd64" if "amd64" in sys_type else "32",
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
result[0] = twisted_wheel
|
|
|
|
|
return result
|