daf84b84ee41cf3dbd9ddd26e91b03bbde62efc6
[ric-plt/rtmgr.git] / pkg / rtmgr / rtmgr.go
1 /*
2 ==================================================================================
3   Copyright (c) 2019 AT&T Intellectual Property.
4   Copyright (c) 2019 Nokia
5
6    Licensed under the Apache License, Version 2.0 (the "License");
7    you may not use this file except in compliance with the License.
8    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
13    distributed under the License is distributed on an "AS IS" BASIS,
14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15    See the License for the specific language governing permissions and
16    limitations under the License.
17
18    This source code is part of the near-RT RIC (RAN Intelligent Controller)
19    platform project (RICP).
20
21 ==================================================================================
22 */
23 /*
24   Mnemonic:     rtmgr/rtmgr.go
25   Abstract:     Contains RTMGR (Routing Manager) module's generic variables and functions
26   Date:         26 March 2019
27 */
28
29 package rtmgr
30
31 import (
32         "encoding/json"
33         "errors"
34         "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp"
35         "github.com/ghodss/yaml"
36         "io/ioutil"
37         "os"
38 )
39
40 var (
41         //TODO: temporary solution
42         // CamelCase Message Types are for being able to test with old fashioned admin control xApps
43         // TODO: Add a separate message definition file (Not using the one from RMR to not create dependency on that library).
44         MessageTypes = map[string]string{
45                 "HandoverPreparation":              "0",
46                 "HandoverCancel":                   "1",
47                 "LoadIndication":                   "2",
48                 "ErrorIndication":                  "3",
49                 "SNStatusTransfer":                 "4",
50                 "UEContextRelease":                 "5",
51                 "X2Setup":                          "6",
52                 "Reset":                            "7",
53                 "E2_TERM_INIT":                     "1100",
54                 "RAN_CONNECTED":                    "1200",
55                 "RAN_RESTARTED":                    "1210",
56                 "RAN_RECONFIGURED":                 "1220",
57                 "RIC_SCTP_CLEAR_ALL":               "1090",
58                 "RIC_SCTP_CONNECTION_FAILURE":      "1080",
59                 "RIC_X2_SETUP":                     "10000",
60                 "RIC_X2_RESPONSE":                  "10001",
61                 "RIC_X2_RESOURCE_STATUS_REQUEST":   "10002",
62                 "RIC_X2_RESOURCE_STATUS_RESPONSE":  "10003",
63                 "RIC_X2_LOAD_INFORMATION":          "10004",
64                 "RIC_E2_TERMINATION_HC_REQUEST":    "10005",
65                 "RIC_E2_TERMINATION_HC_RESPONSE":   "10006",
66                 "RIC_E2_MANAGER_HC_REQUEST":        "10007",
67                 "RIC_E2_MANAGER_HC_RESPONSE":       "10008",
68                 "RIC_ENB_LOAD_INFORMATION":         "10020",
69                 "RIC_ERROR_INDICATION":             "10030",
70                 "RIC_X2_SETUP_REQ":                 "10060",
71                 "RIC_X2_SETUP_RESP":                "10061",
72                 "RIC_X2_SETUP_FAILURE":             "10062",
73                 "RIC_X2_RESET_REQ":                 "10070",
74                 "RIC_X2_RESET_RESP":                "10071",
75                 "RIC_ENB_CONF_UPDATE":              "10080",
76                 "RIC_ENB_CONF_UPDATE_ACK":          "10081",
77                 "RIC_ENB_CONF_UPDATE_FAILURE":      "10082",
78                 "RIC_RES_STATUS_REQ":               "10090",
79                 "RIC_RES_STATUS_RESP":              "10091",
80                 "RIC_RES_STATUS_FAILURE":           "10092",
81                 "RIC_RESOURCE_STATUS_UPDATE":       "10100",
82                 "RIC_ENDC_X2_SETUP_REQ":            "10360",
83                 "RIC_ENDC_X2_SETUP_RESP":           "10361",
84                 "RIC_ENDC_X2_SETUP_FAILURE":        "10362",
85                 "RIC_ENDC_CONF_UPDATE":             "10370",
86                 "RIC_ENDC_CONF_UPDATE_ACK":         "10371",
87                 "RIC_ENDC_CONF_UPDATE_FAILURE":     "10372",
88                 "RIC_GNB_STATUS_INDICATION":        "10450",
89                 "RIC_SUB_REQ":                      "12010",
90                 "RIC_SUB_RESP":                     "12011",
91                 "RIC_SUB_FAILURE":                  "12012",
92                 "RIC_SUB_DEL_REQ":                  "12020",
93                 "RIC_SUB_DEL_RESP":                 "12021",
94                 "RIC_SUB_DEL_FAILURE":              "12022",
95                 "RIC_CONTROL_REQ":                  "12040",
96                 "RIC_CONTROL_ACK":                  "12041",
97                 "RIC_CONTROL_FAILURE":              "12042",
98                 "RIC_INDICATION":                   "12050",
99                 "DC_ADM_INT_CONTROL":               "20000",
100                 "DC_ADM_INT_CONTROL_ACK":           "20001",
101                 "A1_POLICY_REQ":                    "20010",
102                 "A1_POLICY_RESPONSE":               "20011",
103                 "A1_POLICY_QUERY":                  "20012",
104                 "RIC_CONTROL_XAPP_CONFIG_REQUEST":  "100000",
105                 "RIC_CONTROL_XAPP_CONFIG_RESPONSE": "100001",
106         }
107
108         // Messagetype mappings for the platform components.
109         // This implements static default routes needed by the RIC. Needs to be changed in case new components/message types needes to be added/updated.
110         // Representation : {"componentName1": {"tx": <tx message type list>, "rx": <rx message type list>}}
111         PLATFORMMESSAGETYPES = map[string]map[string][]string{
112                 "E2TERM":     {"tx": []string{"RIC_X2_SETUP_REQ", "RIC_X2_SETUP_RESP", "RIC_X2_SETUP_FAILURE", "RIC_X2_RESET", "RIC_X2_RESET_RESP", "RIC_ENDC_X2_SETUP_REQ", "RIC_ENDC_X2_SETUP_RESP", "RIC_ENDC_X2_SETUP_FAILURE", "RIC_SUB_RESP", "RIC_SUB_FAILURE", "RIC_SUB_DEL_RESP", "RIC_SUB_DEL_FAILURE"}, "rx": []string{"RIC_X2_SETUP_REQ", "RIC_X2_SETUP_RESP", "RIC_X2_SETUP_FAILURE", "RIC_X2_RESET", "RIC_X2_RESET_RESP", "RIC_ENDC_X2_SETUP_REQ", "RIC_ENDC_X2_SETUP_RESP", "RIC_ENDC_X2_SETUP_FAILURE", "RIC_SUB_REQ", "RIC_SUB_DEL_REQ", "RIC_CONTROL_REQ"}},
113                 "E2MAN":      {"tx": []string{"RIC_X2_SETUP_REQ", "RIC_X2_SETUP_RESP", "RIC_X2_SETUP_FAILURE", "RIC_X2_RESET", "RIC_X2_RESET_RESP", "RIC_ENDC_X2_SETUP_REQ", "RIC_ENDC_X2_SETUP_RESP", "RIC_ENDC_X2_SETUP_FAILURE"}, "rx": []string{"RIC_X2_SETUP_REQ", "RIC_X2_SETUP_RESP", "RIC_X2_SETUP_FAILURE", "RIC_X2_RESET", "RIC_X2_RESET_RESP", "RIC_ENDC_X2_SETUP_REQ", "RIC_ENDC_X2_SETUP_RESP", "RIC_ENDC_X2_SETUP_FAILURE"}},
114                 "SUBMAN":     {"tx": []string{"RIC_SUB_REQ", "RIC_SUB_DEL_REQ"}, "rx": []string{"RIC_SUB_RESP", "RIC_SUB_FAILURE", "RIC_SUB_DEL_RESP", "RIC_SUB_DEL_FAILURE"}},
115                 "UEMAN":      {"tx": []string{"RIC_CONTROL_REQ"}, "rx": []string{}},
116                 "RSM":        {"tx": []string{"RIC_RES_STATUS_REQ"}, "rx": []string{"RAN_CONNECTED", "RAN_RESTARTED", "RAN_RECONFIGURED"}},
117                 "A1MEDIATOR": {"tx": []string{}, "rx": []string{"A1_POLICY_QUERY", "A1_POLICY_RESPONSE"}},
118         }
119
120         Eps  Endpoints
121         Subs SubscriptionList
122 )
123
124 func GetPlatformComponents(configfile string) (*PlatformComponents, error) {
125         xapp.Logger.Debug("Invoked rtmgr.GetPlatformComponents(" + configfile + ")")
126         var rcfg ConfigRtmgr
127         yamlFile, err := os.Open(configfile)
128         if err != nil {
129                 return nil, errors.New("cannot open the file due to: " + err.Error())
130         }
131         defer yamlFile.Close()
132         byteValue, err := ioutil.ReadAll(yamlFile)
133         if err != nil {
134                 return nil, errors.New("cannot read the file due to: " + err.Error())
135         }
136         jsonByteValue, err := yaml.YAMLToJSON(byteValue)
137         if err != nil {
138                 return nil, errors.New("cannot read the file due to: " + err.Error())
139         }
140         err = json.Unmarshal(jsonByteValue, &rcfg)
141         if err != nil {
142                 return nil, errors.New("cannot parse data due to: " + err.Error())
143         }
144         xapp.Logger.Debug("Platform components read from the configfile:  %v", rcfg.Pcs)
145         return &(rcfg.Pcs), nil
146 }