blob: 065170c09a2102bae367a902c1d5c3abfebafadb [file] [log] [blame]
Matteo Scandolo920e8fd2017-08-08 13:05:24 -07001
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 Scandolo9ce18252017-06-22 10:48:25 -070017import os
18from default import TOSCA_DEFS_DIR
19from xosgenx.generator import XOSGenerator
20from xosapi.xos_grpc_client import Empty
21
22class Args:
23 pass
24
25current_dir = os.path.dirname(os.path.realpath(__file__))
26
27class 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 Scandolo2c1a0012017-09-12 17:08:04 -070038
Matteo Scandolo9ce18252017-06-22 10:48:25 -070039
40 try:
Matteo Scandolo2c1a0012017-09-12 17:08:04 -070041 xproto = client.utility.GetXproto(Empty())
Matteo Scandolo9ce18252017-06-22 10:48:25 -070042 args = Args()
43 args.output = TOSCA_DEFS_DIR
44 args.inputs = str(xproto.xproto)
45 args.target = os.path.join(current_dir, 'xtarget/tosca.xtarget')
46 args.write_to_file = 'model'
47 args.dest_extension = 'yaml'
48 XOSGenerator.generate(args)
49 print "[XOS-TOSCA] Recipes generated in %s" % args.output
50 except Exception as e:
51 print "[XOS-TOSCA] Failed to generate TOSCA"
52 print e
53