kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +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 ( |
| 23 | "fmt" |
Juha Hyttinen | 86a4620 | 2020-01-14 12:49:09 +0200 | [diff] [blame] | 24 | "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp" |
Anssi Mannila | 2e99e2f | 2019-12-05 13:57:06 +0200 | [diff] [blame] | 25 | "sync" |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 26 | ) |
| 27 | |
Juha Hyttinen | 0d064ec | 2020-01-09 09:08:53 +0200 | [diff] [blame] | 28 | //----------------------------------------------------------------------------- |
| 29 | // |
| 30 | //----------------------------------------------------------------------------- |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 31 | type Tracker struct { |
Juha Hyttinen | 379ff08 | 2019-12-30 15:49:41 +0200 | [diff] [blame] | 32 | mutex sync.Mutex |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame^] | 33 | transactionXappTable map[TransactionXappKey]*TransactionXapp |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 34 | transSeq uint64 |
Balint Uveges | e9608cd | 2019-09-20 18:00:32 +0000 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | func (t *Tracker) Init() { |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame^] | 38 | t.transactionXappTable = make(map[TransactionXappKey]*TransactionXapp) |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 39 | } |
| 40 | |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame^] | 41 | func (t *Tracker) initTransaction(transBase *Transaction) { |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 42 | t.mutex.Lock() |
| 43 | defer t.mutex.Unlock() |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame^] | 44 | transBase.EventChan = make(chan interface{}) |
| 45 | transBase.tracker = t |
| 46 | transBase.Seq = t.transSeq |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 47 | t.transSeq++ |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame^] | 48 | } |
| 49 | |
| 50 | func (t *Tracker) NewSubsTransaction(subs *Subscription) *TransactionSubs { |
| 51 | trans := &TransactionSubs{} |
| 52 | trans.Meid = subs.GetMeid() |
| 53 | rid := subs.GetReqId() |
| 54 | if rid != nil { |
| 55 | trans.ReqId = *rid |
| 56 | } |
| 57 | t.initTransaction(&trans.Transaction) |
| 58 | xapp.Logger.Debug("CREATE %s", trans.String()) |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 59 | return trans |
| 60 | } |
| 61 | |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame^] | 62 | func (t *Tracker) NewXappTransaction( |
Juha Hyttinen | 86a4620 | 2020-01-14 12:49:09 +0200 | [diff] [blame] | 63 | endpoint *RmrEndpoint, |
Juha Hyttinen | 86a4620 | 2020-01-14 12:49:09 +0200 | [diff] [blame] | 64 | xid string, |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame^] | 65 | reqId *RequestId, |
| 66 | meid *xapp.RMRMeid) *TransactionXapp { |
Juha Hyttinen | 86a4620 | 2020-01-14 12:49:09 +0200 | [diff] [blame] | 67 | |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame^] | 68 | trans := &TransactionXapp{} |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 69 | trans.XappKey = &TransactionXappKey{*endpoint, xid} |
| 70 | trans.Meid = meid |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame^] | 71 | if reqId != nil { |
| 72 | trans.ReqId = *reqId |
| 73 | } |
| 74 | t.initTransaction(&trans.Transaction) |
| 75 | xapp.Logger.Debug("CREATE %s", trans.String()) |
| 76 | return trans |
| 77 | } |
| 78 | |
| 79 | func (t *Tracker) Track(trans *TransactionXapp) error { |
| 80 | |
| 81 | if trans.GetEndpoint() == nil { |
| 82 | err := fmt.Errorf("Tracker: No valid endpoint given in %s", trans.String()) |
| 83 | return err |
| 84 | } |
Juha Hyttinen | 0d064ec | 2020-01-09 09:08:53 +0200 | [diff] [blame] | 85 | |
Juha Hyttinen | 1a50344 | 2019-12-10 12:14:24 +0200 | [diff] [blame] | 86 | t.mutex.Lock() |
| 87 | defer t.mutex.Unlock() |
Juha Hyttinen | 0d064ec | 2020-01-09 09:08:53 +0200 | [diff] [blame] | 88 | |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame^] | 89 | theKey := *trans.XappKey |
| 90 | |
| 91 | if othtrans, ok := t.transactionXappTable[theKey]; ok { |
| 92 | err := fmt.Errorf("Tracker: %s is ongoing, not tracking %s", othtrans, trans) |
| 93 | return err |
Juha Hyttinen | 379ff08 | 2019-12-30 15:49:41 +0200 | [diff] [blame] | 94 | } |
Juha Hyttinen | 0d064ec | 2020-01-09 09:08:53 +0200 | [diff] [blame] | 95 | |
Juha Hyttinen | 0d064ec | 2020-01-09 09:08:53 +0200 | [diff] [blame] | 96 | trans.tracker = t |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame^] | 97 | t.transactionXappTable[theKey] = trans |
| 98 | xapp.Logger.Debug("Tracker: Append %s", trans.String()) |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 99 | //xapp.Logger.Debug("Tracker: transtable=%v", t.transactionXappTable) |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame^] | 100 | return nil |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 101 | } |
| 102 | |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame^] | 103 | func (t *Tracker) UnTrackTransaction(xappKey TransactionXappKey) (*TransactionXapp, error) { |
Juha Hyttinen | 1a50344 | 2019-12-10 12:14:24 +0200 | [diff] [blame] | 104 | t.mutex.Lock() |
| 105 | defer t.mutex.Unlock() |
Juha Hyttinen | 0d064ec | 2020-01-09 09:08:53 +0200 | [diff] [blame] | 106 | if trans, ok2 := t.transactionXappTable[xappKey]; ok2 { |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame^] | 107 | xapp.Logger.Debug("Tracker: Remove %s", trans.String()) |
Juha Hyttinen | 0d064ec | 2020-01-09 09:08:53 +0200 | [diff] [blame] | 108 | delete(t.transactionXappTable, xappKey) |
Juha Hyttinen | 422d018 | 2020-01-17 13:37:05 +0200 | [diff] [blame] | 109 | //xapp.Logger.Debug("Tracker: transtable=%v", t.transactionXappTable) |
Juha Hyttinen | 379ff08 | 2019-12-30 15:49:41 +0200 | [diff] [blame] | 110 | return trans, nil |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 111 | } |
Juha Hyttinen | 31797b4 | 2020-01-16 14:05:01 +0200 | [diff] [blame] | 112 | return nil, fmt.Errorf("Tracker: No record %s", xappKey) |
Anssi Mannila | 8046c70 | 2020-01-02 13:39:05 +0200 | [diff] [blame] | 113 | } |