2017-06-05 16:02:39 +03:00
|
|
|
# Copyright (c) 2014-present PlatformIO <contact@platformio.org>
|
2015-11-18 17:16:17 +02:00
|
|
|
#
|
|
|
|
# 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.
|
2014-12-27 23:59:20 +02:00
|
|
|
|
|
|
|
import json
|
|
|
|
|
|
|
|
import click
|
|
|
|
|
2018-01-25 17:58:52 +02:00
|
|
|
from platformio import util
|
2016-05-26 19:43:36 +03:00
|
|
|
from platformio.managers.platform import PlatformManager
|
2014-12-27 23:59:20 +02:00
|
|
|
|
|
|
|
|
2017-03-03 23:29:17 +02:00
|
|
|
@click.command("boards", short_help="Embedded Board Explorer")
|
2014-12-27 23:59:20 +02:00
|
|
|
@click.argument("query", required=False)
|
2016-05-26 19:43:36 +03:00
|
|
|
@click.option("--installed", is_flag=True)
|
2015-01-10 16:20:09 +02:00
|
|
|
@click.option("--json-output", is_flag=True)
|
2016-05-26 19:43:36 +03:00
|
|
|
def cli(query, installed, json_output): # pylint: disable=R0912
|
2015-01-10 16:20:09 +02:00
|
|
|
if json_output:
|
2017-03-03 23:29:17 +02:00
|
|
|
return _print_boards_json(query, installed)
|
2014-12-27 23:59:20 +02:00
|
|
|
|
|
|
|
grpboards = {}
|
2016-05-26 19:43:36 +03:00
|
|
|
for board in _get_boards(installed):
|
2017-03-03 23:29:17 +02:00
|
|
|
if query and query.lower() not in json.dumps(board).lower():
|
|
|
|
continue
|
2016-05-26 19:43:36 +03:00
|
|
|
if board['platform'] not in grpboards:
|
|
|
|
grpboards[board['platform']] = []
|
|
|
|
grpboards[board['platform']].append(board)
|
2014-12-27 23:59:20 +02:00
|
|
|
|
2017-03-03 23:29:17 +02:00
|
|
|
terminal_width, _ = click.get_terminal_size()
|
|
|
|
for (platform, boards) in sorted(grpboards.items()):
|
2015-04-20 17:20:27 +01:00
|
|
|
click.echo("")
|
|
|
|
click.echo("Platform: ", nl=False)
|
|
|
|
click.secho(platform, bold=True)
|
|
|
|
click.echo("-" * terminal_width)
|
2017-03-03 23:29:17 +02:00
|
|
|
print_boards(boards)
|
2017-12-15 22:16:37 +02:00
|
|
|
return True
|
2014-12-27 23:59:20 +02:00
|
|
|
|
|
|
|
|
2017-03-03 23:29:17 +02:00
|
|
|
def print_boards(boards):
|
|
|
|
terminal_width, _ = click.get_terminal_size()
|
|
|
|
BOARDLIST_TPL = ("{type:<30} {mcu:<14} {frequency:<8} "
|
|
|
|
" {flash:<7} {ram:<6} {name}")
|
|
|
|
click.echo(
|
|
|
|
BOARDLIST_TPL.format(
|
|
|
|
type=click.style("ID", fg="cyan"),
|
|
|
|
mcu="MCU",
|
|
|
|
frequency="Frequency",
|
|
|
|
flash="Flash",
|
|
|
|
ram="RAM",
|
|
|
|
name="Name"))
|
|
|
|
click.echo("-" * terminal_width)
|
|
|
|
|
|
|
|
for board in boards:
|
|
|
|
click.echo(
|
|
|
|
BOARDLIST_TPL.format(
|
|
|
|
type=click.style(board['id'], fg="cyan"),
|
|
|
|
mcu=board['mcu'],
|
2018-01-25 17:58:52 +02:00
|
|
|
frequency="%dMHz" % (board['fcpu'] / 1000000),
|
|
|
|
flash=util.format_filesize(board['rom']),
|
|
|
|
ram=util.format_filesize(board['ram']),
|
2017-03-03 23:29:17 +02:00
|
|
|
name=board['name']))
|
2016-05-26 19:43:36 +03:00
|
|
|
|
|
|
|
|
|
|
|
def _get_boards(installed=False):
|
2017-09-03 22:40:00 +03:00
|
|
|
pm = PlatformManager()
|
|
|
|
return pm.get_installed_boards() if installed else pm.get_all_boards()
|
2016-05-28 22:51:33 +03:00
|
|
|
|
2017-09-06 20:57:56 +03:00
|
|
|
|
2017-03-03 23:29:17 +02:00
|
|
|
def _print_boards_json(query, installed=False):
|
2016-05-26 19:43:36 +03:00
|
|
|
result = []
|
2017-09-03 22:40:00 +03:00
|
|
|
for board in _get_boards(installed):
|
2015-01-10 20:10:48 +02:00
|
|
|
if query:
|
2016-05-26 19:43:36 +03:00
|
|
|
search_data = "%s %s" % (board['id'], json.dumps(board).lower())
|
2015-01-10 20:10:48 +02:00
|
|
|
if query.lower() not in search_data.lower():
|
|
|
|
continue
|
2016-05-26 19:43:36 +03:00
|
|
|
result.append(board)
|
2015-01-10 20:10:48 +02:00
|
|
|
click.echo(json.dumps(result))
|