Merge "Refactoring data-provider:provider generateDTOs"
[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
32      * currentProblem data of the ONF Coremodel
33      */
34     private static final String NOCURRENTPROBLEMINDICATION = "#";
35
36     /**
37      * Specific problems are not moving into current problem list
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      * @param fault to be verified
52      * @return true if cleared indication
53      */
54     public static boolean isNoAlarmIndication(Fault fault) {
55         InternalSeverity severity = InternalSeverity.valueOf(fault.getSeverity());
56         return severity.isNoAlarmIndication();
57     }
58
59     /**
60      * Create a specific ES id for the current log.
61      * @return a string with the generated ES Id
62      */
63      public static String genSpecificEsId(String nodeName, String objectId, String problemName) {
64
65         String uuId;
66
67         Matcher matcher = pattern.matcher(objectId);
68         if (matcher.matches() && matcher.groupCount() == 1) {
69             uuId = matcher.group(1);
70         } else {
71             uuId = objectId;
72         }
73
74         StringBuffer strBuf = new StringBuffer();
75         strBuf.append(nodeName);
76         strBuf.append("/");
77         strBuf.append(uuId);
78         strBuf.append("/");
79         strBuf.append(problemName);
80         return strBuf.toString();
81     }
82
83     /**
84      * Create Es id
85      * @param fault used to create uuid for faultcurrent
86      * @return String with Id
87      */
88     public static String genSpecificEsId(FaultcurrentEntity fault) {
89         return genSpecificEsId(fault.getNodeId(), fault.getObjectId(), fault.getProblem());
90     }
91 }