David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 1 | /* |
| 2 | Copyright 2020 the original author or authors. |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | package ofagent |
| 18 | |
| 19 | import ( |
| 20 | "context" |
| 21 | "encoding/json" |
David Bainbridge | f8ce7d2 | 2020-04-08 12:49:41 -0700 | [diff] [blame] | 22 | "net" |
| 23 | |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 24 | "github.com/golang/protobuf/ptypes/empty" |
Jonathan Hart | 828908c | 2020-04-15 14:23:45 -0700 | [diff] [blame] | 25 | ofp "github.com/opencord/goloxi/of13" |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 26 | "github.com/opencord/ofagent-go/internal/pkg/openflow" |
David K. Bainbridge | aea73cd | 2020-01-27 10:44:50 -0800 | [diff] [blame] | 27 | "github.com/opencord/voltha-lib-go/v3/pkg/log" |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 28 | "google.golang.org/grpc" |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 29 | ) |
| 30 | |
| 31 | func (ofa *OFAgent) receiveChangeEvents(ctx context.Context) { |
| 32 | logger.Debug("receive-change-events-started") |
David K. Bainbridge | 9cb404e | 2020-01-28 14:32:29 -0800 | [diff] [blame] | 33 | // If we exit, assume disconnected |
| 34 | defer func() { |
| 35 | ofa.events <- ofaEventVolthaDisconnected |
| 36 | logger.Debug("receive-change-events-finished") |
| 37 | }() |
| 38 | if ofa.volthaClient == nil { |
| 39 | logger.Error("no-voltha-connection") |
| 40 | return |
| 41 | } |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 42 | opt := grpc.EmptyCallOption{} |
| 43 | streamCtx, streamDone := context.WithCancel(context.Background()) |
David K. Bainbridge | 9cb404e | 2020-01-28 14:32:29 -0800 | [diff] [blame] | 44 | defer streamDone() |
David Bainbridge | f8ce7d2 | 2020-04-08 12:49:41 -0700 | [diff] [blame] | 45 | stream, err := ofa.volthaClient.Get().ReceiveChangeEvents(streamCtx, &empty.Empty{}, opt) |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 46 | if err != nil { |
| 47 | logger.Errorw("Unable to establish Receive Change Event Stream", |
| 48 | log.Fields{"error": err}) |
David K. Bainbridge | 9cb404e | 2020-01-28 14:32:29 -0800 | [diff] [blame] | 49 | return |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 50 | } |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 51 | |
David K. Bainbridge | 9cb404e | 2020-01-28 14:32:29 -0800 | [diff] [blame] | 52 | top: |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 53 | for { |
| 54 | select { |
| 55 | case <-ctx.Done(): |
David K. Bainbridge | 9cb404e | 2020-01-28 14:32:29 -0800 | [diff] [blame] | 56 | break top |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 57 | default: |
David K. Bainbridge | 9cb404e | 2020-01-28 14:32:29 -0800 | [diff] [blame] | 58 | ce, err := stream.Recv() |
| 59 | if err != nil { |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 60 | logger.Errorw("error receiving change event", |
| 61 | log.Fields{"error": err}) |
David K. Bainbridge | 9cb404e | 2020-01-28 14:32:29 -0800 | [diff] [blame] | 62 | break top |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 63 | } |
David K. Bainbridge | 9cb404e | 2020-01-28 14:32:29 -0800 | [diff] [blame] | 64 | ofa.changeEventChannel <- ce |
| 65 | logger.Debug("receive-change-event-queued") |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 66 | } |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | func (ofa *OFAgent) handleChangeEvents(ctx context.Context) { |
David K. Bainbridge | 9cb404e | 2020-01-28 14:32:29 -0800 | [diff] [blame] | 71 | logger.Debug("handle-change-event-started") |
| 72 | |
| 73 | top: |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 74 | for { |
| 75 | select { |
| 76 | case <-ctx.Done(): |
David K. Bainbridge | 9cb404e | 2020-01-28 14:32:29 -0800 | [diff] [blame] | 77 | break top |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 78 | case changeEvent := <-ofa.changeEventChannel: |
| 79 | deviceID := changeEvent.GetId() |
| 80 | portStatus := changeEvent.GetPortStatus() |
| 81 | logger.Debugw("received-change-event", |
| 82 | log.Fields{ |
| 83 | "device-id": deviceID, |
| 84 | "port-status": portStatus}) |
| 85 | |
| 86 | if portStatus == nil { |
| 87 | if logger.V(log.WarnLevel) { |
| 88 | js, _ := json.Marshal(changeEvent.GetEvent()) |
| 89 | logger.Warnw("Received change event that was not port status", |
| 90 | log.Fields{"ChangeEvent": js}) |
| 91 | } |
| 92 | break |
| 93 | } |
| 94 | ofPortStatus := ofp.NewPortStatus() |
| 95 | ofPortStatus.SetXid(openflow.GetXid()) |
| 96 | ofPortStatus.SetVersion(4) |
| 97 | |
| 98 | ofReason := ofp.PortReason(portStatus.GetReason()) |
| 99 | ofPortStatus.SetReason(ofReason) |
| 100 | ofDesc := ofp.NewPortDesc() |
| 101 | |
| 102 | desc := portStatus.GetDesc() |
| 103 | ofDesc.SetAdvertised(ofp.PortFeatures(desc.GetAdvertised())) |
| 104 | ofDesc.SetConfig(ofp.PortConfig(0)) |
| 105 | ofDesc.SetCurr(ofp.PortFeatures(desc.GetAdvertised())) |
| 106 | ofDesc.SetCurrSpeed(desc.GetCurrSpeed()) |
| 107 | intArray := desc.GetHwAddr() |
| 108 | var octets []byte |
| 109 | for _, val := range intArray { |
| 110 | octets = append(octets, byte(val)) |
| 111 | } |
| 112 | addr := net.HardwareAddr(octets) |
| 113 | ofDesc.SetHwAddr(addr) |
| 114 | ofDesc.SetMaxSpeed(desc.GetMaxSpeed()) |
| 115 | ofDesc.SetName(openflow.PadString(desc.GetName(), 16)) |
| 116 | ofDesc.SetPeer(ofp.PortFeatures(desc.GetPeer())) |
| 117 | ofDesc.SetPortNo(ofp.Port(desc.GetPortNo())) |
| 118 | ofDesc.SetState(ofp.PortState(desc.GetState())) |
| 119 | ofDesc.SetSupported(ofp.PortFeatures(desc.GetSupported())) |
| 120 | ofPortStatus.SetDesc(*ofDesc) |
David K. Bainbridge | cac73ac | 2020-02-19 07:00:12 -0800 | [diff] [blame] | 121 | if err := ofa.getOFClient(deviceID).SendMessage(ofPortStatus); err != nil { |
divyadesai | 81bb7ba | 2020-03-11 11:45:23 +0000 | [diff] [blame] | 122 | logger.Errorw("handle-change-events-send-message", log.Fields{"error": err}) |
David K. Bainbridge | cac73ac | 2020-02-19 07:00:12 -0800 | [diff] [blame] | 123 | } |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 124 | } |
| 125 | } |
David K. Bainbridge | 9cb404e | 2020-01-28 14:32:29 -0800 | [diff] [blame] | 126 | |
Girish Kumar | e9d7617 | 2020-03-20 20:26:04 +0000 | [diff] [blame] | 127 | logger.Debug("handle-change-event-finsihed") |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 128 | } |