blob: 5d593632a4196ed974633a4d09627a4986d3cc5f [file] [log] [blame]
Juha Hyttinen5f8ffa02020-02-06 15:28:59 +02001/*
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*/
19
20package xapptweaks
21
22import (
23 "fmt"
24 "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp"
25 "sync"
26 "time"
27)
28
29//-----------------------------------------------------------------------------
30//
31//-----------------------------------------------------------------------------
32type RmrWrapper struct {
33 mtx sync.Mutex
34 Rmr *xapp.RMRClient
35 CntRecvMsg uint64
36 CntSentMsg uint64
37}
38
39func (tc *RmrWrapper) Lock() {
40 tc.mtx.Lock()
41}
42
43func (tc *RmrWrapper) Unlock() {
44 tc.mtx.Unlock()
45}
46
47func (tc *RmrWrapper) Init() {
48}
49
Juha Hyttinend708a432020-03-09 09:37:06 +020050func (tc *RmrWrapper) RmrSend(params *RMRParams, to time.Duration) (err error) {
Juha Hyttinen5f8ffa02020-02-06 15:28:59 +020051 if tc.Rmr == nil {
52 err = fmt.Errorf("Failed rmr object nil for %s", params.String())
53 return
54 }
Juha Hyttinend708a432020-03-09 09:37:06 +020055 tc.Lock()
56 status := tc.Rmr.Send(params.RMRParams, false)
57 tc.Unlock()
58 i := 0
59 for ; i < int(to)*2 && status == false; i++ {
Juha Hyttinen5f8ffa02020-02-06 15:28:59 +020060 tc.Lock()
61 status = tc.Rmr.Send(params.RMRParams, false)
62 tc.Unlock()
63 if status == false {
64 time.Sleep(500 * time.Millisecond)
65 }
66 }
67 if status == false {
68 err = fmt.Errorf("Failed with retries(%d) %s", i, params.String())
69 tc.Rmr.Free(params.Mbuf)
Juha Hyttinenb31b13f2020-03-18 10:25:30 +020070 params.Mbuf = nil
Juha Hyttinen5f8ffa02020-02-06 15:28:59 +020071 } else {
72 tc.CntSentMsg++
73 }
74 return
75}