2014-05-18 23:38:59 +03:00
|
|
|
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
|
|
|
# See LICENSE for details.
|
|
|
|
|
2014-11-29 22:55:32 +02:00
|
|
|
from os import listdir
|
|
|
|
from os.path import join
|
2014-06-07 13:34:31 +03:00
|
|
|
from sys import exit as sys_exit
|
|
|
|
from traceback import format_exc
|
2014-05-18 23:38:59 +03:00
|
|
|
|
2014-11-29 22:55:32 +02:00
|
|
|
import click
|
2014-05-18 23:38:59 +03:00
|
|
|
|
2015-02-19 22:02:50 +02:00
|
|
|
from platformio import __version__, exception, maintenance
|
2014-11-29 22:55:32 +02:00
|
|
|
from platformio.util import get_source_dir
|
2014-05-18 23:38:59 +03:00
|
|
|
|
|
|
|
|
2014-11-29 22:55:32 +02:00
|
|
|
class PlatformioCLI(click.MultiCommand): # pylint: disable=R0904
|
2014-05-18 23:38:59 +03:00
|
|
|
|
2014-06-03 21:27:36 +03:00
|
|
|
def list_commands(self, ctx):
|
|
|
|
cmds = []
|
|
|
|
for filename in listdir(join(get_source_dir(), "commands")):
|
|
|
|
if filename.startswith("__init__"):
|
|
|
|
continue
|
|
|
|
if filename.endswith(".py"):
|
|
|
|
cmds.append(filename[:-3])
|
|
|
|
cmds.sort()
|
|
|
|
return cmds
|
2014-05-18 23:38:59 +03:00
|
|
|
|
2014-06-03 21:27:36 +03:00
|
|
|
def get_command(self, ctx, name):
|
2014-11-29 22:55:32 +02:00
|
|
|
mod = None
|
2014-06-07 13:34:31 +03:00
|
|
|
try:
|
|
|
|
mod = __import__("platformio.commands." + name,
|
|
|
|
None, None, ["cli"])
|
|
|
|
except ImportError:
|
2015-02-19 22:02:50 +02:00
|
|
|
raise exception.UnknownCLICommand(name)
|
2014-06-03 21:27:36 +03:00
|
|
|
return mod.cli
|
2014-05-18 23:38:59 +03:00
|
|
|
|
|
|
|
|
2014-11-29 22:55:32 +02:00
|
|
|
@click.command(cls=PlatformioCLI)
|
|
|
|
@click.version_option(__version__, prog_name="PlatformIO")
|
|
|
|
@click.pass_context
|
|
|
|
def cli(ctx):
|
|
|
|
maintenance.on_platformio_start(ctx)
|
2014-05-18 23:38:59 +03:00
|
|
|
|
|
|
|
|
2014-11-29 22:55:32 +02:00
|
|
|
@cli.resultcallback()
|
|
|
|
@click.pass_context
|
|
|
|
def process_result(ctx, result):
|
|
|
|
maintenance.on_platformio_end(ctx, result)
|
2014-08-03 18:40:20 +03:00
|
|
|
|
|
|
|
|
2014-06-03 21:27:36 +03:00
|
|
|
def main():
|
2014-06-07 13:34:31 +03:00
|
|
|
try:
|
2014-11-29 22:55:32 +02:00
|
|
|
cli(None)
|
2014-06-07 13:34:31 +03:00
|
|
|
except Exception as e: # pylint: disable=W0703
|
2015-02-19 22:02:50 +02:00
|
|
|
if not isinstance(e, exception.ReturnErrorCode):
|
|
|
|
maintenance.on_platformio_exception(e)
|
|
|
|
if isinstance(e, exception.PlatformioException):
|
|
|
|
click.echo("Error: " + str(e), err=True)
|
|
|
|
else:
|
|
|
|
click.echo(format_exc(), err=True)
|
|
|
|
sys_exit(1)
|
2014-05-18 23:38:59 +03:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2014-06-07 13:34:31 +03:00
|
|
|
sys_exit(main())
|