Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 1 | /* |
Joey Armstrong | a6af152 | 2023-01-17 16:06:16 -0500 | [diff] [blame] | 2 | * Copyright 2020-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at |
| 6 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | * Unless required by applicable law or agreed to in writing, software |
| 8 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 9 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 10 | * See the License for the specific language governing permissions and |
| 11 | * limitations under the License. |
| 12 | */ |
| 13 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 14 | // Package core provides the utility for olt devices, flows, groups and statistics |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 15 | package core |
| 16 | |
| 17 | import ( |
| 18 | "context" |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 19 | "sync" |
| 20 | |
| 21 | "github.com/opencord/voltha-lib-go/v7/pkg/flows" |
| 22 | "github.com/opencord/voltha-lib-go/v7/pkg/log" |
Mahir Gunyel | 85f61c1 | 2021-10-06 11:53:45 -0700 | [diff] [blame] | 23 | plt "github.com/opencord/voltha-lib-go/v7/pkg/platform" |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 24 | "github.com/opencord/voltha-openolt-adapter/internal/pkg/olterrors" |
| 25 | rsrcMgr "github.com/opencord/voltha-openolt-adapter/internal/pkg/resourcemanager" |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 26 | ofp "github.com/opencord/voltha-protos/v5/go/openflow_13" |
| 27 | openoltpb2 "github.com/opencord/voltha-protos/v5/go/openolt" |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 28 | "google.golang.org/grpc/codes" |
| 29 | "google.golang.org/grpc/status" |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 30 | ) |
| 31 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 32 | // QueueInfoBrief has information about gemPortID and service priority associated with Mcast group |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 33 | type QueueInfoBrief struct { |
| 34 | gemPortID uint32 |
| 35 | servicePriority uint32 |
| 36 | } |
| 37 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 38 | // OpenOltGroupMgr creates the Structure of OpenOltGroupMgr obj |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 39 | type OpenOltGroupMgr struct { |
| 40 | deviceHandler *DeviceHandler |
| 41 | resourceMgr *rsrcMgr.OpenOltResourceMgr |
| 42 | interfaceToMcastQueueMap map[uint32]*QueueInfoBrief /*pon interface -> multicast queue map. Required to assign GEM to a bucket during group population*/ |
| 43 | interfaceToMcastQueueMapLock sync.RWMutex |
| 44 | } |
| 45 | |
| 46 | ////////////////////////////////////////////// |
| 47 | // EXPORTED FUNCTIONS // |
| 48 | ////////////////////////////////////////////// |
| 49 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 50 | // NewGroupManager creates OpenOltGroupMgr object and initializes the parameters |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 51 | func NewGroupManager(ctx context.Context, dh *DeviceHandler, rMgr *rsrcMgr.OpenOltResourceMgr) *OpenOltGroupMgr { |
Girish Gowdra | 4736e5c | 2021-08-25 15:19:10 -0700 | [diff] [blame] | 52 | logger.Infow(ctx, "initializing-group-manager", log.Fields{"device-id": dh.device.Id}) |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 53 | var grpMgr OpenOltGroupMgr |
| 54 | grpMgr.deviceHandler = dh |
| 55 | grpMgr.resourceMgr = rMgr |
| 56 | grpMgr.interfaceToMcastQueueMap = make(map[uint32]*QueueInfoBrief) |
| 57 | grpMgr.interfaceToMcastQueueMapLock = sync.RWMutex{} |
| 58 | logger.Info(ctx, "initialization-of-group-manager-success") |
| 59 | return &grpMgr |
| 60 | } |
| 61 | |
| 62 | // AddGroup add or update the group |
| 63 | func (g *OpenOltGroupMgr) AddGroup(ctx context.Context, group *ofp.OfpGroupEntry) error { |
| 64 | logger.Infow(ctx, "add-group", log.Fields{"group": group}) |
| 65 | if group == nil { |
| 66 | return olterrors.NewErrInvalidValue(log.Fields{"group": group}, nil) |
| 67 | } |
| 68 | groupToOlt := openoltpb2.Group{ |
| 69 | GroupId: group.Desc.GroupId, |
| 70 | Command: openoltpb2.Group_SET_MEMBERS, |
| 71 | Action: g.buildGroupAction(), |
| 72 | } |
| 73 | logger.Debugw(ctx, "sending-group-to-device", log.Fields{"groupToOlt": groupToOlt}) |
| 74 | _, err := g.deviceHandler.Client.PerformGroupOperation(ctx, &groupToOlt) |
| 75 | if err != nil { |
| 76 | return olterrors.NewErrAdapter("add-group-operation-failed", log.Fields{"groupToOlt": groupToOlt}, err) |
| 77 | } |
| 78 | // group members not created yet. So let's store the group |
| 79 | if err := g.resourceMgr.AddFlowGroupToKVStore(ctx, group, true); err != nil { |
Girish Gowdra | a09aeab | 2020-09-14 16:30:52 -0700 | [diff] [blame] | 80 | return olterrors.NewErrPersistence("add", "flow-group", uint64(group.Desc.GroupId), log.Fields{"group": group}, err) |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 81 | } |
| 82 | logger.Infow(ctx, "add-group-operation-performed-on-the-device-successfully ", log.Fields{"groupToOlt": groupToOlt}) |
| 83 | return nil |
| 84 | } |
| 85 | |
| 86 | // DeleteGroup deletes a group from the device |
| 87 | func (g *OpenOltGroupMgr) DeleteGroup(ctx context.Context, group *ofp.OfpGroupEntry) error { |
| 88 | logger.Debugw(ctx, "delete-group", log.Fields{"group": group}) |
| 89 | if group == nil { |
| 90 | logger.Error(ctx, "unable-to-delete-group--invalid-argument--group-is-nil") |
| 91 | return olterrors.NewErrInvalidValue(log.Fields{"group": group}, nil) |
| 92 | } |
| 93 | groupToOlt := openoltpb2.Group{ |
| 94 | GroupId: group.Desc.GroupId, |
| 95 | } |
| 96 | logger.Debugw(ctx, "deleting-group-from-device", log.Fields{"groupToOlt": groupToOlt}) |
| 97 | _, err := g.deviceHandler.Client.DeleteGroup(ctx, &groupToOlt) |
| 98 | if err != nil { |
| 99 | logger.Errorw(ctx, "delete-group-failed-on-dev", log.Fields{"groupToOlt": groupToOlt, "err": err}) |
| 100 | return olterrors.NewErrAdapter("delete-group-operation-failed", log.Fields{"groupToOlt": groupToOlt}, err) |
| 101 | } |
| 102 | //remove group from the store |
| 103 | if err := g.resourceMgr.RemoveFlowGroupFromKVStore(ctx, group.Desc.GroupId, false); err != nil { |
Girish Gowdra | a09aeab | 2020-09-14 16:30:52 -0700 | [diff] [blame] | 104 | return olterrors.NewErrPersistence("delete", "flow-group", uint64(group.Desc.GroupId), log.Fields{"group": group}, err) |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 105 | } |
| 106 | logger.Debugw(ctx, "delete-group-operation-performed-on-the-device-successfully ", log.Fields{"groupToOlt": groupToOlt}) |
| 107 | return nil |
| 108 | } |
| 109 | |
| 110 | // ModifyGroup updates the group |
| 111 | func (g *OpenOltGroupMgr) ModifyGroup(ctx context.Context, group *ofp.OfpGroupEntry) error { |
| 112 | logger.Infow(ctx, "modify-group", log.Fields{"group": group}) |
| 113 | if group == nil || group.Desc == nil { |
| 114 | return olterrors.NewErrInvalidValue(log.Fields{"group": group}, nil) |
| 115 | } |
| 116 | newGroup := g.buildGroup(ctx, group.Desc.GroupId, group.Desc.Buckets) |
| 117 | //get existing members of the group |
| 118 | val, groupExists, err := g.getFlowGroupFromKVStore(ctx, group.Desc.GroupId, false) |
| 119 | if err != nil { |
| 120 | return olterrors.NewErrNotFound("flow-group-in-kv-store", log.Fields{"groupId": group.Desc.GroupId}, err) |
| 121 | } |
| 122 | var current *openoltpb2.Group // represents the group on the device |
| 123 | if groupExists { |
| 124 | // group already exists |
| 125 | current = g.buildGroup(ctx, group.Desc.GroupId, val.Desc.GetBuckets()) |
| 126 | logger.Debugw(ctx, "modify-group--group exists", |
| 127 | log.Fields{ |
| 128 | "group on the device": val, |
| 129 | "new": group}) |
| 130 | } else { |
| 131 | current = g.buildGroup(ctx, group.Desc.GroupId, nil) |
| 132 | } |
| 133 | logger.Debugw(ctx, "modify-group--comparing-current-and-new", |
| 134 | log.Fields{ |
| 135 | "group on the device": current, |
| 136 | "new": newGroup}) |
| 137 | // get members to be added |
| 138 | membersToBeAdded := g.findDiff(current, newGroup) |
| 139 | // get members to be removed |
| 140 | membersToBeRemoved := g.findDiff(newGroup, current) |
| 141 | logger.Infow(ctx, "modify-group--differences found", log.Fields{ |
| 142 | "membersToBeAdded": membersToBeAdded, |
| 143 | "membersToBeRemoved": membersToBeRemoved, |
| 144 | "groupId": group.Desc.GroupId}) |
| 145 | groupToOlt := openoltpb2.Group{ |
| 146 | GroupId: group.Desc.GroupId, |
| 147 | } |
| 148 | var errAdd, errRemoved error |
| 149 | if len(membersToBeAdded) > 0 { |
| 150 | groupToOlt.Command = openoltpb2.Group_ADD_MEMBERS |
| 151 | groupToOlt.Members = membersToBeAdded |
| 152 | //execute addMembers |
| 153 | errAdd = g.callGroupAddRemove(ctx, &groupToOlt) |
| 154 | } |
| 155 | if len(membersToBeRemoved) > 0 { |
| 156 | groupToOlt.Command = openoltpb2.Group_REMOVE_MEMBERS |
| 157 | groupToOlt.Members = membersToBeRemoved |
| 158 | //execute removeMembers |
| 159 | errRemoved = g.callGroupAddRemove(ctx, &groupToOlt) |
| 160 | } |
| 161 | //save the modified group |
| 162 | if errAdd == nil && errRemoved == nil { |
| 163 | if err := g.resourceMgr.AddFlowGroupToKVStore(ctx, group, false); err != nil { |
Girish Gowdra | a09aeab | 2020-09-14 16:30:52 -0700 | [diff] [blame] | 164 | return olterrors.NewErrPersistence("add", "flow-group", uint64(group.Desc.GroupId), log.Fields{"group": group}, err) |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 165 | } |
| 166 | logger.Infow(ctx, "modify-group-was-success--storing-group", |
| 167 | log.Fields{ |
| 168 | "group": group, |
| 169 | "existingGroup": current}) |
| 170 | } else { |
| 171 | logger.Warnw(ctx, "one-of-the-group-add/remove-operations-failed--cannot-save-group-modifications", |
| 172 | log.Fields{"group": group}) |
| 173 | if errAdd != nil { |
| 174 | return errAdd |
| 175 | } |
| 176 | return errRemoved |
| 177 | } |
| 178 | return nil |
| 179 | } |
| 180 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 181 | // LoadInterfaceToMulticastQueueMap reads multicast queues per interface from the KV store |
| 182 | // and put them into interfaceToMcastQueueMap. |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 183 | func (g *OpenOltGroupMgr) LoadInterfaceToMulticastQueueMap(ctx context.Context) { |
| 184 | storedMulticastQueueMap, err := g.resourceMgr.GetMcastQueuePerInterfaceMap(ctx) |
| 185 | if err != nil { |
| 186 | logger.Error(ctx, "failed-to-get-pon-interface-to-multicast-queue-map") |
| 187 | return |
| 188 | } |
| 189 | for intf, queueInfo := range storedMulticastQueueMap { |
| 190 | q := QueueInfoBrief{ |
| 191 | gemPortID: queueInfo[0], |
| 192 | servicePriority: queueInfo[1], |
| 193 | } |
| 194 | g.interfaceToMcastQueueMap[intf] = &q |
| 195 | } |
| 196 | } |
| 197 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 198 | // GetInterfaceToMcastQueueMap gets the mcast queue mapped to to the PON interface |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 199 | func (g *OpenOltGroupMgr) GetInterfaceToMcastQueueMap(intfID uint32) (*QueueInfoBrief, bool) { |
| 200 | g.interfaceToMcastQueueMapLock.RLock() |
| 201 | defer g.interfaceToMcastQueueMapLock.RUnlock() |
| 202 | val, present := g.interfaceToMcastQueueMap[intfID] |
| 203 | return val, present |
| 204 | } |
| 205 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 206 | // UpdateInterfaceToMcastQueueMap updates the mcast queue information mapped to a given PON interface |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 207 | func (g *OpenOltGroupMgr) UpdateInterfaceToMcastQueueMap(intfID uint32, val *QueueInfoBrief) { |
| 208 | g.interfaceToMcastQueueMapLock.Lock() |
| 209 | defer g.interfaceToMcastQueueMapLock.Unlock() |
| 210 | g.interfaceToMcastQueueMap[intfID] = val |
| 211 | } |
| 212 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 213 | // ////////////////////////////////////////////// |
| 214 | // |
| 215 | // INTERNAL or UNEXPORTED FUNCTIONS // |
| 216 | // |
| 217 | // ////////////////////////////////////////////// |
| 218 | // getFlowGroupFromKVStore fetches and returns flow group from the KV store. Returns (nil, false, error) if any problem occurs during |
| 219 | // fetching the data. Returns (group, true, nil) if the group is fetched and returned successfully. |
| 220 | // Returns (nil, false, nil) if the group does not exists in the KV store. |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 221 | func (g *OpenOltGroupMgr) getFlowGroupFromKVStore(ctx context.Context, groupID uint32, cached bool) (*ofp.OfpGroupEntry, bool, error) { |
| 222 | exists, groupInfo, err := g.resourceMgr.GetFlowGroupFromKVStore(ctx, groupID, cached) |
| 223 | if err != nil { |
| 224 | return nil, false, olterrors.NewErrNotFound("flow-group", log.Fields{"group-id": groupID}, err) |
| 225 | } |
| 226 | if exists { |
| 227 | return newGroup(groupInfo.GroupID, groupInfo.OutPorts), exists, nil |
| 228 | } |
| 229 | return nil, exists, nil |
| 230 | } |
| 231 | func newGroup(groupID uint32, outPorts []uint32) *ofp.OfpGroupEntry { |
| 232 | groupDesc := ofp.OfpGroupDesc{ |
| 233 | Type: ofp.OfpGroupType_OFPGT_ALL, |
| 234 | GroupId: groupID, |
| 235 | } |
| 236 | groupEntry := ofp.OfpGroupEntry{ |
| 237 | Desc: &groupDesc, |
| 238 | } |
| 239 | for i := 0; i < len(outPorts); i++ { |
| 240 | var acts []*ofp.OfpAction |
| 241 | acts = append(acts, flows.Output(outPorts[i])) |
| 242 | bucket := ofp.OfpBucket{ |
| 243 | Actions: acts, |
| 244 | } |
| 245 | groupDesc.Buckets = append(groupDesc.Buckets, &bucket) |
| 246 | } |
| 247 | return &groupEntry |
| 248 | } |
| 249 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 250 | // buildGroupAction creates and returns a group action |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 251 | func (g *OpenOltGroupMgr) buildGroupAction() *openoltpb2.Action { |
| 252 | var actionCmd openoltpb2.ActionCmd |
| 253 | var action openoltpb2.Action |
| 254 | action.Cmd = &actionCmd |
| 255 | //pop outer vlan |
| 256 | action.Cmd.RemoveOuterTag = true |
| 257 | return &action |
| 258 | } |
| 259 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 260 | // callGroupAddRemove performs add/remove buckets operation for the indicated group |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 261 | func (g *OpenOltGroupMgr) callGroupAddRemove(ctx context.Context, group *openoltpb2.Group) error { |
| 262 | if err := g.performGroupOperation(ctx, group); err != nil { |
| 263 | st, _ := status.FromError(err) |
| 264 | //ignore already exists error code |
| 265 | if st.Code() != codes.AlreadyExists { |
| 266 | return olterrors.NewErrGroupOp("groupAddRemove", group.GroupId, log.Fields{"status": st}, err) |
| 267 | } |
| 268 | } |
| 269 | return nil |
| 270 | } |
| 271 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 272 | // findDiff compares group members and finds members which only exists in groups2 |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 273 | func (g *OpenOltGroupMgr) findDiff(group1 *openoltpb2.Group, group2 *openoltpb2.Group) []*openoltpb2.GroupMember { |
| 274 | var members []*openoltpb2.GroupMember |
| 275 | for _, bucket := range group2.Members { |
| 276 | if !g.contains(group1.Members, bucket) { |
| 277 | // bucket does not exist and must be added |
| 278 | members = append(members, bucket) |
| 279 | } |
| 280 | } |
| 281 | return members |
| 282 | } |
| 283 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 284 | // contains returns true if the members list contains the given member; false otherwise |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 285 | func (g *OpenOltGroupMgr) contains(members []*openoltpb2.GroupMember, member *openoltpb2.GroupMember) bool { |
| 286 | for _, groupMember := range members { |
| 287 | if groupMember.InterfaceId == member.InterfaceId { |
| 288 | return true |
| 289 | } |
| 290 | } |
| 291 | return false |
| 292 | } |
| 293 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 294 | // performGroupOperation call performGroupOperation operation of openolt proto |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 295 | func (g *OpenOltGroupMgr) performGroupOperation(ctx context.Context, group *openoltpb2.Group) error { |
| 296 | logger.Debugw(ctx, "sending-group-to-device", |
| 297 | log.Fields{ |
| 298 | "groupToOlt": group, |
| 299 | "command": group.Command}) |
| 300 | _, err := g.deviceHandler.Client.PerformGroupOperation(log.WithSpanFromContext(context.Background(), ctx), group) |
| 301 | if err != nil { |
| 302 | return olterrors.NewErrAdapter("group-operation-failed", log.Fields{"groupToOlt": group}, err) |
| 303 | } |
| 304 | return nil |
| 305 | } |
| 306 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 307 | // buildGroup build openoltpb2.Group from given group id and bucket list |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 308 | func (g *OpenOltGroupMgr) buildGroup(ctx context.Context, groupID uint32, buckets []*ofp.OfpBucket) *openoltpb2.Group { |
| 309 | group := openoltpb2.Group{ |
| 310 | GroupId: groupID} |
| 311 | // create members of the group |
| 312 | for _, ofBucket := range buckets { |
| 313 | member := g.buildMember(ctx, ofBucket) |
| 314 | if member != nil && !g.contains(group.Members, member) { |
| 315 | group.Members = append(group.Members, member) |
| 316 | } |
| 317 | } |
| 318 | return &group |
| 319 | } |
| 320 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 321 | // buildMember builds openoltpb2.GroupMember from an OpenFlow bucket |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 322 | func (g *OpenOltGroupMgr) buildMember(ctx context.Context, ofBucket *ofp.OfpBucket) *openoltpb2.GroupMember { |
| 323 | var outPort uint32 |
| 324 | outPortFound := false |
| 325 | for _, ofAction := range ofBucket.Actions { |
| 326 | if ofAction.Type == ofp.OfpActionType_OFPAT_OUTPUT { |
| 327 | outPort = ofAction.GetOutput().Port |
| 328 | outPortFound = true |
| 329 | } |
| 330 | } |
| 331 | if !outPortFound { |
| 332 | logger.Debugw(ctx, "bucket-skipped-since-no-out-port-found-in-it", log.Fields{"ofBucket": ofBucket}) |
| 333 | return nil |
| 334 | } |
Mahir Gunyel | 85f61c1 | 2021-10-06 11:53:45 -0700 | [diff] [blame] | 335 | interfaceID := plt.IntfIDFromUniPortNum(outPort) |
Girish Gowdra | 9602eb4 | 2020-09-09 15:50:39 -0700 | [diff] [blame] | 336 | logger.Debugw(ctx, "got-associated-interface-id-of-the-port", |
| 337 | log.Fields{ |
| 338 | "portNumber:": outPort, |
| 339 | "interfaceId:": interfaceID}) |
| 340 | g.interfaceToMcastQueueMapLock.RLock() |
| 341 | defer g.interfaceToMcastQueueMapLock.RUnlock() |
| 342 | if groupInfo, ok := g.interfaceToMcastQueueMap[interfaceID]; ok { |
| 343 | member := openoltpb2.GroupMember{ |
| 344 | InterfaceId: interfaceID, |
| 345 | InterfaceType: openoltpb2.GroupMember_PON, |
| 346 | GemPortId: groupInfo.gemPortID, |
| 347 | Priority: groupInfo.servicePriority, |
| 348 | } |
| 349 | //add member to the group |
| 350 | return &member |
| 351 | } |
| 352 | logger.Warnf(ctx, "bucket-skipped-since-interface-2-gem-mapping-cannot-be-found", log.Fields{"ofBucket": ofBucket}) |
| 353 | return nil |
| 354 | } |