Updated xapp-frame to 0.4.18. Updated rmr to 4.1.2.
[ric-plt/submgr.git] / pkg / control / tracker.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 control
21
22 import (
23         "fmt"
24         "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp"
25         "sync"
26 )
27
28 //-----------------------------------------------------------------------------
29 //
30 //-----------------------------------------------------------------------------
31 type Tracker struct {
32         mutex                sync.Mutex
33         transactionXappTable map[TransactionXappKey]*TransactionXapp
34         transSeq             uint64
35 }
36
37 func (t *Tracker) Init() {
38         t.transactionXappTable = make(map[TransactionXappKey]*TransactionXapp)
39 }
40
41 func (t *Tracker) initTransaction(transBase *Transaction) {
42         t.mutex.Lock()
43         defer t.mutex.Unlock()
44         transBase.EventChan = make(chan interface{})
45         transBase.tracker = t
46         transBase.Seq = t.transSeq
47         t.transSeq++
48 }
49
50 func (t *Tracker) NewSubsTransaction(subs *Subscription) *TransactionSubs {
51         trans := &TransactionSubs{}
52         trans.Meid = subs.GetMeid()
53         t.initTransaction(&trans.Transaction)
54         xapp.Logger.Debug("CREATE %s", trans.String())
55         return trans
56 }
57
58 func (t *Tracker) NewXappTransaction(
59         endpoint *xapp.RmrEndpoint,
60         xid string,
61         subid uint32,
62         meid *xapp.RMRMeid) *TransactionXapp {
63
64         trans := &TransactionXapp{}
65         trans.XappKey = &TransactionXappKey{*endpoint, xid}
66         trans.Meid = meid
67         trans.SubId = subid
68         t.initTransaction(&trans.Transaction)
69         xapp.Logger.Debug("CREATE %s", trans.String())
70         return trans
71 }
72
73 func (t *Tracker) Track(trans *TransactionXapp) error {
74
75         if trans.GetEndpoint() == nil {
76                 err := fmt.Errorf("Tracker: No valid endpoint given in %s", trans.String())
77                 return err
78         }
79
80         t.mutex.Lock()
81         defer t.mutex.Unlock()
82
83         theKey := *trans.XappKey
84
85         if othtrans, ok := t.transactionXappTable[theKey]; ok {
86                 err := fmt.Errorf("Tracker: %s is ongoing, not tracking %s", othtrans, trans)
87                 return err
88         }
89
90         trans.tracker = t
91         t.transactionXappTable[theKey] = trans
92         xapp.Logger.Debug("Tracker: Append %s", trans.String())
93         //xapp.Logger.Debug("Tracker: transtable=%v", t.transactionXappTable)
94         return nil
95 }
96
97 func (t *Tracker) UnTrackTransaction(xappKey TransactionXappKey) (*TransactionXapp, error) {
98         t.mutex.Lock()
99         defer t.mutex.Unlock()
100         if trans, ok2 := t.transactionXappTable[xappKey]; ok2 {
101                 xapp.Logger.Debug("Tracker: Remove %s", trans.String())
102                 delete(t.transactionXappTable, xappKey)
103                 //xapp.Logger.Debug("Tracker: transtable=%v", t.transactionXappTable)
104                 return trans, nil
105         }
106         return nil, fmt.Errorf("Tracker: No record %s", xappKey)
107 }