Add NodeId and JobId as configuration in ICS Version
[nonrtric/rapp/ransliceassurance.git] / icsversion / internal / odusliceassurance / app.go
1 // -
2 //   ========================LICENSE_START=================================
3 //   O-RAN-SC
4 //   %%
5 //   Copyright (C) 2022: Nordix Foundation
6 //   %%
7 //   Licensed under the Apache License, Version 2.0 (the "License");
8 //   you may not use this file except in compliance with the License.
9 //   You may obtain a copy of the License at
10 //
11 //        http://www.apache.org/licenses/LICENSE-2.0
12 //
13 //   Unless required by applicable law or agreed to in writing, software
14 //   distributed under the License is distributed on an "AS IS" BASIS,
15 //   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 //   See the License for the specific language governing permissions and
17 //   limitations under the License.
18 //   ========================LICENSE_END===================================
19 //
20
21 package sliceassurance
22
23 import (
24         "fmt"
25         "net/http"
26
27         "github.com/gorilla/mux"
28         log "github.com/sirupsen/logrus"
29         "oransc.org/usecase/oduclosedloop/icsversion/internal/config"
30         "oransc.org/usecase/oduclosedloop/icsversion/internal/restclient"
31         "oransc.org/usecase/oduclosedloop/icsversion/internal/structures"
32 )
33
34 var started bool
35 var icsAddr string
36 var consumerPort string
37 var jobId string
38
39 const (
40         THRESHOLD_TPUT          = 7000
41         DEFAULT_DEDICATED_RATIO = 15
42         NEW_DEDICATED_RATIO     = 25
43 )
44
45 var jobRegistrationInfo = struct {
46         InfoTypeID            string      `json:"info_type_id"`
47         JobResultURI          string      `json:"job_result_uri"`
48         JobOwner              string      `json:"job_owner"`
49         JobDefinition         interface{} `json:"job_definition"`
50         StatusNotificationURI string      `json:"status_notification_uri"`
51 }{
52         InfoTypeID:   "Performance_Measurement_Streaming",
53         JobResultURI: "",
54         JobOwner:     "O-DU Slice Assurance Usecase",
55 }
56
57 type App struct {
58         client *restclient.Client
59         data   *structures.SliceAssuranceMeas
60         sdnr   SdnrHandler
61         mh     MessageHandler
62 }
63
64 var sdnrConfig SdnrConfiguration
65
66 func (a *App) Initialize(config *config.Configuration) {
67         consumerPort = fmt.Sprint(config.ConsumerPort)
68         jobRegistrationInfo.JobResultURI = config.ConsumerHost + ":" + consumerPort
69         jobRegistrationInfo.StatusNotificationURI = config.ConsumerHost + ":" + consumerPort
70
71         sdnrConfig = SdnrConfiguration{
72                 SDNRAddress:  config.SDNRAddress,
73                 SDNRUser:     config.SDNRUser,
74                 SDNRPassword: config.SDNPassword,
75                 NodeId:       config.NodeId,
76         }
77         icsAddr = config.InfoCoordinatorAddress
78         jobId = config.JobId
79
80         a.client = restclient.New(&http.Client{}, false)
81         a.data = structures.NewSliceAssuranceMeas()
82
83         a.sdnr = *NewSdnrHandler(sdnrConfig, a.client, a.data)
84         a.mh = *NewMessageHandler(a.data)
85 }
86
87 func (a *App) StartServer() {
88         fmt.Printf("Starting Server %v", consumerPort)
89         err := http.ListenAndServe(fmt.Sprintf(":%v", consumerPort), a.getRouter())
90
91         if err != nil {
92                 log.Errorf("Server stopped unintentionally due to: %v. Deleting job.", err)
93                 if deleteErr := a.deleteJob(); deleteErr != nil {
94                         log.Errorf("Unable to delete consumer job due to: %v. Please remove job %v manually.", deleteErr, jobId)
95                 }
96         }
97 }
98
99 func (a *App) getRouter() *mux.Router {
100
101         r := mux.NewRouter()
102         r.HandleFunc("/", a.run).Methods(http.MethodPost).Name("messageHandler")
103         r.HandleFunc("/status", a.statusHandler).Methods(http.MethodGet).Name("status")
104         r.HandleFunc("/admin/start", a.startHandler).Methods(http.MethodPost).Name("start")
105         r.HandleFunc("/admin/stop", a.stopHandler).Methods(http.MethodPost).Name("stop")
106
107         return r
108 }
109
110 func (a *App) run(w http.ResponseWriter, r *http.Request) {
111         a.mh.ProcessMessage(r.Body)
112
113         for key := range a.data.Metrics {
114                 a.sdnr.getRRMInformation(key.Duid)
115         }
116         a.sdnr.updateDedicatedRatio()
117 }
118
119 func (a *App) statusHandler(w http.ResponseWriter, r *http.Request) {
120         log.Debug("statusHandler:")
121         runStatus := "started"
122         if !started {
123                 runStatus = "stopped"
124         }
125         fmt.Fprintf(w, `{"status": "%v"}`, runStatus)
126 }
127
128 func (a *App) startHandler(w http.ResponseWriter, r *http.Request) {
129         log.Debug("Register job in ICS.")
130
131         putErr := a.client.Put(icsAddr+"/data-consumer/v1/info-jobs/"+jobId, jobRegistrationInfo, nil)
132         if putErr != nil {
133                 http.Error(w, fmt.Sprintf("Unable to register consumer job due to: %v.", putErr), http.StatusBadRequest)
134                 return
135         }
136         log.Debug("Registered job.")
137         started = true
138 }
139
140 func (a *App) stopHandler(w http.ResponseWriter, r *http.Request) {
141         deleteErr := a.deleteJob()
142         if deleteErr != nil {
143                 http.Error(w, fmt.Sprintf("Unable to delete consumer job due to: %v. Please remove job %v manually.", deleteErr, jobId), http.StatusBadRequest)
144                 return
145         }
146         log.Debug("Deleted job.")
147         started = false
148 }
149
150 func (a *App) deleteJob() error {
151         return a.client.Delete(icsAddr+"/data-consumer/v1/info-jobs/"+jobId, nil, nil)
152 }
153
154 func (a *App) Teardown() {
155         log.Info("Shutting down gracefully.")
156         deleteErr := a.deleteJob()
157         if deleteErr != nil {
158                 log.Errorf("Unable to delete job on shutdown due to: %v. Please remove job %v manually.", deleteErr, jobId)
159         }
160
161 }