Files
platformio-core/platformio/commands/run.py

120 lines
3.9 KiB
Python
Raw Normal View History

2014-06-03 21:27:36 +03:00
# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
from datetime import datetime
from os.path import getmtime, isdir, join
from shutil import rmtree
from time import time
2014-12-03 20:16:50 +02:00
import click
2014-06-03 21:27:36 +03:00
from platformio import app, exception, telemetry, util
2014-12-03 20:16:50 +02:00
from platformio.commands.install import cli as cmd_install
2014-07-30 22:40:11 +03:00
from platformio.platforms.base import PlatformFactory
2014-06-03 21:27:36 +03:00
2014-12-03 20:16:50 +02:00
@click.command("run", short_help="Process project environments")
@click.option("--environment", "-e", multiple=True, metavar="<environment>")
@click.option("--target", "-t", multiple=True, metavar="<target>")
@click.option("--upload-port", metavar="<upload port>")
@click.pass_context
def cli(ctx, environment, target, upload_port):
config = util.get_project_config()
if not config.sections():
2014-12-04 23:17:45 +02:00
raise exception.ProjectEnvsNotAvailable()
2014-07-27 22:48:27 +03:00
unknown = set(environment) - set([s[4:] for s in config.sections()])
if unknown:
2014-12-03 20:16:50 +02:00
raise exception.UnknownEnvNames(", ".join(unknown))
# remove ".pioenvs" if project config is modified
_pioenvs_dir = util.get_pioenvs_dir()
if (isdir(_pioenvs_dir) and
getmtime(join(util.get_project_dir(), "platformio.ini")) >
getmtime(_pioenvs_dir)):
rmtree(_pioenvs_dir)
_first_processing = True
2014-06-03 21:27:36 +03:00
for section in config.sections():
# skip main configuration section
if section == "platformio":
continue
elif section[:4] != "env:":
2014-12-03 20:16:50 +02:00
raise exception.InvalidEnvName(section)
2014-06-03 21:27:36 +03:00
envname = section[4:]
2014-06-03 21:27:36 +03:00
if environment and envname not in environment:
# echo("Skipped %s environment" % style(envname, fg="yellow"))
2014-06-03 21:27:36 +03:00
continue
2014-12-04 23:17:45 +02:00
options = {}
for k, v in config.items(section):
2014-12-04 23:17:45 +02:00
options[k] = v
2014-12-04 23:17:45 +02:00
process_environment(ctx, envname, options, target, upload_port)
if not _first_processing:
click.echo()
_first_processing = False
2014-12-04 23:17:45 +02:00
def process_environment(ctx, name, options, targets, upload_port):
terminal_width, _ = click.get_terminal_size()
start_time = time()
click.echo("[%s] Processing %s (%s)" % (
datetime.now().strftime("%c"),
click.style(name, fg="cyan", bold=True),
", ".join(["%s: %s" % (k, v) for k, v in options.iteritems()])
))
click.secho("-" * terminal_width, bold=True)
result = _run_environment(ctx, name, options, targets, upload_port)
is_error = "error" in result['err'].lower()
summary_text = " Took %.2f seconds " % (time() - start_time)
half_line = "=" * ((terminal_width - len(summary_text) - 10) / 2)
click.echo("%s [%s]%s%s" % (
half_line,
(click.style(" ERROR ", fg="red", bold=True)
if is_error else click.style("SUCCESS", fg="green", bold=True)),
summary_text,
half_line
), err=is_error)
def _run_environment(ctx, name, options, targets, upload_port):
2014-12-04 23:17:45 +02:00
variables = ["PIOENV=" + name]
if upload_port:
variables.append("UPLOAD_PORT=%s" % upload_port)
for k, v in options.items():
k = k.upper()
if k == "TARGETS" or (k == "UPLOAD_PORT" and upload_port):
continue
variables.append("%s=%s" % (k.upper(), v))
envtargets = []
if targets:
envtargets = [t for t in targets]
elif "targets" in options:
envtargets = options['targets'].split()
if "platform" not in options:
raise exception.UndefinedEnvPlatform(name)
platform = options['platform']
telemetry.on_run_environment(options, envtargets)
installed_platforms = PlatformFactory.get_platforms(
installed=True).keys()
if (platform not in installed_platforms and (
not app.get_setting("enable_prompts") or
2014-12-04 23:17:45 +02:00
click.confirm("The platform '%s' has not been installed yet. "
"Would you like to install it now?" % platform))):
2014-12-04 23:17:45 +02:00
ctx.invoke(cmd_install, platforms=[platform])
p = PlatformFactory.newPlatform(platform)
return p.run(variables, envtargets)