78adf46499bf23c889782c115ed9d3382f19beb0
[ric-plt/a1.git] / a1-go / pkg / rmr / rmr.go
1 /*
2 ==================================================================================
3   Copyright (c) 2022 Samsung
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
22 package rmr
23
24 import (
25         "gerrit.o-ran-sc.org/r/ric-plt/a1/pkg/a1"
26         "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp"
27 )
28
29 const (
30         a1PolicyRequest = 20010
31         a1SourceName    = "service-ricplt-a1mediator-http"
32 )
33
34 type RmrSender struct {
35         rmrclient *xapp.RMRClient
36 }
37
38 type IRmrSender interface {
39         RmrSendToXapp(httpBodyString string) bool
40 }
41
42 func NewRMRSender() IRmrSender {
43         RMRclient := xapp.NewRMRClientWithParams(&xapp.RMRClientParams{
44                 StatDesc: "",
45                 RmrData: xapp.PortData{
46                         Name:              "",
47                         MaxSize:           65534,
48                         ThreadType:        0,
49                         LowLatency:        false,
50                         FastAck:           false,
51                         MaxRetryOnFailure: 1,
52                 },
53         })
54         return &RmrSender{
55                 rmrclient: RMRclient,
56         }
57 }
58
59 func (rmr *RmrSender) RmrSendToXapp(httpBodyString string) bool {
60
61         params := &xapp.RMRParams{}
62         params.Mtype = a1PolicyRequest
63         params.SubId = -1
64         params.Xid = ""
65         params.Meid = &xapp.RMRMeid{}
66         params.Src = a1SourceName
67         params.PayloadLen = len([]byte(httpBodyString))
68         params.Payload = []byte(httpBodyString)
69         a1.Logger.Debug("MSG to XAPP: %s ", params.String())
70         a1.Logger.Debug("len payload %+v", len(params.Payload))
71         s := rmr.rmrclient.SendMsg(params)
72         a1.Logger.Debug("rmrSendToXapp: sending: %+v", s)
73         return s
74 }