Merge "Reformat sdnr devicemanager to ONAP code style"
[ccsdk/features.git] / sdnr / wt / devicemanager / provider / src / main / java / org / onap / ccsdk / features / sdnr / wt / devicemanager / impl / xml / FaultEntityManager.java
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
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
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
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18 package org.onap.ccsdk.features.sdnr.wt.devicemanager.impl.xml;
19
20 import java.util.regex.Matcher;
21 import java.util.regex.Pattern;
22 import org.onap.ccsdk.features.sdnr.wt.devicemanager.impl.util.InternalSeverity;
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
26 public class FaultEntityManager {
27
28     private static final Pattern pattern = Pattern.compile(".*\\[layerProtocol=(.*)\\]");
29
30     /**
31      * The leading indication for notification or events that are not in the currentProblem data of the ONF Coremodel
32      */
33     private static final String NOCURRENTPROBLEMINDICATION = "#";
34
35     /**
36      * Specific problems are not moving into current problem list
37      * 
38      * @param problemName to be verified
39      * @return true if problem is current
40      */
41     public static boolean isManagedAsCurrentProblem(String problemName) {
42         return !problemName.startsWith(NOCURRENTPROBLEMINDICATION);
43     }
44
45     public static boolean isManagedAsCurrentProblem(Fault problem) {
46         return isManagedAsCurrentProblem(problem.getProblem());
47     }
48
49     /**
50      * Specific problems are not moving into current problem list
51      * 
52      * @param fault to be verified
53      * @return true if cleared indication
54      */
55     public static boolean isNoAlarmIndication(Fault fault) {
56         InternalSeverity severity = InternalSeverity.valueOf(fault.getSeverity());
57         return severity.isNoAlarmIndication();
58     }
59
60     /**
61      * Create a specific ES id for the current log.
62      * 
63      * @return a string with the generated ES Id
64      */
65     public static String genSpecificEsId(String nodeName, String objectId, String problemName) {
66
67         String uuId;
68
69         Matcher matcher = pattern.matcher(objectId);
70         if (matcher.matches() && matcher.groupCount() == 1) {
71             uuId = matcher.group(1);
72         } else {
73             uuId = objectId;
74         }
75
76         StringBuffer strBuf = new StringBuffer();
77         strBuf.append(nodeName);
78         strBuf.append("/");
79         strBuf.append(uuId);
80         strBuf.append("/");
81         strBuf.append(problemName);
82         return strBuf.toString();
83     }
84
85     /**
86      * Create Es id
87      * 
88      * @param fault used to create uuid for faultcurrent
89      * @return String with Id
90      */
91     public static String genSpecificEsId(FaultcurrentEntity fault) {
92         return genSpecificEsId(fault.getNodeId(), fault.getObjectId(), fault.getProblem());
93     }
94 }