4991bdaa1883d53dfbdb5c0f71ec258384eee3f5
[dcaegen2/platform.git] / mod / bpgenerator / onap / src / main / java / org / onap / blueprintgenerator / service / common / ComponentSpecService.java
1 /*
2  *
3  *  * ============LICENSE_START=======================================================
4  *  *  org.onap.dcae
5  *  *  ================================================================================
6  *  *  Copyright (c) 2020  AT&T Intellectual Property. All rights reserved.
7  *  *  ================================================================================
8  *  *  Licensed under the Apache License, Version 2.0 (the "License");
9  *  *  you may not use this file except in compliance with the License.
10  *  *  You may obtain a copy of the License at
11  *  *
12  *  *       http://www.apache.org/licenses/LICENSE-2.0
13  *  *
14  *  *  Unless required by applicable law or agreed to in writing, software
15  *  *  distributed under the License is distributed on an "AS IS" BASIS,
16  *  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  *  *  See the License for the specific language governing permissions and
18  *  *  limitations under the License.
19  *  *  ============LICENSE_END=========================================================
20  *
21  *
22  */
23
24 package org.onap.blueprintgenerator.service.common;
25
26 import org.onap.blueprintgenerator.exception.ComponentSpecException;
27 import org.onap.blueprintgenerator.model.componentspec.OnapComponentSpec;
28 import com.fasterxml.jackson.databind.ObjectMapper;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.beans.factory.annotation.Qualifier;
31 import org.springframework.stereotype.Service;
32
33 import java.io.File;
34
35 /**
36  * @author : Ravi Mantena
37  * @date 10/16/2020 Application: ONAP - Blueprint Generator Common ONAP Service used by ONAP and
38  * DMAAP Blueprint to create Component Spec from File
39  */
40 @Service("onapComponentSpecService")
41 public class ComponentSpecService {
42
43     @Qualifier("objectMapper")
44     @Autowired
45     private ObjectMapper componentMapper;
46
47     @Qualifier("yamlObjectMapper")
48     @Autowired
49     private ObjectMapper yamlComponentMapper;
50
51     /**
52      * Creates ComponentSpec from given file path and validates if the input is json file or not
53      *
54      * @param componentSpecPath
55      * @return
56      */
57     public OnapComponentSpec createComponentSpecFromFile(String componentSpecPath) {
58         OnapComponentSpec componentSpec;
59         try {
60             if (!componentSpecPath.endsWith(".json")) {
61                 componentSpec = yamlComponentMapper.readValue(new File(componentSpecPath), OnapComponentSpec.class);
62             }else{
63                 componentSpec = componentMapper.readValue(new File(componentSpecPath), OnapComponentSpec.class);
64             }
65         } catch (Exception ex) {
66             throw new ComponentSpecException("Unable to create ONAP Component Spec from the input file: "+ componentSpecPath, ex);
67         }
68         return componentSpec;
69     }
70
71     /**
72      * Creates the component spec from string.
73      * This method is used by RuntimeAPI
74      * @param specString the spec string
75      */
76     public OnapComponentSpec createComponentSpecFromString(String specString) {
77         OnapComponentSpec componentSpec;
78         try {
79             componentSpec = componentMapper.readValue(specString, OnapComponentSpec.class);
80         } catch (Exception ex) {
81             throw new ComponentSpecException(
82                 "Unable to create ONAP Component Spec from the input string: " + specString,
83                 ex);
84         }
85         return componentSpec;
86     }
87
88 }