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-09-02 23:30:24 +03:00
|
|
|
from os.path import dirname, join
|
|
|
|
from platform import system
|
2016-08-31 16:07:35 +03:00
|
|
|
|
2016-09-08 16:17:58 +03:00
|
|
|
from platformio import exception, util
|
2016-08-31 16:07:35 +03:00
|
|
|
from platformio.managers.package import PackageManager
|
|
|
|
|
2016-09-26 22:15:08 +03:00
|
|
|
PACKAGE_DEPS = {"pysite": "pysite-pioplus", "tool": "tool-pioplus"}
|
2016-08-31 16:07:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
class PioPlusPackageManager(PackageManager):
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
PackageManager.__init__(
|
|
|
|
self, join(util.get_home_dir(), "packages"),
|
|
|
|
["https://dl.bintray.com/platformio/dl-packages/manifest.json",
|
|
|
|
"https://dl.platformio.org/packages/manifest.json"])
|
|
|
|
|
|
|
|
|
2016-09-26 22:15:08 +03:00
|
|
|
def pioplus_install():
|
2016-08-31 16:07:35 +03:00
|
|
|
pm = PioPlusPackageManager()
|
2016-09-26 22:15:08 +03:00
|
|
|
for name in PACKAGE_DEPS.values():
|
|
|
|
pm.install(name, silent=True)
|
2016-08-31 16:07:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
def pioplus_update():
|
|
|
|
pm = PioPlusPackageManager()
|
2016-09-26 22:15:08 +03:00
|
|
|
for name in PACKAGE_DEPS.values():
|
|
|
|
pm.update(name)
|
2016-08-31 16:07:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
def pioplus_call(args, **kwargs):
|
2016-09-26 22:15:08 +03:00
|
|
|
pioplus_install()
|
|
|
|
pm = PioPlusPackageManager()
|
|
|
|
pioplus_path = join(pm.get_package_dir(PACKAGE_DEPS['tool']), "pioplus")
|
2016-09-02 23:30:24 +03:00
|
|
|
if system() == "Linux":
|
|
|
|
os.environ['LD_LIBRARY_PATH'] = dirname(pioplus_path)
|
2016-08-31 16:07:35 +03:00
|
|
|
os.environ['PYTHONEXEPATH'] = util.get_pythonexe_path()
|
2016-09-26 22:15:08 +03:00
|
|
|
os.environ['PYTHONPYSITEDIR'] = pm.get_package_dir(PACKAGE_DEPS['pysite'])
|
2016-08-31 16:07:35 +03:00
|
|
|
util.copy_pythonpath_to_osenv()
|
2016-09-08 16:17:58 +03:00
|
|
|
if subprocess.call([pioplus_path] + args, **kwargs) != 0:
|
|
|
|
raise exception.ReturnErrorCode()
|