f13a3604f0cb2ade35576d458c6601920e34d78a
[ccsdk/cds.git] / ms / error-catalog / core / src / main / kotlin / org / onap / ccsdk / cds / error / catalog / core / utils / ErrorCatalogUtils.kt
1 /*
2  *  Copyright © 2020 IBM, Bell Canada.
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  */
16 package org.onap.ccsdk.cds.error.catalog.core.utils
17
18 import org.apache.commons.lang3.exception.ExceptionUtils
19
20 object ErrorCatalogUtils {
21     private const val REGEX_PATTERN = "^cause=(.*),action=(.*)"
22     private val regex = REGEX_PATTERN.toRegex()
23
24     fun readErrorCauseFromMessage(message: String): String {
25         val matchResults = regex.matchEntire(message)
26         return matchResults!!.groupValues[1]
27     }
28
29     fun readErrorActionFromMessage(message: String): String {
30         val matchResults = regex.matchEntire(message)
31         return matchResults!!.groupValues[2]
32     }
33 }
34
35 fun Exception.errorCauseOrDefault(): Throwable {
36     return ExceptionUtils.getRootCause(this)
37 }
38
39 fun Exception.errorMessageOrDefault(): String {
40     return this.message ?: ""
41 }