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" |
David Bainbridge | f8ce7d2 | 2020-04-08 12:49:41 -0700 | [diff] [blame] | 21 | "time" |
| 22 | |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 23 | "github.com/golang/protobuf/ptypes/empty" |
| 24 | "github.com/opencord/ofagent-go/internal/pkg/openflow" |
David K. Bainbridge | aea73cd | 2020-01-27 10:44:50 -0800 | [diff] [blame] | 25 | "github.com/opencord/voltha-lib-go/v3/pkg/log" |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 26 | ) |
| 27 | |
| 28 | func (ofa *OFAgent) synchronizeDeviceList(ctx context.Context) { |
| 29 | // Refresh once to get everything started |
Rohan Agrawal | c32d993 | 2020-06-15 11:01:47 +0000 | [diff] [blame] | 30 | ofa.refreshDeviceList(ctx) |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 31 | |
| 32 | tick := time.NewTicker(ofa.DeviceListRefreshInterval) |
| 33 | loop: |
| 34 | for { |
| 35 | select { |
| 36 | case <-ctx.Done(): |
| 37 | break loop |
| 38 | case <-tick.C: |
Rohan Agrawal | c32d993 | 2020-06-15 11:01:47 +0000 | [diff] [blame] | 39 | ofa.refreshDeviceList(ctx) |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 40 | } |
| 41 | } |
| 42 | tick.Stop() |
| 43 | } |
| 44 | |
Rohan Agrawal | c32d993 | 2020-06-15 11:01:47 +0000 | [diff] [blame] | 45 | func (ofa *OFAgent) refreshDeviceList(ctx context.Context) { |
Girish Kumar | 01e0c63 | 2020-08-10 16:48:56 +0000 | [diff] [blame] | 46 | span, ctx := log.CreateChildSpan(ctx, "refresh-device-list") |
| 47 | defer span.Finish() |
| 48 | |
David K. Bainbridge | 9cb404e | 2020-01-28 14:32:29 -0800 | [diff] [blame] | 49 | // If we exit, assume disconnected |
| 50 | if ofa.volthaClient == nil { |
Rohan Agrawal | c32d993 | 2020-06-15 11:01:47 +0000 | [diff] [blame] | 51 | logger.Error(ctx, "no-voltha-connection") |
David K. Bainbridge | 9cb404e | 2020-01-28 14:32:29 -0800 | [diff] [blame] | 52 | ofa.events <- ofaEventVolthaDisconnected |
| 53 | return |
| 54 | } |
Girish Kumar | 01e0c63 | 2020-08-10 16:48:56 +0000 | [diff] [blame] | 55 | deviceList, err := ofa.volthaClient.Get().ListLogicalDevices(log.WithSpanFromContext(context.Background(), ctx), &empty.Empty{}) |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 56 | if err != nil { |
Rohan Agrawal | c32d993 | 2020-06-15 11:01:47 +0000 | [diff] [blame] | 57 | logger.Errorw(ctx, "ofagent failed to query device list from voltha", |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 58 | log.Fields{"error": err}) |
David K. Bainbridge | 9cb404e | 2020-01-28 14:32:29 -0800 | [diff] [blame] | 59 | ofa.events <- ofaEventVolthaDisconnected |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 60 | return |
| 61 | } |
| 62 | devices := deviceList.GetItems() |
| 63 | |
| 64 | var toAdd []string |
| 65 | var toDel []string |
| 66 | var deviceIDMap = make(map[string]string) |
| 67 | for i := 0; i < len(devices); i++ { |
| 68 | deviceID := devices[i].GetId() |
| 69 | deviceIDMap[deviceID] = deviceID |
| 70 | if ofa.clientMap[deviceID] == nil { |
| 71 | toAdd = append(toAdd, deviceID) |
| 72 | } |
| 73 | } |
| 74 | for key := range ofa.clientMap { |
| 75 | if deviceIDMap[key] == "" { |
| 76 | toDel = append(toDel, key) |
| 77 | } |
| 78 | } |
Rohan Agrawal | c32d993 | 2020-06-15 11:01:47 +0000 | [diff] [blame] | 79 | logger.Debugw(ctx, "GrpcClient refreshDeviceList", log.Fields{"ToAdd": toAdd, "ToDel": toDel}) |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 80 | for i := 0; i < len(toAdd); i++ { |
Rohan Agrawal | c32d993 | 2020-06-15 11:01:47 +0000 | [diff] [blame] | 81 | ofa.addOFClient(ctx, toAdd[i]) // client is started in addOFClient |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 82 | } |
| 83 | for i := 0; i < len(toDel); i++ { |
| 84 | ofa.clientMap[toDel[i]].Stop() |
| 85 | ofa.mapLock.Lock() |
| 86 | delete(ofa.clientMap, toDel[i]) |
| 87 | ofa.mapLock.Unlock() |
| 88 | } |
| 89 | } |
| 90 | |
Rohan Agrawal | c32d993 | 2020-06-15 11:01:47 +0000 | [diff] [blame] | 91 | func (ofa *OFAgent) addOFClient(ctx context.Context, deviceID string) *openflow.OFClient { |
| 92 | logger.Debugw(ctx, "GrpcClient addClient called ", log.Fields{"device-id": deviceID}) |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 93 | ofa.mapLock.Lock() |
| 94 | ofc := ofa.clientMap[deviceID] |
| 95 | if ofc == nil { |
Rohan Agrawal | c32d993 | 2020-06-15 11:01:47 +0000 | [diff] [blame] | 96 | ofc = openflow.NewOFClient(ctx, &openflow.OFClient{ |
Jonathan Hart | 4b110f6 | 2020-03-13 17:36:19 -0700 | [diff] [blame] | 97 | DeviceID: deviceID, |
| 98 | OFControllerEndPoints: ofa.OFControllerEndPoints, |
| 99 | VolthaClient: ofa.volthaClient, |
| 100 | PacketOutChannel: ofa.packetOutChannel, |
| 101 | ConnectionMaxRetries: ofa.ConnectionMaxRetries, |
| 102 | ConnectionRetryDelay: ofa.ConnectionRetryDelay, |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 103 | }) |
Jonathan Hart | 4b110f6 | 2020-03-13 17:36:19 -0700 | [diff] [blame] | 104 | ofc.Run(context.Background()) |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 105 | ofa.clientMap[deviceID] = ofc |
| 106 | } |
| 107 | ofa.mapLock.Unlock() |
Rohan Agrawal | c32d993 | 2020-06-15 11:01:47 +0000 | [diff] [blame] | 108 | logger.Debugw(ctx, "Finished with addClient", log.Fields{"deviceID": deviceID}) |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 109 | return ofc |
| 110 | } |
| 111 | |
Rohan Agrawal | c32d993 | 2020-06-15 11:01:47 +0000 | [diff] [blame] | 112 | func (ofa *OFAgent) getOFClient(ctx context.Context, deviceID string) *openflow.OFClient { |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 113 | ofc := ofa.clientMap[deviceID] |
| 114 | if ofc == nil { |
Rohan Agrawal | c32d993 | 2020-06-15 11:01:47 +0000 | [diff] [blame] | 115 | ofc = ofa.addOFClient(ctx, deviceID) |
David K. Bainbridge | 157bdab | 2020-01-16 14:38:05 -0800 | [diff] [blame] | 116 | } |
| 117 | return ofc |
| 118 | } |