blob: ef633bddeb3e6c394086f23f4f586b7becf2bd8a [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
50func (tc *RmrWrapper) RmrSend(params *RMRParams) (err error) {
51 if tc.Rmr == nil {
52 err = fmt.Errorf("Failed rmr object nil for %s", params.String())
53 return
54 }
55 status := false
56 i := 1
57 for ; i <= 10 && status == false; i++ {
58 tc.Lock()
59 status = tc.Rmr.Send(params.RMRParams, false)
60 tc.Unlock()
61 if status == false {
62 time.Sleep(500 * time.Millisecond)
63 }
64 }
65 if status == false {
66 err = fmt.Errorf("Failed with retries(%d) %s", i, params.String())
67 tc.Rmr.Free(params.Mbuf)
68 } else {
69 tc.CntSentMsg++
70 }
71 return
72}