Juha Hyttinen | 0388dd9 | 2020-01-09 14:14:16 +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 control |
| 21 | |
| 22 | import ( |
Juha Hyttinen | 0388dd9 | 2020-01-09 14:14:16 +0200 | [diff] [blame] | 23 | "strconv" |
| 24 | "sync" |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 25 | "time" |
archagge | afbf95f | 2021-04-14 08:54:05 +0300 | [diff] [blame] | 26 | |
| 27 | "gerrit.o-ran-sc.org/r/ric-plt/e2ap/pkg/e2ap" |
| 28 | "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp" |
Juha Hyttinen | 0388dd9 | 2020-01-09 14:14:16 +0200 | [diff] [blame] | 29 | ) |
| 30 | |
| 31 | //----------------------------------------------------------------------------- |
| 32 | // |
| 33 | //----------------------------------------------------------------------------- |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 34 | type TransactionIf interface { |
| 35 | String() string |
| 36 | Release() |
| 37 | SendEvent(interface{}, time.Duration) (bool, bool) |
| 38 | WaitEvent(time.Duration) (interface{}, bool) |
| 39 | } |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 40 | |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 41 | //----------------------------------------------------------------------------- |
| 42 | // |
| 43 | //----------------------------------------------------------------------------- |
| 44 | |
| 45 | type Transaction struct { |
Juha Hyttinen | a9bf76c | 2020-02-05 14:06:57 +0200 | [diff] [blame] | 46 | mutex sync.Mutex // |
| 47 | Seq uint64 //transaction sequence |
| 48 | tracker *Tracker //tracker instance |
| 49 | Meid *xapp.RMRMeid //meid transaction related |
Juha Hyttinen | a9bf76c | 2020-02-05 14:06:57 +0200 | [diff] [blame] | 50 | Mtype int //Encoded message type to be send |
| 51 | Payload *e2ap.PackedData //Encoded message to be send |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 52 | EventChan chan interface{} |
| 53 | } |
| 54 | |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 55 | func (t *Transaction) String() string { |
Juha Hyttinen | 9dc5adc | 2020-08-13 10:02:40 +0300 | [diff] [blame] | 56 | meidstr := "N/A" |
| 57 | if t.Meid != nil { |
| 58 | meidstr = t.Meid.String() |
| 59 | } |
| 60 | return "trans(" + strconv.FormatUint(uint64(t.Seq), 10) + "/" + meidstr + ")" |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | func (t *Transaction) SendEvent(event interface{}, waittime time.Duration) (bool, bool) { |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 64 | if waittime > 0 { |
| 65 | select { |
| 66 | case t.EventChan <- event: |
| 67 | return true, false |
| 68 | case <-time.After(waittime): |
| 69 | return false, true |
| 70 | } |
| 71 | return false, false |
| 72 | } |
| 73 | t.EventChan <- event |
| 74 | return true, false |
| 75 | } |
| 76 | |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 77 | func (t *Transaction) WaitEvent(waittime time.Duration) (interface{}, bool) { |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 78 | if waittime > 0 { |
| 79 | select { |
| 80 | case event := <-t.EventChan: |
| 81 | return event, false |
| 82 | case <-time.After(waittime): |
| 83 | return nil, true |
| 84 | } |
| 85 | } |
| 86 | event := <-t.EventChan |
| 87 | return event, false |
| 88 | } |
| 89 | |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 90 | func (t *Transaction) GetMtype() int { |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 91 | t.mutex.Lock() |
| 92 | defer t.mutex.Unlock() |
| 93 | return t.Mtype |
| 94 | } |
| 95 | |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 96 | func (t *Transaction) GetMeid() *xapp.RMRMeid { |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 97 | t.mutex.Lock() |
| 98 | defer t.mutex.Unlock() |
| 99 | if t.Meid != nil { |
| 100 | return t.Meid |
| 101 | } |
| 102 | return nil |
| 103 | } |
| 104 | |
Anssi Mannila | 47518ae | 2021-04-16 09:27:07 +0300 | [diff] [blame] | 105 | /* // This function is not used. Commented out to get better test coverage result |
Juha Hyttinen | a9bf76c | 2020-02-05 14:06:57 +0200 | [diff] [blame] | 106 | func (t *Transaction) GetPayload() *e2ap.PackedData { |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 107 | t.mutex.Lock() |
| 108 | defer t.mutex.Unlock() |
| 109 | return t.Payload |
| 110 | } |
Anssi Mannila | 47518ae | 2021-04-16 09:27:07 +0300 | [diff] [blame] | 111 | */ |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 112 | //----------------------------------------------------------------------------- |
| 113 | // |
| 114 | //----------------------------------------------------------------------------- |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 115 | type TransactionSubs struct { |
| 116 | Transaction // |
| 117 | } |
| 118 | |
| 119 | func (t *TransactionSubs) String() string { |
| 120 | return "transsubs(" + t.Transaction.String() + ")" |
| 121 | } |
| 122 | |
| 123 | func (t *TransactionSubs) Release() { |
| 124 | t.mutex.Lock() |
| 125 | xapp.Logger.Debug("RELEASE %s", t.String()) |
| 126 | t.tracker = nil |
| 127 | t.mutex.Unlock() |
| 128 | } |
| 129 | |
| 130 | //----------------------------------------------------------------------------- |
| 131 | // |
| 132 | //----------------------------------------------------------------------------- |
Juha Hyttinen | 0388dd9 | 2020-01-09 14:14:16 +0200 | [diff] [blame] | 133 | type TransactionXappKey struct { |
Konstantinos Archangelof | e93b00f | 2021-06-03 10:00:19 +0000 | [diff] [blame] | 134 | InstanceID uint32 |
Juha Hyttinen | 9dc5adc | 2020-08-13 10:02:40 +0300 | [diff] [blame] | 135 | xapp.RmrEndpoint |
Juha Hyttinen | 0388dd9 | 2020-01-09 14:14:16 +0200 | [diff] [blame] | 136 | Xid string // xapp xid in req |
| 137 | } |
| 138 | |
| 139 | func (key *TransactionXappKey) String() string { |
Juha Hyttinen | 31797b4 | 2020-01-16 14:05:01 +0200 | [diff] [blame] | 140 | return "transkey(" + key.RmrEndpoint.String() + "/" + key.Xid + ")" |
Juha Hyttinen | 0388dd9 | 2020-01-09 14:14:16 +0200 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | //----------------------------------------------------------------------------- |
| 144 | // |
| 145 | //----------------------------------------------------------------------------- |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 146 | type TransactionXapp struct { |
Juha Hyttinen | 47942b4 | 2020-02-27 10:41:43 +0200 | [diff] [blame] | 147 | Transaction |
Anssi Mannila | 4c626a2 | 2021-02-11 12:50:48 +0200 | [diff] [blame] | 148 | XappKey *TransactionXappKey |
| 149 | RequestId e2ap.RequestId |
Juha Hyttinen | 0388dd9 | 2020-01-09 14:14:16 +0200 | [diff] [blame] | 150 | } |
| 151 | |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 152 | func (t *TransactionXapp) String() string { |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 153 | var transkey string = "transkey(N/A)" |
| 154 | if t.XappKey != nil { |
| 155 | transkey = t.XappKey.String() |
Juha Hyttinen | 0388dd9 | 2020-01-09 14:14:16 +0200 | [diff] [blame] | 156 | } |
Anssi Mannila | 4c626a2 | 2021-02-11 12:50:48 +0200 | [diff] [blame] | 157 | return "transxapp(" + t.Transaction.String() + "/" + transkey + "/" + strconv.FormatUint(uint64(t.RequestId.InstanceId), 10) + ")" |
Juha Hyttinen | 31797b4 | 2020-01-16 14:05:01 +0200 | [diff] [blame] | 158 | } |
| 159 | |
Juha Hyttinen | 9dc5adc | 2020-08-13 10:02:40 +0300 | [diff] [blame] | 160 | func (t *TransactionXapp) GetEndpoint() *xapp.RmrEndpoint { |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 161 | t.mutex.Lock() |
| 162 | defer t.mutex.Unlock() |
| 163 | if t.XappKey != nil { |
| 164 | return &t.XappKey.RmrEndpoint |
| 165 | } |
| 166 | return nil |
| 167 | } |
| 168 | |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 169 | func (t *TransactionXapp) GetXid() string { |
Juha Hyttinen | e406a34 | 2020-01-13 13:02:26 +0200 | [diff] [blame] | 170 | t.mutex.Lock() |
| 171 | defer t.mutex.Unlock() |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 172 | if t.XappKey != nil { |
| 173 | return t.XappKey.Xid |
Juha Hyttinen | 86a4620 | 2020-01-14 12:49:09 +0200 | [diff] [blame] | 174 | } |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 175 | return "" |
Juha Hyttinen | 86a4620 | 2020-01-14 12:49:09 +0200 | [diff] [blame] | 176 | } |
| 177 | |
Anssi Mannila | 47518ae | 2021-04-16 09:27:07 +0300 | [diff] [blame] | 178 | /* // This function is not used. Commented out to get better test coverage result |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 179 | func (t *TransactionXapp) GetSrc() string { |
Juha Hyttinen | e406a34 | 2020-01-13 13:02:26 +0200 | [diff] [blame] | 180 | t.mutex.Lock() |
| 181 | defer t.mutex.Unlock() |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 182 | if t.XappKey != nil { |
| 183 | return t.XappKey.RmrEndpoint.String() |
Juha Hyttinen | 0388dd9 | 2020-01-09 14:14:16 +0200 | [diff] [blame] | 184 | } |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 185 | return "" |
Juha Hyttinen | 0388dd9 | 2020-01-09 14:14:16 +0200 | [diff] [blame] | 186 | } |
Anssi Mannila | 47518ae | 2021-04-16 09:27:07 +0300 | [diff] [blame] | 187 | */ |
Juha Hyttinen | 47942b4 | 2020-02-27 10:41:43 +0200 | [diff] [blame] | 188 | func (t *TransactionXapp) GetSubId() uint32 { |
| 189 | t.mutex.Lock() |
| 190 | defer t.mutex.Unlock() |
Anssi Mannila | 4c626a2 | 2021-02-11 12:50:48 +0200 | [diff] [blame] | 191 | return t.RequestId.InstanceId |
Juha Hyttinen | 47942b4 | 2020-02-27 10:41:43 +0200 | [diff] [blame] | 192 | } |
| 193 | |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 194 | func (t *TransactionXapp) Release() { |
Juha Hyttinen | 0388dd9 | 2020-01-09 14:14:16 +0200 | [diff] [blame] | 195 | t.mutex.Lock() |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 196 | xapp.Logger.Debug("RELEASE %s", t.String()) |
Juha Hyttinen | 31797b4 | 2020-01-16 14:05:01 +0200 | [diff] [blame] | 197 | tracker := t.tracker |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 198 | xappkey := t.XappKey |
Juha Hyttinen | 0388dd9 | 2020-01-09 14:14:16 +0200 | [diff] [blame] | 199 | t.tracker = nil |
Juha Hyttinen | 31797b4 | 2020-01-16 14:05:01 +0200 | [diff] [blame] | 200 | t.mutex.Unlock() |
| 201 | |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 202 | if tracker != nil && xappkey != nil { |
Anssi Mannila | 9c4697f | 2022-07-04 15:51:38 +0300 | [diff] [blame] | 203 | _, err := tracker.UnTrackTransaction(*xappkey) |
| 204 | if err != nil { |
| 205 | xapp.Logger.Error("tracker.UnTrackTransaction() failed:%s", err.Error()) |
| 206 | } |
Juha Hyttinen | 31797b4 | 2020-01-16 14:05:01 +0200 | [diff] [blame] | 207 | } |
Juha Hyttinen | 0388dd9 | 2020-01-09 14:14:16 +0200 | [diff] [blame] | 208 | } |