Add parser convert vnffg and server-group
[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.nsdmodel import EtsiNsdInfoModel
17 from lcm.pub.utils.toscaparser.vnfdmodel import EtsiVnfdInfoModel
18
19
20 def parse_nsd(path, input_parameters=[]):
21     tosca_obj = EtsiNsdInfoModel(path, input_parameters)
22     strResponse = json.dumps(tosca_obj, default=lambda obj: obj.__dict__)
23     strResponse = strResponse.replace(': null', ': ""')
24     return strResponse
25
26
27 def parse_vnfd(path, input_parameters=[]):
28     tosca_obj = EtsiVnfdInfoModel(path, input_parameters)
29     strResponse = json.dumps(tosca_obj, default=lambda obj: obj.__dict__)
30     strResponse = strResponse.replace(': null', ': ""')
31     return strResponse