blob: 9a4077bbd23552cf8951400f74bc8af8b02f3444 [file] [log] [blame]
DylanB95EST63132ce2021-12-14 16:34:38 +00001# ============LICENSE_START=======================================================
2# Copyright (C) 2022 Nordix Foundation
3# ================================================================================
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# SPDX-License-Identifier: Apache-2.0
17# ============LICENSE_END=========================================================
18
19
20import csv
21import hashlib
22import sys
23
24yang_source = ''
25checksum = ''
26
27for yang_source in sys.argv[1:]:
28 checksum = hashlib.sha256(str(yang_source).encode()).hexdigest()
29
30with open('changelog/db/changes/data/yang-models/' + yang_source + '.yang') as content:
31 dmiRegistry = content.read()
32
33# open the file in the write mode
34with open('changelog/db/changes/data/dmi/generated-csv/generated_yang_resource_' + yang_source + '.csv', 'w', newline='') \
35 as file:
36 writer = csv.writer(file, delimiter='|')
37 writer.writerow(["name", "content", "checksum"])
38 writer.writerow([yang_source + '.yang', dmiRegistry, checksum])