9a4077bbd23552cf8951400f74bc8af8b02f3444
[cps.git] / cps-ri / src / main / resources / yangResourceCsvGenerator.py
1 #  ============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
20 import csv
21 import hashlib
22 import sys
23
24 yang_source = ''
25 checksum = ''
26
27 for yang_source in sys.argv[1:]:
28     checksum = hashlib.sha256(str(yang_source).encode()).hexdigest()
29
30 with 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
34 with 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])