Updating to newer xapp-frame 0.0.30 version. Prepared also for 4.* version
[ric-plt/submgr.git] / pkg / xapptweaks / rmrwrapper.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 */
19
20 package xapptweaks
21
22 import (
23         "fmt"
24         "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp"
25         "sync"
26         "time"
27 )
28
29 //-----------------------------------------------------------------------------
30 //
31 //-----------------------------------------------------------------------------
32 type RmrWrapper struct {
33         mtx        sync.Mutex
34         Rmr        *xapp.RMRClient
35         CntRecvMsg uint64
36         CntSentMsg uint64
37 }
38
39 func (tc *RmrWrapper) Lock() {
40         tc.mtx.Lock()
41 }
42
43 func (tc *RmrWrapper) Unlock() {
44         tc.mtx.Unlock()
45 }
46
47 func (tc *RmrWrapper) Init() {
48 }
49
50 func (tc *RmrWrapper) RmrSend(params *RMRParams, to time.Duration) (err error) {
51         if tc.Rmr == nil {
52                 err = fmt.Errorf("Failed rmr object nil for %s", params.String())
53                 return
54         }
55         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++ {
60                 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                 if params.Mbuf != nil {
70                         tc.Rmr.Free(params.Mbuf)
71                         params.Mbuf = nil
72                 }
73         } else {
74                 tc.CntSentMsg++
75         }
76         return
77 }