2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017-2018 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
13 * http://www.apache.org/licenses/LICENSE-2.0
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.
21 * ============LICENSE_END=========================================================
24 package org.onap.sdnc.config.generator.pattern;
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
29 import org.apache.commons.lang3.StringUtils;
30 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
31 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
32 import org.onap.ccsdk.sli.core.sli.SvcLogicJavaPlugin;
33 import org.onap.sdnc.config.generator.ConfigGeneratorConstant;
34 import org.onap.sdnc.config.generator.merge.ParameterMissingException;
35 import org.onap.sdnc.config.generator.tool.CheckDataTool;
36 import org.onap.sdnc.config.generator.tool.LogParserTool;
38 public class PatternNode implements SvcLogicJavaPlugin {
40 private static final EELFLogger log = EELFManager.getInstance().getLogger(PatternNode.class);
42 public void parseErrorLog(Map<String, String> inParams, SvcLogicContext ctx)
43 throws SvcLogicException {
44 log.info("Received parseErroLog call with params : " + inParams);
45 String responsePrefix = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_RESPONSE_PRIFIX);
47 responsePrefix = StringUtils.isNotBlank(responsePrefix) ? (responsePrefix + ".") : "";
48 String logData = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_LOG_DATA);
49 if (StringUtils.isBlank(logData)) {
50 throw new ParameterMissingException("Log Data is missing");
52 LogParserTool logParserTool = new LogParserTool();
53 String parsedError = logParserTool.parseErrorLog(logData);
54 ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_PARSED_ERROR,
56 ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS,
57 ConfigGeneratorConstant.OUTPUT_STATUS_SUCCESS);
58 } catch (Exception e) {
59 ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS,
60 ConfigGeneratorConstant.OUTPUT_STATUS_FAILURE);
61 ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_ERROR_MESSAGE,
63 log.error("Failed in parsing error log", e);
64 throw new SvcLogicException(e.getMessage());
68 public void checkDataType(Map<String, String> inParams, SvcLogicContext ctx)
69 throws SvcLogicException {
70 log.info("Received checkDataType call with params : " + inParams);
71 String responsePrefix = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_RESPONSE_PRIFIX);
73 responsePrefix = StringUtils.isNotBlank(responsePrefix) ? (responsePrefix + ".") : "";
74 String checkData = inParams.get(ConfigGeneratorConstant.INPUT_PARAM_CHECK_DATA);
75 if (StringUtils.isBlank(checkData)) {
76 throw new ParameterMissingException("Check Data is missing");
78 String dataType = CheckDataTool.checkData(checkData);
79 ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_DATA_TYPE,
81 ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS,
82 ConfigGeneratorConstant.OUTPUT_STATUS_SUCCESS);
83 } catch (Exception e) {
84 ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS,
85 ConfigGeneratorConstant.OUTPUT_STATUS_FAILURE);
86 ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_ERROR_MESSAGE,
88 log.error("Failed in checkDataType", e);
89 throw new SvcLogicException(e.getMessage());