-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathbp_manager.go
109 lines (94 loc) · 2.4 KB
/
bp_manager.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// Copyright 2019 free5GC.org
//
// SPDX-License-Identifier: Apache-2.0
package context
import (
"reflect"
)
type BPManager struct {
// Need these variable conducting Add additional PSA (TS23.502 4.3.5.4)
// There value will change from time to time
ULCL *UPF
ActivatingPath *DataPath
UpdatedBranchingPoint map[*UPF]int
PendingUPF PendingUPF
ActivatedPaths []*DataPath
BPStatus BPStatus
AddingPSAState AddingPSAState
}
type BPStatus int
const (
UnInitialized BPStatus = iota
AddingPSA
AddPSASuccess
InitializedSuccess
InitializedFail
)
type AddingPSAState int
const (
ActivatingDataPath AddingPSAState = iota
EstablishingNewPSA
EstablishingULCL
UpdatingPSA2DownLink
UpdatingRANAndIUPFUpLink
Finished
)
type PendingUPF map[string]bool
func NewBPManager(supi string) (bpManager *BPManager) {
bpManager = &BPManager{
BPStatus: UnInitialized,
AddingPSAState: ActivatingDataPath,
ActivatedPaths: make([]*DataPath, 0),
UpdatedBranchingPoint: make(map[*UPF]int),
PendingUPF: make(PendingUPF),
}
return
}
func (bpMGR *BPManager) SelectPSA2(smContext *SMContext) {
hasSelectPSA2 := false
bpMGR.ActivatedPaths = []*DataPath{}
for _, dataPath := range smContext.Tunnel.DataPathPool {
if dataPath.Activated {
bpMGR.ActivatedPaths = append(bpMGR.ActivatedPaths, dataPath)
} else {
if !hasSelectPSA2 {
bpMGR.ActivatingPath = dataPath
hasSelectPSA2 = true
}
}
}
}
func (bpMGR *BPManager) FindULCL(smContext *SMContext) error {
bpMGR.UpdatedBranchingPoint = make(map[*UPF]int)
activatingPath := bpMGR.ActivatingPath
for _, psa1Path := range bpMGR.ActivatedPaths {
depth := 0
psa1CurDPNode := psa1Path.FirstDPNode
for psa2CurDPNode := activatingPath.FirstDPNode; psa2CurDPNode != nil; psa2CurDPNode = psa2CurDPNode.Next() {
if reflect.DeepEqual(psa2CurDPNode.UPF.NodeID, psa1CurDPNode.UPF.NodeID) {
psa1CurDPNode = psa1CurDPNode.Next()
depth++
if _, exist := bpMGR.UpdatedBranchingPoint[psa2CurDPNode.UPF]; !exist {
bpMGR.UpdatedBranchingPoint[psa2CurDPNode.UPF] = depth
}
} else {
break
}
}
}
maxDepth := 0
for upf, depth := range bpMGR.UpdatedBranchingPoint {
if depth > maxDepth {
bpMGR.ULCL = upf
maxDepth = depth
}
}
return nil
}
func (pendingUPF PendingUPF) IsEmpty() bool {
if len(pendingUPF) == 0 {
return true
} else {
return false
}
}