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