Matteo Scandolo | 920e8fd | 2017-08-08 13:05:24 -0700 | [diff] [blame] | 1 | |
| 2 | # Copyright 2017-present Open Networking 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 | |
Matteo Scandolo | 5a07a2c | 2018-06-05 18:04:00 -0700 | [diff] [blame] | 16 | from xosconfig import Config |
| 17 | from multistructlog import create_logger |
| 18 | log = create_logger(Config().get('logging')) |
Matteo Scandolo | 920e8fd | 2017-08-08 13:05:24 -0700 | [diff] [blame] | 19 | |
Matteo Scandolo | 9ce1825 | 2017-06-22 10:48:25 -0700 | [diff] [blame] | 20 | import os |
Matteo Scandolo | 1bd1076 | 2017-10-18 09:53:14 +0200 | [diff] [blame] | 21 | from default import TOSCA_DEFS_DIR, TOSCA_KEYS_DIR |
Sapan Bhatia | 4d711e7 | 2018-02-09 19:08:32 -0800 | [diff] [blame] | 22 | from xosgenx.generator import XOSProcessor |
Matteo Scandolo | 9ce1825 | 2017-06-22 10:48:25 -0700 | [diff] [blame] | 23 | from xosapi.xos_grpc_client import Empty |
| 24 | |
| 25 | class Args: |
| 26 | pass |
| 27 | |
| 28 | current_dir = os.path.dirname(os.path.realpath(__file__)) |
| 29 | |
| 30 | class TOSCA_Generator: |
| 31 | |
Scott Baker | 3f7739c | 2018-02-20 20:17:34 -0800 | [diff] [blame] | 32 | def clean(self, dir=TOSCA_DEFS_DIR): |
Matteo Scandolo | 9ce1825 | 2017-06-22 10:48:25 -0700 | [diff] [blame] | 33 | filesToRemove = [f for f in os.listdir(dir)] |
| 34 | for f in filesToRemove: |
| 35 | if not f.startswith('.'): |
| 36 | os.remove(dir + '/' + f) |
| 37 | |
Scott Baker | 3f7739c | 2018-02-20 20:17:34 -0800 | [diff] [blame] | 38 | def clean_keys(self, dir=TOSCA_KEYS_DIR): |
| 39 | keys_fn = os.path.join(dir, "KEYS.py") |
| 40 | if os.path.exists(keys_fn): |
| 41 | os.remove(keys_fn) |
| 42 | |
Matteo Scandolo | 9ce1825 | 2017-06-22 10:48:25 -0700 | [diff] [blame] | 43 | def generate(self, client): |
Matteo Scandolo | 5a07a2c | 2018-06-05 18:04:00 -0700 | [diff] [blame] | 44 | log.info("[XOS-TOSCA] Generating TOSCA") |
Matteo Scandolo | 2c1a001 | 2017-09-12 17:08:04 -0700 | [diff] [blame] | 45 | |
Matteo Scandolo | 9ce1825 | 2017-06-22 10:48:25 -0700 | [diff] [blame] | 46 | try: |
Matteo Scandolo | 2c1a001 | 2017-09-12 17:08:04 -0700 | [diff] [blame] | 47 | xproto = client.utility.GetXproto(Empty()) |
Matteo Scandolo | 9ce1825 | 2017-06-22 10:48:25 -0700 | [diff] [blame] | 48 | args = Args() |
| 49 | args.output = TOSCA_DEFS_DIR |
| 50 | args.inputs = str(xproto.xproto) |
| 51 | args.target = os.path.join(current_dir, 'xtarget/tosca.xtarget') |
Matteo Scandolo | cb92e16 | 2017-10-03 13:12:30 -0700 | [diff] [blame] | 52 | args.write_to_file = 'target' |
Sapan Bhatia | 4d711e7 | 2018-02-09 19:08:32 -0800 | [diff] [blame] | 53 | XOSProcessor.process(args) |
Matteo Scandolo | 5a07a2c | 2018-06-05 18:04:00 -0700 | [diff] [blame] | 54 | log.info("[XOS-TOSCA] Recipes generated in %s" % args.output) |
Matteo Scandolo | 9ce1825 | 2017-06-22 10:48:25 -0700 | [diff] [blame] | 55 | except Exception as e: |
Matteo Scandolo | 5a07a2c | 2018-06-05 18:04:00 -0700 | [diff] [blame] | 56 | log.exception("[XOS-TOSCA] Failed to generate TOSCA") |
Matteo Scandolo | 9ce1825 | 2017-06-22 10:48:25 -0700 | [diff] [blame] | 57 | |
Matteo Scandolo | 1bd1076 | 2017-10-18 09:53:14 +0200 | [diff] [blame] | 58 | try: |
| 59 | xproto = client.utility.GetXproto(Empty()) |
| 60 | args = Args() |
| 61 | args.output = TOSCA_KEYS_DIR |
| 62 | args.inputs = str(xproto.xproto) |
| 63 | args.target = os.path.join(current_dir, 'xtarget/tosca_keys.xtarget') |
| 64 | args.write_to_file = 'single' |
| 65 | args.dest_file = 'KEYS.py' |
Sapan Bhatia | 4d711e7 | 2018-02-09 19:08:32 -0800 | [diff] [blame] | 66 | XOSProcessor.process(args) |
Matteo Scandolo | 5a07a2c | 2018-06-05 18:04:00 -0700 | [diff] [blame] | 67 | log.info("[XOS-TOSCA] TOSCA Keys generated in %s" % args.output) |
Matteo Scandolo | 1bd1076 | 2017-10-18 09:53:14 +0200 | [diff] [blame] | 68 | except Exception as e: |
Matteo Scandolo | 5a07a2c | 2018-06-05 18:04:00 -0700 | [diff] [blame] | 69 | log.exception("[XOS-TOSCA] Failed to generate TOSCA Keys") |
Matteo Scandolo | 1bd1076 | 2017-10-18 09:53:14 +0200 | [diff] [blame] | 70 | |