Juha Hyttinen | 5f8ffa0 | 2020-02-06 15:28:59 +0200 | [diff] [blame] | 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 | |
Juha Hyttinen | d708a43 | 2020-03-09 09:37:06 +0200 | [diff] [blame] | 50 | func (tc *RmrWrapper) RmrSend(params *RMRParams, to time.Duration) (err error) { |
Juha Hyttinen | 5f8ffa0 | 2020-02-06 15:28:59 +0200 | [diff] [blame] | 51 | if tc.Rmr == nil { |
| 52 | err = fmt.Errorf("Failed rmr object nil for %s", params.String()) |
| 53 | return |
| 54 | } |
Juha Hyttinen | d708a43 | 2020-03-09 09:37:06 +0200 | [diff] [blame] | 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++ { |
Juha Hyttinen | 5f8ffa0 | 2020-02-06 15:28:59 +0200 | [diff] [blame] | 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 | tc.Rmr.Free(params.Mbuf) |
Juha Hyttinen | b31b13f | 2020-03-18 10:25:30 +0200 | [diff] [blame^] | 70 | params.Mbuf = nil |
Juha Hyttinen | 5f8ffa0 | 2020-02-06 15:28:59 +0200 | [diff] [blame] | 71 | } else { |
| 72 | tc.CntSentMsg++ |
| 73 | } |
| 74 | return |
| 75 | } |