Add UT for REST interface & code refactor
[ric-plt/alarm-go.git] / alarm / types.go
1 /*
2  *  Copyright (c) 2020 AT&T Intellectual Property.
3  *  Copyright (c) 2020 Nokia.
4  *
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  * This source code is part of the near-RT RIC (RAN Intelligent Controller)
18  * platform project (RICP).
19  */
20
21 package alarm
22
23 import (
24         "sync"
25         "unsafe"
26 )
27
28 import "C"
29
30 // Severity for alarms
31 type Severity string
32
33 // Possible values for Severity
34 const (
35         SeverityUnspecified Severity = "UNSPECIFIED"
36         SeverityCritical    Severity = "CRITICAL"
37         SeverityMajor       Severity = "MAJOR"
38         SeverityMinor       Severity = "MINOR"
39         SeverityWarning     Severity = "WARNING"
40         SeverityCleared     Severity = "CLEARED"
41         SeverityDefault     Severity = "DEFAULT"
42 )
43
44 // Alarm object - see README for more information
45 type Alarm struct {
46         ManagedObjectId   string   `json:"managedObjectId"`
47         ApplicationId     string   `json:"applicationId"`
48         SpecificProblem   int      `json:"specificProblem"`
49         PerceivedSeverity Severity `json:"perceivedSeverity"`
50         AdditionalInfo    string   `json:"additionalInfo"`
51         IdentifyingInfo   string   `json:"identifyingInfo"`
52 }
53
54 // Alarm actions
55 type AlarmAction string
56
57 // Possible values for alarm actions
58 const (
59         AlarmActionRaise    AlarmAction = "RAISE"
60         AlarmActionClear    AlarmAction = "CLEAR"
61         AlarmActionClearAll AlarmAction = "CLEARALL"
62 )
63
64 type AlarmMessage struct {
65         Alarm
66         AlarmAction
67         AlarmTime int64
68 }
69
70 // RICAlarm is an alarm instance
71 type RICAlarm struct {
72         moId   string
73         appId  string
74         rmrCtx unsafe.Pointer
75         mutex  sync.Mutex
76 }
77
78 const (
79         RIC_ALARM_UPDATE = 13111
80         RIC_ALARM_QUERY  = 13112
81 )
82
83 // Temp alarm constants & definitions
84 const (
85         RIC_RT_DISTRIBUTION_FAILED     int = 8004
86         TCP_CONNECTIVITY_LOST_TO_DBAAS int = 8005
87         E2_CONNECTIVITY_LOST_TO_GNODEB int = 8006
88         E2_CONNECTIVITY_LOST_TO_ENODEB int = 8007
89 )
90
91 type AlarmDefinition struct {
92         AlarmId               int
93         AlarmText             string
94         EventType             string
95         OperationInstructions string
96 }
97
98 var RICAlarmDefinitions = map[int]AlarmDefinition{
99         RIC_RT_DISTRIBUTION_FAILED: AlarmDefinition{
100                 AlarmId:               RIC_RT_DISTRIBUTION_FAILED,
101                 AlarmText:             "RIC ROUTING TABLE DISTRIBUTION FAILED",
102                 EventType:             "Processing error",
103                 OperationInstructions: "Not defined",
104         },
105         TCP_CONNECTIVITY_LOST_TO_DBAAS: AlarmDefinition{
106                 AlarmId:               TCP_CONNECTIVITY_LOST_TO_DBAAS,
107                 AlarmText:             "TCP CONNECTIVITY LOST TO DBAAS",
108                 EventType:             "Communication error",
109                 OperationInstructions: "Not defined",
110         },
111         E2_CONNECTIVITY_LOST_TO_GNODEB: AlarmDefinition{
112                 AlarmId:               E2_CONNECTIVITY_LOST_TO_GNODEB,
113                 AlarmText:             "E2 CONNECTIVITY LOST TO G-NODEB",
114                 EventType:             "Communication error",
115                 OperationInstructions: "Not defined",
116         },
117         E2_CONNECTIVITY_LOST_TO_ENODEB: AlarmDefinition{
118                 AlarmId:               E2_CONNECTIVITY_LOST_TO_ENODEB,
119                 AlarmText:             "E2 CONNECTIVITY LOST TO E-NODEB",
120                 EventType:             "Communication error",
121                 OperationInstructions: "Not defined",
122         },
123 }