1 /*******************************************************************************
2 * ============LICENSE_START========================================================================
3 * ONAP : ccsdk feature sdnr wt
4 * =================================================================================================
5 * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
6 * =================================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8 * in compliance with the License. You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software distributed under the License
13 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14 * or implied. See the License for the specific language governing permissions and limitations under
16 * ============LICENSE_END==========================================================================
17 ******************************************************************************/
18 package org.onap.ccsdk.features.sdnr.wt.dataprovider.data;
20 import java.util.regex.Matcher;
21 import java.util.regex.Pattern;
22 import javax.annotation.Nonnull;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.Fault;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.FaultcurrentEntity;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType;
27 public class FaultEntityManager {
29 private static final Pattern pattern = Pattern.compile(".*\\[layerProtocol=(.*)\\]");
32 * The leading indication for notification or events that are not in the
33 * currentProblem data of the ONF Coremodel
35 private static final String NOCURRENTPROBLEMINDICATION = "#";
38 * Specific problems are not moving into current problem list
39 * @param problemName to be verified
40 * @return true if problem is current
42 public static boolean isManagedAsCurrentProblem(String problemName) {
43 return ! problemName.startsWith(NOCURRENTPROBLEMINDICATION);
46 public static boolean isManagedAsCurrentProblem(Fault problem) {
47 return isManagedAsCurrentProblem(problem.getProblem());
51 * Specific problems are not moving into current problem list
52 * @param fault to be verified
53 * @return true if cleared indication
55 public static boolean isNoAlarmIndication(@Nonnull Fault fault) {
56 return SeverityType.NonAlarmed.equals(fault.getSeverity());
60 * Create a specific ES id for the current log.
61 * @return a string with the generated ES Id
63 public static String genSpecificEsId(String nodeName, String objectId, String problemName) {
67 Matcher matcher = pattern.matcher(objectId);
68 if (matcher.matches() && matcher.groupCount() == 1) {
69 uuId = matcher.group(1);
74 StringBuffer strBuf = new StringBuffer();
75 strBuf.append(nodeName);
79 strBuf.append(problemName);
80 return strBuf.toString();
85 * @param fault used to create uuid for faultcurrent
86 * @return String with Id
88 public static String genSpecificEsId(FaultcurrentEntity fault) {
89 return genSpecificEsId(fault.getNodeId(), fault.getObjectId(), fault.getProblem());