Add parse vnfd package logic
[vfc/nfvo/lcm.git] / lcm / pub / utils / toscaparser / __init__.py
1 # Copyright 2017 ZTE Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 import json
15
16 from lcm.pub.utils.toscaparser.convert import convert_nsd, convert_vnfd
17 from lcm.pub.utils.toscaparser.etsinsdinfomodel import EtsiNsdInfoModel
18 from lcm.pub.utils.toscaparser.etsivnfdinfomodel import EtsiVnfdInfoModel
19 from lcm.pub.utils.toscaparser.parser import parse_nsd_model, parse_vnfd_model
20
21
22 def parse_nsd(path, input_parameters=[]):
23     tosca_obj = EtsiNsdInfoModel(path, input_parameters)
24     strResponse = json.dumps(tosca_obj, default=lambda obj: obj.__dict__)
25     strResponse = strResponse.replace(': null', ': ""')
26     return strResponse
27
28
29 def parse_vnfd(path, input_parameters=[]):
30     tosca_obj = EtsiVnfdInfoModel(path, input_parameters)
31     strResponse = json.dumps(tosca_obj, default=lambda obj: obj.__dict__)
32     strResponse = strResponse.replace(': null', ': ""')
33     return strResponse
34