1a303113e9
* remove telemetry * no full git clone * add intelhex as required * no core packages * add `rich_click` as pip dependencies * remove advertisings * add intelhex as required * install scons and Pio home from github * replace "get_core_package_dir" for piohome and pioremote
163 lines
4.9 KiB
Python
163 lines
4.9 KiB
Python
# Copyright (c) 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 shutil
|
|
from time import time
|
|
|
|
import click
|
|
import semantic_version
|
|
|
|
from platformio import __version__, app, fs
|
|
from platformio.cache import cleanup_content_cache
|
|
from platformio.cli import PlatformioCLI
|
|
from platformio.package.manager.core import update_core_packages
|
|
from platformio.package.version import pepver_to_semver
|
|
from platformio.system.prune import calculate_unnecessary_system_data
|
|
|
|
|
|
def on_cmd_start(ctx, caller):
|
|
app.set_session_var("command_ctx", ctx)
|
|
set_caller(caller)
|
|
if PlatformioCLI.in_silence():
|
|
return
|
|
after_upgrade(ctx)
|
|
|
|
|
|
def on_cmd_end():
|
|
# pioarduino change: never check for upgrades
|
|
return
|
|
|
|
|
|
def set_caller(caller=None):
|
|
caller = caller or os.getenv("PLATFORMIO_CALLER")
|
|
if not caller:
|
|
if os.getenv("CODESPACES"):
|
|
caller = "codespaces"
|
|
elif os.getenv("VSCODE_PID") or os.getenv("VSCODE_NLS_CONFIG"):
|
|
caller = "vscode"
|
|
elif os.getenv("GITPOD_WORKSPACE_ID") or os.getenv("GITPOD_WORKSPACE_URL"):
|
|
caller = "gitpod"
|
|
if caller:
|
|
app.set_session_var("caller_id", caller)
|
|
|
|
|
|
class Upgrader:
|
|
def __init__(self, from_version, to_version):
|
|
self.from_version = from_version
|
|
self.to_version = to_version
|
|
self._upgraders = [
|
|
(semantic_version.Version("6.1.8-a.1"), self._appstate_migration),
|
|
]
|
|
|
|
def run(self, ctx):
|
|
if self.from_version > self.to_version:
|
|
return True
|
|
|
|
result = [True]
|
|
for version, callback in self._upgraders:
|
|
if self.from_version >= version or self.to_version < version:
|
|
continue
|
|
result.append(callback(ctx))
|
|
|
|
return all(result)
|
|
|
|
@staticmethod
|
|
def _appstate_migration(_):
|
|
state_path = app.resolve_state_path("core_dir", "appstate.json")
|
|
if not os.path.isfile(state_path):
|
|
return True
|
|
created_at = app.get_state_item("created_at", None)
|
|
if not created_at:
|
|
state_stat = os.stat(state_path)
|
|
app.set_state_item(
|
|
"created_at",
|
|
int(
|
|
state_stat.st_birthtime
|
|
if hasattr(state_stat, "st_birthtime")
|
|
else state_stat.st_ctime
|
|
),
|
|
)
|
|
return True
|
|
|
|
|
|
def after_upgrade(ctx):
|
|
last_version_str = app.get_state_item("last_version", "0.0.0")
|
|
if last_version_str == __version__:
|
|
return None
|
|
|
|
if last_version_str == "0.0.0":
|
|
app.set_state_item("last_version", __version__)
|
|
return None
|
|
|
|
last_version = pepver_to_semver(last_version_str)
|
|
current_version = pepver_to_semver(__version__)
|
|
|
|
if last_version > current_version and not last_version.prerelease:
|
|
return None
|
|
|
|
click.secho("Please wait while upgrading...", fg="yellow")
|
|
|
|
# Update PlatformIO's Core packages
|
|
cleanup_content_cache("http")
|
|
update_core_packages()
|
|
|
|
u = Upgrader(last_version, current_version)
|
|
if u.run(ctx):
|
|
app.set_state_item("last_version", __version__)
|
|
click.secho(
|
|
"Pio has been successfully upgraded to %s!\n" % __version__,
|
|
fg="green",
|
|
)
|
|
|
|
return None
|
|
|
|
|
|
def check_platformio_upgrade():
|
|
# pioarduino change: never check for upgrade
|
|
return
|
|
|
|
|
|
def check_prune_system():
|
|
interval = 30 * 3600 * 24 # 1 time per month
|
|
check_state = app.get_state_item("last_check", {})
|
|
last_checked_time = check_state.get("prune_system", 0)
|
|
if (time() - interval) < last_checked_time:
|
|
return
|
|
|
|
check_state["prune_system"] = int(time())
|
|
app.set_state_item("last_check", check_state)
|
|
|
|
if not last_checked_time:
|
|
return
|
|
|
|
threshold_mb = int(app.get_setting("check_prune_system_threshold") or 0)
|
|
if threshold_mb <= 0:
|
|
return
|
|
|
|
unnecessary_size = calculate_unnecessary_system_data()
|
|
if (unnecessary_size / 1024) < threshold_mb:
|
|
return
|
|
|
|
terminal_width = shutil.get_terminal_size().columns
|
|
click.echo()
|
|
click.echo("*" * terminal_width)
|
|
click.secho(
|
|
"We found %s of unnecessary pioarduino system data (temporary files, "
|
|
"unnecessary packages, etc.).\nUse `pio system prune --dry-run` to list "
|
|
"them or `pio system prune` to save disk space."
|
|
% fs.humanize_file_size(unnecessary_size),
|
|
fg="yellow",
|
|
)
|