blob: ec75285819c3b8f4c8bc44d3ce20b234249d7568 [file] [log] [blame]
#!/usr/bin/env python
# Copyright 2020 The Cobalt Authors. All Rights Reserved.
#
# 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.
"""Utility functions for interacting with Starboard ABI JSON files."""
import _env # pylint: disable=unused-import
import json
import os
from starboard.tools import build
from starboard.tools import paths
def AddSabiArguments(arg_parser):
group = arg_parser.add_mutually_exclusive_group(required=True)
group.add_argument(
'-f',
'--filename',
default=None,
help='The Starboard ABI JSON file that should be used.',
)
group.add_argument(
'-p',
'--platform',
default=None,
help='The platform whose Starboard ABI JSON should be used.',
)
def LoadSabi(filename=None, platform=None):
"""Return the absolute path to a Starboard ABI file and its contents.
This function will use either the provided |filename| or the provided
|platform| to locate the desired Starboard ABI file.
Args:
filename: The path, can be relative or absolute, to the desired Starboard
ABI file.
platform: The platform of the desired Starboard ABI file.
Raises:
ValueError: When both |filename| and |platform| are provided, or when
|platform| is provided and it fails to load the platform configuration.
Returns:
The contents of the desired Starboard ABI file.
"""
if (filename and platform) or (not filename and not platform):
raise ValueError('Either |filename| or |platform| must be provided.')
if platform:
platform_configuration = build.GetPlatformConfig(platform)
if not platform_configuration:
raise ValueError('Failed to get platform configuration.')
filename = platform_configuration.GetPathToSabiJsonFile()
filename = os.path.join(paths.REPOSITORY_ROOT, filename)
with open(filename) as f:
return json.load(f)['variables']