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.
|
|
|
|
# ----------------------------------------------------------------------------
|
2020-06-29 15:42:47 +02:00
|
|
|
from suit_tool.compile import compile_manifest
|
2020-02-26 14:44:13 +01:00
|
|
|
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
|
|
|
|
2020-06-29 15:42:47 +02:00
|
|
|
from suit_tool.manifest import SUITEnvelope
|
2020-02-26 14:44:13 +01:00
|
|
|
def main(options):
|
|
|
|
# Read the manifest wrapper
|
2020-06-29 15:42:47 +02:00
|
|
|
envelope = cbor.loads(options.manifest.read())
|
|
|
|
|
|
|
|
if hasattr(options, 'all'):
|
|
|
|
options.elements = SUITEnvelope.severable_fields
|
|
|
|
|
|
|
|
for e in options.elements:
|
|
|
|
eid = SUITEnvelope.fields[e].suit_key
|
|
|
|
if eid in envelope:
|
|
|
|
del(envelope[eid])
|
|
|
|
|
|
|
|
output = cbor.dumps(envelope, canonical=True)
|
|
|
|
options.output_file.write(output)
|
|
|
|
|
2020-02-26 14:44:13 +01:00
|
|
|
return 0
|