2016-08-31 16:07:35 +03:00
|
|
|
# Copyright 2014-present PlatformIO <contact@platformio.org>
|
|
|
|
#
|
|
|
|
# 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 os
|
|
|
|
import subprocess
|
2016-11-24 00:01:15 +02:00
|
|
|
import sys
|
2016-11-21 16:28:37 +02:00
|
|
|
from os.path import join
|
2016-08-31 16:07:35 +03:00
|
|
|
|
2016-11-21 16:28:37 +02:00
|
|
|
from platformio import exception, util
|
2016-08-31 16:07:35 +03:00
|
|
|
from platformio.managers.package import PackageManager
|
|
|
|
|
2017-03-11 23:28:55 +02:00
|
|
|
CORE_PACKAGES = {
|
|
|
|
"pysite-pioplus": ">=0.3.0,<2",
|
2017-05-08 16:39:06 +03:00
|
|
|
"tool-pioplus": ">=0.8.10,<2",
|
2017-03-11 23:28:55 +02:00
|
|
|
"tool-unity": "~1.20302.1",
|
|
|
|
"tool-scons": "~3.20501.2"
|
2016-10-31 20:05:34 +02:00
|
|
|
}
|
2016-08-31 16:07:35 +03:00
|
|
|
|
2017-03-11 23:28:55 +02:00
|
|
|
PIOPLUS_AUTO_UPDATES_MAX = 100
|
2016-11-12 00:28:49 +02: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):
|
2016-10-31 20:05:34 +02:00
|
|
|
PackageManager.__init__(
|
|
|
|
self,
|
|
|
|
join(util.get_home_dir(), "packages"), [
|
|
|
|
"https://dl.bintray.com/platformio/dl-packages/manifest.json",
|
2016-11-12 00:57:45 +02:00
|
|
|
"http%s://dl.platformio.org/packages/manifest.json" %
|
|
|
|
("" if sys.version_info < (2, 7, 9) else "s")
|
2016-10-31 20:05:34 +02:00
|
|
|
])
|
2016-08-31 16:07:35 +03:00
|
|
|
|
|
|
|
|
2017-03-11 23:28:55 +02:00
|
|
|
def get_core_package_dir(name):
|
|
|
|
assert name in CORE_PACKAGES
|
|
|
|
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)
|
2016-08-31 16:07:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
def pioplus_call(args, **kwargs):
|
2017-03-11 23:28:55 +02:00
|
|
|
pioplus_path = join(get_core_package_dir("tool-pioplus"), "pioplus")
|
2016-08-31 16:07:35 +03:00
|
|
|
os.environ['PYTHONEXEPATH'] = util.get_pythonexe_path()
|
2017-03-11 23:28:55 +02:00
|
|
|
os.environ['PYTHONPYSITEDIR'] = get_core_package_dir("pysite-pioplus")
|
2016-08-31 16:07:35 +03:00
|
|
|
util.copy_pythonpath_to_osenv()
|
2016-11-12 00:28:49 +02:00
|
|
|
code = subprocess.call([pioplus_path] + args, **kwargs)
|
|
|
|
|
|
|
|
# handle remote update request
|
|
|
|
if code == 13:
|
|
|
|
count_attr = "_update_count"
|
|
|
|
try:
|
|
|
|
count_value = getattr(pioplus_call, count_attr)
|
|
|
|
except AttributeError:
|
|
|
|
count_value = 0
|
|
|
|
setattr(pioplus_call, count_attr, 1)
|
|
|
|
count_value += 1
|
|
|
|
setattr(pioplus_call, count_attr, count_value)
|
2017-03-11 23:28:55 +02:00
|
|
|
if count_value < PIOPLUS_AUTO_UPDATES_MAX:
|
|
|
|
update_core_packages()
|
2016-11-12 00:28:49 +02:00
|
|
|
return pioplus_call(args, **kwargs)
|
|
|
|
|
|
|
|
# handle reload request
|
|
|
|
elif code == 14:
|
|
|
|
return pioplus_call(args, **kwargs)
|
|
|
|
|
|
|
|
if code != 0:
|
|
|
|
raise exception.ReturnErrorCode(1)
|