2020-02-26 14:44:13 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# Copyright 2019 ARM Limited or its affiliates
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
from suit_tool.compile import compile_manifest
|
|
|
|
import json
|
2020-06-29 15:42:47 +02:00
|
|
|
import cbor2 as cbor
|
2020-02-26 14:44:13 +01:00
|
|
|
import itertools
|
|
|
|
import textwrap
|
2020-06-29 15:42:47 +02:00
|
|
|
from collections import OrderedDict
|
2020-02-26 14:44:13 +01:00
|
|
|
|
|
|
|
def main(options):
|
2020-06-29 15:42:47 +02:00
|
|
|
m = json.loads(options.input_file.read(), object_pairs_hook=OrderedDict)
|
2020-02-26 14:44:13 +01:00
|
|
|
|
|
|
|
nm = compile_manifest(options, m)
|
2020-06-29 15:42:47 +02:00
|
|
|
print('create done. Serializing')
|
|
|
|
if m.get('severable') or (hasattr(options, 'severable') and options.severable):
|
|
|
|
nm = nm.to_severable('sha256')
|
2020-02-26 14:44:13 +01:00
|
|
|
output = {
|
2020-06-29 15:42:47 +02:00
|
|
|
'suit' : lambda x: cbor.dumps(x.to_suit(), canonical=True),
|
2020-02-26 14:44:13 +01:00
|
|
|
'suit-debug' : lambda x: '\n'.join(itertools.chain.from_iterable(
|
|
|
|
map(textwrap.wrap, x.to_debug('').split('\n'))
|
|
|
|
)).encode('utf-8'),
|
|
|
|
'json' : lambda x : json.dumps(x.to_json(), indent=2).encode('utf-8')
|
|
|
|
}.get(options.format)(nm)
|
|
|
|
options.output_file.write(output)
|
|
|
|
|
|
|
|
return 0
|