X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fcontrol%2Ftracker.go;h=20af9f04722b681350570793458c51ae28d9065c;hb=31797b49985822f1d402501f16ab2794838bebba;hp=e08f8dbc91110b7c24dbddafbc1b063db08763db;hpb=e00186861608731e2390055a0e1b1cf455670508;p=ric-plt%2Fsubmgr.git diff --git a/pkg/control/tracker.go b/pkg/control/tracker.go index e08f8db..20af9f0 100644 --- a/pkg/control/tracker.go +++ b/pkg/control/tracker.go @@ -21,73 +21,68 @@ package control import ( "fmt" + "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp" + "sync" ) -/* -Implements a record of ongoing transactions and helper functions to CRUD the records. -*/ +//----------------------------------------------------------------------------- +// +//----------------------------------------------------------------------------- type Tracker struct { - transaction_table map[Transaction_key]Transaction + mutex sync.Mutex + transactionXappTable map[TransactionXappKey]*Transaction } func (t *Tracker) Init() { - t.transaction_table = make(map[Transaction_key]Transaction) + t.transactionXappTable = make(map[TransactionXappKey]*Transaction) } -/* -Checks if a tranascation with similar type has been ongoing. If not then creates one. -Returns error if there is similar transatcion ongoing. -*/ -func (t *Tracker) Track_transaction(key Transaction_key, xact Transaction) error{ - if _, ok := t.transaction_table[key]; ok { - // TODO: Implement merge related check here. If the key is same but the value is different. - err := fmt.Errorf("Transaction tracker: Similar transaction with sub id %d and type %s is ongoing", key.SubID, key.trans_type ) - return err +func (t *Tracker) TrackTransaction( + endpoint *RmrEndpoint, + xid string, + meid *xapp.RMRMeid, + respReceived bool, + forwardRespToXapp bool) (*Transaction, error) { + + if endpoint == nil { + err := fmt.Errorf("Tracker: No valid endpoint given") + return nil, err } - t.transaction_table[key] = xact - return nil -} -/* -Retreives the transaction table entry for the given request. -Returns error in case the transaction cannot be found. -*/ -func (t *Tracker) Update_transaction(SubID uint16, trans_type Action, xact Transaction) error{ - key := Transaction_key{SubID, trans_type} - if _, ok := t.transaction_table[key]; ok { - // TODO: Implement merge related check here. If the key is same but the value is different. - err := fmt.Errorf("Transaction tracker: Similar transaction with sub id %d and type %s is ongoing", key.SubID, key.trans_type ) - return err + trans := &Transaction{ + tracker: nil, + Subs: nil, + RmrEndpoint: *endpoint, + Xid: xid, + Meid: meid, + RespReceived: respReceived, + ForwardRespToXapp: forwardRespToXapp, } - t.transaction_table[key] = xact - return nil -} -/* -Retreives the transaction table entry for the given request. -Returns error in case the transaction cannot be found. -*/ -func (t *Tracker) Retrive_transaction(subID uint16, act Action) (Transaction, error){ - key := Transaction_key{subID, act} - var xact Transaction - if xact, ok := t.transaction_table[key]; ok { - return xact, nil + t.mutex.Lock() + defer t.mutex.Unlock() + + xappkey := TransactionXappKey{*endpoint, xid} + if othtrans, ok := t.transactionXappTable[xappkey]; ok { + err := fmt.Errorf("Tracker: %s is ongoing, %s not created ", othtrans, trans) + return nil, err } - err := fmt.Errorf("Tranaction record for Subscription ID %d and action %s does not exist", subID, act) - return xact, err + + trans.tracker = t + t.transactionXappTable[xappkey] = trans + xapp.Logger.Info("Tracker: Create %s", trans.String()) + xapp.Logger.Debug("Tracker: transtable=%v", t.transactionXappTable) + return trans, nil } -/* -Deletes the transaction table entry for the given request and returns the deleted xapp's address and port for reference. -Returns error in case the transaction cannot be found. -*/ -func (t *Tracker) complete_transaction(subID uint16, act Action) (Transaction, error){ - key := Transaction_key{subID, act} - var empty_transaction Transaction - if xact, ok := t.transaction_table[key]; ok { - delete(t.transaction_table, key) - return xact, nil +func (t *Tracker) UnTrackTransaction(xappKey TransactionXappKey) (*Transaction, error) { + t.mutex.Lock() + defer t.mutex.Unlock() + if trans, ok2 := t.transactionXappTable[xappKey]; ok2 { + xapp.Logger.Info("Tracker: Delete %s", trans.String()) + delete(t.transactionXappTable, xappKey) + xapp.Logger.Debug("Tracker: transtable=%v", t.transactionXappTable) + return trans, nil } - err := fmt.Errorf("Tranaction record for Subscription ID %d and action %s does not exist", subID, act) - return empty_transaction, err + return nil, fmt.Errorf("Tracker: No record %s", xappKey) }