blob: e08f8dbc91110b7c24dbddafbc1b063db08763db [file] [log] [blame]
kalnagy93cc3e22019-09-19 11:29:29 +02001/*
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
20package control
21
22import (
23 "fmt"
kalnagy93cc3e22019-09-19 11:29:29 +020024)
25
26/*
27Implements a record of ongoing transactions and helper functions to CRUD the records.
28*/
29type Tracker struct {
Balint Uvegese9608cd2019-09-20 18:00:32 +000030 transaction_table map[Transaction_key]Transaction
31}
32
33func (t *Tracker) Init() {
34 t.transaction_table = make(map[Transaction_key]Transaction)
kalnagy93cc3e22019-09-19 11:29:29 +020035}
36
37/*
38Checks if a tranascation with similar type has been ongoing. If not then creates one.
39Returns error if there is similar transatcion ongoing.
40*/
Balint Uvegese9608cd2019-09-20 18:00:32 +000041func (t *Tracker) Track_transaction(key Transaction_key, xact Transaction) error{
kalnagy93cc3e22019-09-19 11:29:29 +020042 if _, ok := t.transaction_table[key]; ok {
43 // TODO: Implement merge related check here. If the key is same but the value is different.
44 err := fmt.Errorf("Transaction tracker: Similar transaction with sub id %d and type %s is ongoing", key.SubID, key.trans_type )
45 return err
46 }
47 t.transaction_table[key] = xact
48 return nil
49}
50
51/*
52Retreives the transaction table entry for the given request.
53Returns error in case the transaction cannot be found.
54*/
kalnagye0018682019-09-26 16:28:25 +020055func (t *Tracker) Update_transaction(SubID uint16, trans_type Action, xact Transaction) error{
56 key := Transaction_key{SubID, trans_type}
57 if _, ok := t.transaction_table[key]; ok {
58 // TODO: Implement merge related check here. If the key is same but the value is different.
59 err := fmt.Errorf("Transaction tracker: Similar transaction with sub id %d and type %s is ongoing", key.SubID, key.trans_type )
60 return err
61 }
62 t.transaction_table[key] = xact
63 return nil
64}
65
66/*
67Retreives the transaction table entry for the given request.
68Returns error in case the transaction cannot be found.
69*/
Balint Uvegese9608cd2019-09-20 18:00:32 +000070func (t *Tracker) Retrive_transaction(subID uint16, act Action) (Transaction, error){
kalnagy93cc3e22019-09-19 11:29:29 +020071 key := Transaction_key{subID, act}
Balint Uvegese9608cd2019-09-20 18:00:32 +000072 var xact Transaction
kalnagy93cc3e22019-09-19 11:29:29 +020073 if xact, ok := t.transaction_table[key]; ok {
74 return xact, nil
75 }
76 err := fmt.Errorf("Tranaction record for Subscription ID %d and action %s does not exist", subID, act)
Balint Uvegese9608cd2019-09-20 18:00:32 +000077 return xact, err
kalnagy93cc3e22019-09-19 11:29:29 +020078}
79
80/*
81Deletes the transaction table entry for the given request and returns the deleted xapp's address and port for reference.
82Returns error in case the transaction cannot be found.
83*/
kalnagye0018682019-09-26 16:28:25 +020084func (t *Tracker) complete_transaction(subID uint16, act Action) (Transaction, error){
kalnagy93cc3e22019-09-19 11:29:29 +020085 key := Transaction_key{subID, act}
kalnagye0018682019-09-26 16:28:25 +020086 var empty_transaction Transaction
kalnagy93cc3e22019-09-19 11:29:29 +020087 if xact, ok := t.transaction_table[key]; ok {
88 delete(t.transaction_table, key)
kalnagye0018682019-09-26 16:28:25 +020089 return xact, nil
kalnagy93cc3e22019-09-19 11:29:29 +020090 }
91 err := fmt.Errorf("Tranaction record for Subscription ID %d and action %s does not exist", subID, act)
kalnagye0018682019-09-26 16:28:25 +020092 return empty_transaction, err
kalnagy93cc3e22019-09-19 11:29:29 +020093}