appc-config-generator-provider sonar fixes part 2
[appc.git] / appc-config / appc-config-generator / provider / src / main / java / org / onap / sdnc / config / generator / pattern / PatternNode.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.sdnc.config.generator.pattern;
26
27 import com.att.eelf.configuration.EELFLogger;
28 import com.att.eelf.configuration.EELFManager;
29 import java.util.Map;
30 import org.apache.commons.lang3.StringUtils;
31 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
32 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
33 import org.onap.ccsdk.sli.core.sli.SvcLogicJavaPlugin;
34 import org.onap.sdnc.config.generator.ConfigGeneratorConstant;
35 import org.onap.sdnc.config.generator.merge.ParameterMissingException;
36 import org.onap.sdnc.config.generator.tool.CheckDataTool;
37 import org.onap.sdnc.config.generator.tool.LogParserTool;
38
39 public class PatternNode implements SvcLogicJavaPlugin {
40
41     private static final EELFLogger log = EELFManager.getInstance().getLogger(PatternNode.class);
42
43     public void parseErrorLog(Map<String, String> inParams, SvcLogicContext ctx)
44         throws SvcLogicException {
45         log.info("Received parseErroLog call with params : " + inParams);
46         String responsePrefix = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_RESPONSE_PRIFIX);
47         try {
48             responsePrefix = StringUtils.isNotBlank(responsePrefix) ? (responsePrefix + ".") : "";
49             String logData = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_LOG_DATA);
50             if (StringUtils.isBlank(logData)) {
51                 throw new ParameterMissingException("Log Data is missing");
52             }
53             LogParserTool logParserTool = new LogParserTool();
54             String parsedError = logParserTool.parseErrorLog(logData);
55             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_PARSED_ERROR,
56                 parsedError);
57             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS,
58                 ConfigGeneratorConstant.OUTPUT_STATUS_SUCCESS);
59         } catch (Exception e) {
60             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS,
61                 ConfigGeneratorConstant.OUTPUT_STATUS_FAILURE);
62             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_ERROR_MESSAGE,
63                 e.getMessage());
64             log.error("Failed in parsing error log", e);
65             throw new SvcLogicException(e.getMessage());
66         }
67     }
68
69     public void checkDataType(Map<String, String> inParams, SvcLogicContext ctx)
70         throws SvcLogicException {
71         log.info("Received checkDataType call with params : " + inParams);
72         String responsePrefix = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_RESPONSE_PRIFIX);
73         try {
74             responsePrefix = StringUtils.isNotBlank(responsePrefix) ? (responsePrefix + ".") : "";
75             String checkData = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_CHECK_DATA);
76             if (StringUtils.isBlank(checkData)) {
77                 throw new ParameterMissingException("Check Data is missing");
78             }
79             String dataType = CheckDataTool.checkData(checkData);
80             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_DATA_TYPE,
81                 dataType);
82             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS,
83                 ConfigGeneratorConstant.OUTPUT_STATUS_SUCCESS);
84         } catch (Exception e) {
85             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS,
86                 ConfigGeneratorConstant.OUTPUT_STATUS_FAILURE);
87             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_ERROR_MESSAGE,
88                 e.getMessage());
89             log.error("Failed in checkDataType", e);
90             throw new SvcLogicException(e.getMessage());
91         }
92     }
93 }