-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathtraffic_control_data.go
50 lines (38 loc) · 1.47 KB
/
traffic_control_data.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
// Copyright 2019 free5GC.org
//
// SPDX-License-Identifier: Apache-2.0
package context
import (
"github.com/omec-project/openapi/models"
)
// TrafficControlData - Traffic control data defines how traffic data flows
// associated with a rule are treated (e.g. blocked, redirected).
type TrafficControlData struct {
// maybe include attribute
UpPathChgEvent *models.UpPathChgEvent
FlowStatus models.FlowStatus
// referenced dataType
refedPCCRule map[string]string
TrafficControlID string // mandatory attribute
RouteToLocs []models.RouteToLocation // not mandatory attribute
}
// NewTrafficControlDataFromModel - create the traffic control data from OpenAPI model
func NewTrafficControlDataFromModel(model *models.TrafficControlData) *TrafficControlData {
trafficControlData := new(TrafficControlData)
trafficControlData.TrafficControlID = model.TcId
trafficControlData.FlowStatus = model.FlowStatus
trafficControlData.RouteToLocs = model.RouteToLocs
trafficControlData.UpPathChgEvent = model.UpPathChgEvent
trafficControlData.refedPCCRule = make(map[string]string)
return trafficControlData
}
// RefedPCCRules - returns the PCCRules that reference this tcData
func (tc *TrafficControlData) RefedPCCRules() map[string]string {
return tc.refedPCCRule
}
func (tc *TrafficControlData) AddRefedPCCRules(PCCref string) {
tc.refedPCCRule[PCCref] = PCCref
}
func (tc *TrafficControlData) DeleteRefedPCCRules(PCCref string) {
delete(tc.refedPCCRule, PCCref)
}