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 | |
| 16 | |
Matteo Scandolo | 9ce1825 | 2017-06-22 10:48:25 -0700 | [diff] [blame] | 17 | import os |
Matteo Scandolo | 1bd1076 | 2017-10-18 09:53:14 +0200 | [diff] [blame^] | 18 | from default import TOSCA_DEFS_DIR, TOSCA_KEYS_DIR |
Matteo Scandolo | 9ce1825 | 2017-06-22 10:48:25 -0700 | [diff] [blame] | 19 | from xosgenx.generator import XOSGenerator |
| 20 | from xosapi.xos_grpc_client import Empty |
| 21 | |
| 22 | class Args: |
| 23 | pass |
| 24 | |
| 25 | current_dir = os.path.dirname(os.path.realpath(__file__)) |
| 26 | |
| 27 | class TOSCA_Generator: |
| 28 | |
| 29 | def _clean(self, dir=TOSCA_DEFS_DIR): |
| 30 | filesToRemove = [f for f in os.listdir(dir)] |
| 31 | for f in filesToRemove: |
| 32 | if not f.startswith('.'): |
| 33 | os.remove(dir + '/' + f) |
| 34 | |
| 35 | def generate(self, client): |
| 36 | print "[XOS-TOSCA] Generating TOSCA" |
| 37 | self._clean() |
Matteo Scandolo | 2c1a001 | 2017-09-12 17:08:04 -0700 | [diff] [blame] | 38 | |
Matteo Scandolo | 9ce1825 | 2017-06-22 10:48:25 -0700 | [diff] [blame] | 39 | try: |
Matteo Scandolo | 2c1a001 | 2017-09-12 17:08:04 -0700 | [diff] [blame] | 40 | xproto = client.utility.GetXproto(Empty()) |
Matteo Scandolo | 9ce1825 | 2017-06-22 10:48:25 -0700 | [diff] [blame] | 41 | args = Args() |
| 42 | args.output = TOSCA_DEFS_DIR |
| 43 | args.inputs = str(xproto.xproto) |
| 44 | args.target = os.path.join(current_dir, 'xtarget/tosca.xtarget') |
Matteo Scandolo | cb92e16 | 2017-10-03 13:12:30 -0700 | [diff] [blame] | 45 | args.write_to_file = 'target' |
Matteo Scandolo | 9ce1825 | 2017-06-22 10:48:25 -0700 | [diff] [blame] | 46 | XOSGenerator.generate(args) |
| 47 | print "[XOS-TOSCA] Recipes generated in %s" % args.output |
| 48 | except Exception as e: |
| 49 | print "[XOS-TOSCA] Failed to generate TOSCA" |
| 50 | print e |
| 51 | |
Matteo Scandolo | 1bd1076 | 2017-10-18 09:53:14 +0200 | [diff] [blame^] | 52 | try: |
| 53 | xproto = client.utility.GetXproto(Empty()) |
| 54 | args = Args() |
| 55 | args.output = TOSCA_KEYS_DIR |
| 56 | args.inputs = str(xproto.xproto) |
| 57 | args.target = os.path.join(current_dir, 'xtarget/tosca_keys.xtarget') |
| 58 | args.write_to_file = 'single' |
| 59 | args.dest_file = 'KEYS.py' |
| 60 | XOSGenerator.generate(args) |
| 61 | print "[XOS-TOSCA] TOSCA Keys generated in %s" % args.output |
| 62 | except Exception as e: |
| 63 | print "[XOS-TOSCA] Failed to generate TOSCA Keys" |
| 64 | print e |
| 65 | |