khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018-present Open Networking Foundation |
| 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 | package core |
| 17 | |
| 18 | import ( |
| 19 | "context" |
| 20 | "errors" |
| 21 | "github.com/opencord/voltha-go/common/log" |
| 22 | "github.com/opencord/voltha-go/db/model" |
| 23 | "github.com/opencord/voltha-go/kafka" |
khenaidoo | 3d3b8c2 | 2019-05-22 18:10:39 -0400 | [diff] [blame] | 24 | "github.com/opencord/voltha-go/rw_core/utils" |
William Kurkian | daa6bb2 | 2019-03-07 12:26:28 -0500 | [diff] [blame] | 25 | ic "github.com/opencord/voltha-protos/go/inter_container" |
| 26 | ofp "github.com/opencord/voltha-protos/go/openflow_13" |
| 27 | "github.com/opencord/voltha-protos/go/voltha" |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 28 | "google.golang.org/grpc/codes" |
| 29 | "google.golang.org/grpc/status" |
| 30 | "reflect" |
| 31 | "runtime" |
| 32 | "sync" |
| 33 | ) |
| 34 | |
| 35 | type DeviceManager struct { |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 36 | deviceAgents sync.Map |
| 37 | rootDevices map[string]bool |
| 38 | lockRootDeviceMap sync.RWMutex |
| 39 | core *Core |
| 40 | adapterProxy *AdapterProxy |
| 41 | adapterMgr *AdapterManager |
| 42 | logicalDeviceMgr *LogicalDeviceManager |
| 43 | kafkaICProxy *kafka.InterContainerProxy |
| 44 | stateTransitions *TransitionMap |
| 45 | clusterDataProxy *model.Proxy |
| 46 | coreInstanceId string |
| 47 | exitChannel chan int |
| 48 | defaultTimeout int64 |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 49 | } |
| 50 | |
Richard Jankowski | 199fd86 | 2019-03-18 14:49:51 -0400 | [diff] [blame] | 51 | func newDeviceManager(core *Core) *DeviceManager { |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 52 | var deviceMgr DeviceManager |
Richard Jankowski | 199fd86 | 2019-03-18 14:49:51 -0400 | [diff] [blame] | 53 | deviceMgr.core = core |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 54 | deviceMgr.exitChannel = make(chan int, 1) |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 55 | deviceMgr.rootDevices = make(map[string]bool) |
Richard Jankowski | 199fd86 | 2019-03-18 14:49:51 -0400 | [diff] [blame] | 56 | deviceMgr.kafkaICProxy = core.kmp |
| 57 | deviceMgr.adapterProxy = NewAdapterProxy(core.kmp) |
| 58 | deviceMgr.coreInstanceId = core.instanceId |
| 59 | deviceMgr.clusterDataProxy = core.clusterDataProxy |
| 60 | deviceMgr.adapterMgr = core.adapterMgr |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 61 | deviceMgr.lockRootDeviceMap = sync.RWMutex{} |
| 62 | deviceMgr.defaultTimeout = core.config.DefaultCoreTimeout |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 63 | return &deviceMgr |
| 64 | } |
| 65 | |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 66 | func (dMgr *DeviceManager) start(ctx context.Context, logicalDeviceMgr *LogicalDeviceManager) { |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 67 | log.Info("starting-device-manager") |
| 68 | dMgr.logicalDeviceMgr = logicalDeviceMgr |
| 69 | dMgr.stateTransitions = NewTransitionMap(dMgr) |
| 70 | log.Info("device-manager-started") |
| 71 | } |
| 72 | |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 73 | func (dMgr *DeviceManager) stop(ctx context.Context) { |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 74 | log.Info("stopping-device-manager") |
| 75 | dMgr.exitChannel <- 1 |
| 76 | log.Info("device-manager-stopped") |
| 77 | } |
| 78 | |
| 79 | func sendResponse(ctx context.Context, ch chan interface{}, result interface{}) { |
| 80 | if ctx.Err() == nil { |
| 81 | // Returned response only of the ctx has not been cancelled/timeout/etc |
| 82 | // Channel is automatically closed when a context is Done |
| 83 | ch <- result |
| 84 | log.Debugw("sendResponse", log.Fields{"result": result}) |
| 85 | } else { |
| 86 | // Should the transaction be reverted back? |
| 87 | log.Debugw("sendResponse-context-error", log.Fields{"context-error": ctx.Err()}) |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | func (dMgr *DeviceManager) addDeviceAgentToMap(agent *DeviceAgent) { |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 92 | if _, exist := dMgr.deviceAgents.Load(agent.deviceId); !exist { |
| 93 | dMgr.deviceAgents.Store(agent.deviceId, agent) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 94 | } |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 95 | dMgr.lockRootDeviceMap.Lock() |
| 96 | defer dMgr.lockRootDeviceMap.Unlock() |
| 97 | dMgr.rootDevices[agent.deviceId] = agent.isRootdevice |
| 98 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 99 | } |
| 100 | |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 101 | func (dMgr *DeviceManager) deleteDeviceAgentToMap(agent *DeviceAgent) { |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 102 | dMgr.deviceAgents.Delete(agent.deviceId) |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 103 | dMgr.lockRootDeviceMap.Lock() |
| 104 | defer dMgr.lockRootDeviceMap.Unlock() |
| 105 | delete(dMgr.rootDevices, agent.deviceId) |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 106 | } |
| 107 | |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 108 | // getDeviceAgent returns the agent managing the device. If the device is not in memory, it will loads it, if it exists |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 109 | func (dMgr *DeviceManager) getDeviceAgent(deviceId string) *DeviceAgent { |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 110 | if agent, ok := dMgr.deviceAgents.Load(deviceId); ok { |
| 111 | return agent.(*DeviceAgent) |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 112 | } else { |
khenaidoo | 3d3b8c2 | 2019-05-22 18:10:39 -0400 | [diff] [blame] | 113 | // Try to load into memory - loading will also create the device agent and set the device ownership |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 114 | if err := dMgr.load(deviceId); err == nil { |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 115 | if agent, ok = dMgr.deviceAgents.Load(deviceId); !ok { |
khenaidoo | 3d3b8c2 | 2019-05-22 18:10:39 -0400 | [diff] [blame] | 116 | return nil |
| 117 | } else { |
| 118 | // Register this device for ownership tracking |
| 119 | go dMgr.core.deviceOwnership.OwnedByMe(&utils.DeviceID{Id: deviceId}) |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 120 | return agent.(*DeviceAgent) |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 121 | } |
khenaidoo | 3d3b8c2 | 2019-05-22 18:10:39 -0400 | [diff] [blame] | 122 | } else { |
| 123 | //TODO: Change the return params to return an error as well |
| 124 | log.Errorw("loading-device-failed", log.Fields{"deviceId": deviceId, "error": err}) |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 125 | } |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 126 | } |
| 127 | return nil |
| 128 | } |
| 129 | |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 130 | // listDeviceIdsFromMap returns the list of device IDs that are in memory |
khenaidoo | 7ccedd5 | 2018-12-14 16:48:54 -0500 | [diff] [blame] | 131 | func (dMgr *DeviceManager) listDeviceIdsFromMap() *voltha.IDs { |
khenaidoo | 7ccedd5 | 2018-12-14 16:48:54 -0500 | [diff] [blame] | 132 | result := &voltha.IDs{Items: make([]*voltha.ID, 0)} |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 133 | |
| 134 | dMgr.deviceAgents.Range(func(key, value interface{}) bool { |
| 135 | result.Items = append(result.Items, &voltha.ID{Id: key.(string)}) |
| 136 | return true |
| 137 | }) |
| 138 | |
khenaidoo | 7ccedd5 | 2018-12-14 16:48:54 -0500 | [diff] [blame] | 139 | return result |
| 140 | } |
| 141 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 142 | func (dMgr *DeviceManager) createDevice(ctx context.Context, device *voltha.Device, ch chan interface{}) { |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 143 | log.Debugw("createDevice", log.Fields{"device": device, "aproxy": dMgr.adapterProxy}) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 144 | |
khenaidoo | 5e677ae | 2019-02-28 17:26:29 -0500 | [diff] [blame] | 145 | // Ensure this device is set as root |
| 146 | device.Root = true |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 147 | // Create and start a device agent for that device |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 148 | agent := newDeviceAgent(dMgr.adapterProxy, device, dMgr, dMgr.clusterDataProxy, dMgr.defaultTimeout) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 149 | dMgr.addDeviceAgentToMap(agent) |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 150 | agent.start(ctx, false) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 151 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 152 | sendResponse(ctx, ch, agent.lastData) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | func (dMgr *DeviceManager) enableDevice(ctx context.Context, id *voltha.ID, ch chan interface{}) { |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 156 | log.Debugw("enableDevice", log.Fields{"deviceid": id}) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 157 | var res interface{} |
| 158 | if agent := dMgr.getDeviceAgent(id.Id); agent != nil { |
| 159 | res = agent.enableDevice(ctx) |
| 160 | log.Debugw("EnableDevice-result", log.Fields{"result": res}) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | sendResponse(ctx, ch, res) |
| 164 | } |
| 165 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 166 | func (dMgr *DeviceManager) disableDevice(ctx context.Context, id *voltha.ID, ch chan interface{}) { |
| 167 | log.Debugw("disableDevice", log.Fields{"deviceid": id}) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 168 | var res interface{} |
| 169 | if agent := dMgr.getDeviceAgent(id.Id); agent != nil { |
| 170 | res = agent.disableDevice(ctx) |
| 171 | log.Debugw("disableDevice-result", log.Fields{"result": res}) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 172 | } else { |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 173 | res = status.Errorf(codes.NotFound, "%s", id.Id) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 174 | } |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 175 | |
| 176 | sendResponse(ctx, ch, res) |
| 177 | } |
| 178 | |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 179 | func (dMgr *DeviceManager) rebootDevice(ctx context.Context, id *voltha.ID, ch chan interface{}) { |
| 180 | log.Debugw("rebootDevice", log.Fields{"deviceid": id}) |
| 181 | var res interface{} |
| 182 | if agent := dMgr.getDeviceAgent(id.Id); agent != nil { |
| 183 | res = agent.rebootDevice(ctx) |
| 184 | log.Debugw("rebootDevice-result", log.Fields{"result": res}) |
| 185 | } else { |
| 186 | res = status.Errorf(codes.NotFound, "%s", id.Id) |
| 187 | } |
| 188 | sendResponse(ctx, ch, res) |
| 189 | } |
| 190 | |
| 191 | func (dMgr *DeviceManager) deleteDevice(ctx context.Context, id *voltha.ID, ch chan interface{}) { |
| 192 | log.Debugw("deleteDevice", log.Fields{"deviceid": id}) |
| 193 | var res interface{} |
| 194 | if agent := dMgr.getDeviceAgent(id.Id); agent != nil { |
| 195 | res = agent.deleteDevice(ctx) |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 196 | log.Debugw("deleteDevice-result", log.Fields{"result": res}) |
| 197 | } else { |
| 198 | res = status.Errorf(codes.NotFound, "%s", id.Id) |
| 199 | } |
| 200 | sendResponse(ctx, ch, res) |
| 201 | } |
| 202 | |
khenaidoo | 6d62c00 | 2019-05-15 21:57:03 -0400 | [diff] [blame] | 203 | // stopManagingDevice stops the management of the device as well as any of its reference device and logical device. |
| 204 | // This function is called only in the Core that does not own this device. In the Core that owns this device then a |
| 205 | // deletion deletion also includes removal of any reference of this device. |
| 206 | func (dMgr *DeviceManager) stopManagingDevice(id string) { |
| 207 | log.Infow("stopManagingDevice", log.Fields{"deviceId": id}) |
| 208 | if dMgr.IsDeviceInCache(id) { // Proceed only if an agent is present for this device |
| 209 | if root, _ := dMgr.IsRootDevice(id); root == true { |
| 210 | // stop managing the logical device |
| 211 | ldeviceId := dMgr.logicalDeviceMgr.stopManagingLogicalDeviceWithDeviceId(id) |
| 212 | if ldeviceId != "" { // Can happen if logical device agent was already stopped |
| 213 | dMgr.core.deviceOwnership.AbandonDevice(ldeviceId) |
| 214 | } |
| 215 | // stop managing the child devices |
| 216 | childDeviceIds := dMgr.getAllDeviceIdsWithDeviceParentId(id) |
| 217 | for _, cId := range childDeviceIds { |
| 218 | dMgr.stopManagingDevice(cId) |
| 219 | } |
| 220 | } |
| 221 | if agent := dMgr.getDeviceAgent(id); agent != nil { |
| 222 | agent.stop(nil) |
| 223 | dMgr.deleteDeviceAgentToMap(agent) |
| 224 | // Abandon the device ownership |
| 225 | dMgr.core.deviceOwnership.AbandonDevice(id) |
| 226 | } |
| 227 | } |
| 228 | } |
| 229 | |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 230 | func (dMgr *DeviceManager) RunPostDeviceDelete(cDevice *voltha.Device) error { |
| 231 | log.Infow("RunPostDeviceDelete", log.Fields{"deviceId": cDevice.Id}) |
khenaidoo | 6d62c00 | 2019-05-15 21:57:03 -0400 | [diff] [blame] | 232 | dMgr.stopManagingDevice(cDevice.Id) |
| 233 | return nil |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 234 | } |
| 235 | |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 236 | // GetDevice will returns a device, either from memory or from the dB, if present |
khenaidoo | 19d7b63 | 2018-10-30 10:49:50 -0400 | [diff] [blame] | 237 | func (dMgr *DeviceManager) GetDevice(id string) (*voltha.Device, error) { |
| 238 | log.Debugw("GetDevice", log.Fields{"deviceid": id}) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 239 | if agent := dMgr.getDeviceAgent(id); agent != nil { |
| 240 | return agent.getDevice() |
| 241 | } |
| 242 | return nil, status.Errorf(codes.NotFound, "%s", id) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 243 | } |
| 244 | |
Matt Jeanneret | 4e24195 | 2019-02-28 11:16:04 -0500 | [diff] [blame] | 245 | func (dMgr *DeviceManager) GetChildDevice(parentDeviceId string, serialNumber string, onuId int64, parentPortNo int64) (*voltha.Device, error) { |
Matt Jeanneret | 0c5088c | 2019-04-22 16:16:19 -0400 | [diff] [blame] | 246 | log.Debugw("GetChildDevice", log.Fields{"parentDeviceid": parentDeviceId, "serialNumber": serialNumber, |
| 247 | "parentPortNo": parentPortNo, "onuId": onuId}) |
Matt Jeanneret | 4e24195 | 2019-02-28 11:16:04 -0500 | [diff] [blame] | 248 | |
| 249 | var parentDevice *voltha.Device |
| 250 | var err error |
| 251 | if parentDevice, err = dMgr.GetDevice(parentDeviceId); err != nil { |
| 252 | return nil, status.Errorf(codes.Aborted, "%s", err.Error()) |
| 253 | } |
| 254 | var childDeviceIds []string |
| 255 | if childDeviceIds, err = dMgr.getAllChildDeviceIds(parentDevice); err != nil { |
| 256 | return nil, status.Errorf(codes.Aborted, "%s", err.Error()) |
| 257 | } |
| 258 | if len(childDeviceIds) == 0 { |
Mahir Gunyel | 6deaa24 | 2019-06-27 04:53:33 -0700 | [diff] [blame] | 259 | log.Debugw("no-child-devices", log.Fields{"parentDeviceId": parentDevice.Id, "serialNumber": serialNumber, "onuId": onuId}) |
Matt Jeanneret | 4e24195 | 2019-02-28 11:16:04 -0500 | [diff] [blame] | 260 | return nil, status.Errorf(codes.NotFound, "%s", parentDeviceId) |
| 261 | } |
| 262 | |
| 263 | var foundChildDevice *voltha.Device |
| 264 | for _, childDeviceId := range childDeviceIds { |
| 265 | found := false |
| 266 | if searchDevice, err := dMgr.GetDevice(childDeviceId); err == nil { |
| 267 | |
| 268 | foundOnuId := false |
| 269 | if searchDevice.ProxyAddress.OnuId == uint32(onuId) { |
| 270 | if searchDevice.ParentPortNo == uint32(parentPortNo) { |
| 271 | log.Debugw("found-child-by-onuid", log.Fields{"parentDeviceId": parentDevice.Id, "onuId": onuId}) |
| 272 | foundOnuId = true |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | foundSerialNumber := false |
| 277 | if searchDevice.SerialNumber == serialNumber { |
| 278 | log.Debugw("found-child-by-serialnumber", log.Fields{"parentDeviceId": parentDevice.Id, "serialNumber": serialNumber}) |
| 279 | foundSerialNumber = true |
| 280 | } |
| 281 | |
| 282 | // if both onuId and serialNumber are provided both must be true for the device to be found |
| 283 | // otherwise whichever one found a match is good enough |
| 284 | if onuId > 0 && serialNumber != "" { |
| 285 | found = foundOnuId && foundSerialNumber |
| 286 | } else { |
| 287 | found = foundOnuId || foundSerialNumber |
| 288 | } |
| 289 | |
| 290 | if found == true { |
| 291 | foundChildDevice = searchDevice |
| 292 | break |
| 293 | } |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | if foundChildDevice != nil { |
| 298 | log.Debugw("child-device-found", log.Fields{"parentDeviceId": parentDevice.Id, "foundChildDevice": foundChildDevice}) |
| 299 | return foundChildDevice, nil |
| 300 | } |
| 301 | |
| 302 | log.Warnw("child-device-not-found", log.Fields{"parentDeviceId": parentDevice.Id, |
| 303 | "serialNumber": serialNumber, "onuId": onuId, "parentPortNo": parentPortNo}) |
| 304 | return nil, status.Errorf(codes.NotFound, "%s", parentDeviceId) |
| 305 | } |
| 306 | |
Matt Jeanneret | 2a20aaa | 2019-03-05 21:04:02 -0500 | [diff] [blame] | 307 | func (dMgr *DeviceManager) GetChildDeviceWithProxyAddress(proxyAddress *voltha.Device_ProxyAddress) (*voltha.Device, error) { |
| 308 | log.Debugw("GetChildDeviceWithProxyAddress", log.Fields{"proxyAddress": proxyAddress}) |
| 309 | |
| 310 | var parentDevice *voltha.Device |
| 311 | var err error |
| 312 | if parentDevice, err = dMgr.GetDevice(proxyAddress.DeviceId); err != nil { |
| 313 | return nil, status.Errorf(codes.Aborted, "%s", err.Error()) |
| 314 | } |
| 315 | var childDeviceIds []string |
| 316 | if childDeviceIds, err = dMgr.getAllChildDeviceIds(parentDevice); err != nil { |
| 317 | return nil, status.Errorf(codes.Aborted, "%s", err.Error()) |
| 318 | } |
| 319 | if len(childDeviceIds) == 0 { |
| 320 | log.Debugw("no-child-devices", log.Fields{"parentDeviceId": parentDevice.Id}) |
| 321 | return nil, status.Errorf(codes.NotFound, "%s", proxyAddress) |
| 322 | } |
| 323 | |
| 324 | var foundChildDevice *voltha.Device |
| 325 | for _, childDeviceId := range childDeviceIds { |
| 326 | if searchDevice, err := dMgr.GetDevice(childDeviceId); err == nil { |
| 327 | if searchDevice.ProxyAddress == proxyAddress { |
| 328 | foundChildDevice = searchDevice |
| 329 | break |
| 330 | } |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | if foundChildDevice != nil { |
| 335 | log.Debugw("child-device-found", log.Fields{"proxyAddress": proxyAddress}) |
| 336 | return foundChildDevice, nil |
| 337 | } |
| 338 | |
| 339 | log.Warnw("child-device-not-found", log.Fields{"proxyAddress": proxyAddress}) |
| 340 | return nil, status.Errorf(codes.NotFound, "%s", proxyAddress) |
| 341 | } |
| 342 | |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 343 | func (dMgr *DeviceManager) IsDeviceInCache(id string) bool { |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 344 | _, exist := dMgr.deviceAgents.Load(id) |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 345 | return exist |
| 346 | } |
| 347 | |
khenaidoo | 19d7b63 | 2018-10-30 10:49:50 -0400 | [diff] [blame] | 348 | func (dMgr *DeviceManager) IsRootDevice(id string) (bool, error) { |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 349 | dMgr.lockRootDeviceMap.RLock() |
| 350 | defer dMgr.lockRootDeviceMap.RUnlock() |
| 351 | if exist := dMgr.rootDevices[id]; exist { |
| 352 | return dMgr.rootDevices[id], nil |
khenaidoo | 19d7b63 | 2018-10-30 10:49:50 -0400 | [diff] [blame] | 353 | } |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 354 | return false, nil |
khenaidoo | 19d7b63 | 2018-10-30 10:49:50 -0400 | [diff] [blame] | 355 | } |
| 356 | |
Stephane Barbarie | aa46794 | 2019-02-06 14:09:44 -0500 | [diff] [blame] | 357 | // ListDevices retrieves the latest devices from the data model |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 358 | func (dMgr *DeviceManager) ListDevices() (*voltha.Devices, error) { |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 359 | log.Debug("ListDevices") |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 360 | result := &voltha.Devices{} |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 361 | if devices := dMgr.clusterDataProxy.List(context.Background(), "/devices", 0, false, ""); devices != nil { |
Stephane Barbarie | 1ab4327 | 2018-12-08 21:42:13 -0500 | [diff] [blame] | 362 | for _, device := range devices.([]interface{}) { |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 363 | // If device is not in memory then set it up |
| 364 | if !dMgr.IsDeviceInCache(device.(*voltha.Device).Id) { |
khenaidoo | 6d62c00 | 2019-05-15 21:57:03 -0400 | [diff] [blame] | 365 | log.Debugw("loading-device-from-Model", log.Fields{"id": device.(*voltha.Device).Id}) |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 366 | agent := newDeviceAgent(dMgr.adapterProxy, device.(*voltha.Device), dMgr, dMgr.clusterDataProxy, dMgr.defaultTimeout) |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 367 | if err := agent.start(nil, true); err != nil { |
| 368 | log.Warnw("failure-starting-agent", log.Fields{"deviceId": device.(*voltha.Device).Id}) |
| 369 | agent.stop(nil) |
| 370 | } else { |
| 371 | dMgr.addDeviceAgentToMap(agent) |
| 372 | } |
Stephane Barbarie | 1ab4327 | 2018-12-08 21:42:13 -0500 | [diff] [blame] | 373 | } |
| 374 | result.Items = append(result.Items, device.(*voltha.Device)) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 375 | } |
| 376 | } |
khenaidoo | 6d62c00 | 2019-05-15 21:57:03 -0400 | [diff] [blame] | 377 | log.Debugw("ListDevices-end", log.Fields{"len": len(result.Items)}) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 378 | return result, nil |
| 379 | } |
| 380 | |
khenaidoo | 6d62c00 | 2019-05-15 21:57:03 -0400 | [diff] [blame] | 381 | //getDeviceFromModelretrieves the device data from the model. |
| 382 | func (dMgr *DeviceManager) getDeviceFromModel(deviceId string) (*voltha.Device, error) { |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 383 | if device := dMgr.clusterDataProxy.Get(context.Background(), "/devices/"+deviceId, 0, false, ""); device != nil { |
khenaidoo | 6d62c00 | 2019-05-15 21:57:03 -0400 | [diff] [blame] | 384 | if d, ok := device.(*voltha.Device); ok { |
| 385 | return d, nil |
| 386 | } |
| 387 | } |
| 388 | return nil, status.Error(codes.NotFound, deviceId) |
| 389 | } |
| 390 | |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 391 | // loadDevice loads the deviceId in memory, if not present |
| 392 | func (dMgr *DeviceManager) loadDevice(deviceId string) (*DeviceAgent, error) { |
| 393 | log.Debugw("loading-device", log.Fields{"deviceId": deviceId}) |
| 394 | // Sanity check |
| 395 | if deviceId == "" { |
| 396 | return nil, status.Error(codes.InvalidArgument, "deviceId empty") |
| 397 | } |
| 398 | if !dMgr.IsDeviceInCache(deviceId) { |
khenaidoo | 6d62c00 | 2019-05-15 21:57:03 -0400 | [diff] [blame] | 399 | // Proceed with the loading only if the device exist in the Model (could have been deleted) |
| 400 | if device, err := dMgr.getDeviceFromModel(deviceId); err == nil { |
| 401 | agent := newDeviceAgent(dMgr.adapterProxy, device, dMgr, dMgr.clusterDataProxy, dMgr.defaultTimeout) |
| 402 | if err := agent.start(nil, true); err != nil { |
| 403 | agent.stop(nil) |
| 404 | return nil, err |
| 405 | } |
| 406 | dMgr.addDeviceAgentToMap(agent) |
| 407 | } else { |
| 408 | return nil, status.Error(codes.NotFound, deviceId) |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 409 | } |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 410 | } |
| 411 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
| 412 | return agent, nil |
| 413 | } |
Matt Jeanneret | 4e24195 | 2019-02-28 11:16:04 -0500 | [diff] [blame] | 414 | return nil, status.Error(codes.NotFound, deviceId) // This should not happen |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | // loadRootDeviceParentAndChildren loads the children and parents of a root device in memory |
| 418 | func (dMgr *DeviceManager) loadRootDeviceParentAndChildren(device *voltha.Device) error { |
| 419 | log.Debugw("loading-parent-and-children", log.Fields{"deviceId": device.Id}) |
| 420 | if device.Root { |
| 421 | // Scenario A |
| 422 | if device.ParentId != "" { |
| 423 | // Load logical device if needed. |
| 424 | if err := dMgr.logicalDeviceMgr.load(device.ParentId); err != nil { |
| 425 | log.Warnw("failure-loading-logical-device", log.Fields{"lDeviceId": device.ParentId}) |
| 426 | } |
| 427 | } else { |
| 428 | log.Debugw("no-parent-to-load", log.Fields{"deviceId": device.Id}) |
| 429 | } |
| 430 | // Load all child devices, if needed |
| 431 | if childDeviceIds, err := dMgr.getAllChildDeviceIds(device); err == nil { |
| 432 | for _, childDeviceId := range childDeviceIds { |
| 433 | if _, err := dMgr.loadDevice(childDeviceId); err != nil { |
| 434 | log.Warnw("failure-loading-device", log.Fields{"deviceId": childDeviceId}) |
| 435 | return err |
| 436 | } |
| 437 | } |
| 438 | log.Debugw("loaded-children", log.Fields{"deviceId": device.Id, "numChildren": len(childDeviceIds)}) |
| 439 | } else { |
| 440 | log.Debugw("no-child-to-load", log.Fields{"deviceId": device.Id}) |
| 441 | } |
| 442 | } |
| 443 | return nil |
| 444 | } |
| 445 | |
| 446 | // load loads the deviceId in memory, if not present, and also loads its accompanying parents and children. Loading |
| 447 | // in memory is for improved performance. It is not imperative that a device needs to be in memory when a request |
| 448 | // acting on the device is received by the core. In such a scenario, the Core will load the device in memory first |
| 449 | // and the proceed with the request. |
| 450 | func (dMgr *DeviceManager) load(deviceId string) error { |
| 451 | log.Debug("load...") |
| 452 | // First load the device - this may fail in case the device was deleted intentionally by the other core |
| 453 | var dAgent *DeviceAgent |
| 454 | var err error |
| 455 | if dAgent, err = dMgr.loadDevice(deviceId); err != nil { |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 456 | return err |
| 457 | } |
| 458 | // Get the loaded device details |
| 459 | var device *voltha.Device |
| 460 | if device, err = dAgent.getDevice(); err != nil { |
| 461 | return err |
| 462 | } |
| 463 | |
| 464 | // If the device is in Pre-provisioning or deleted state stop here |
| 465 | if device.AdminState == voltha.AdminState_PREPROVISIONED || device.AdminState == voltha.AdminState_DELETED { |
| 466 | return nil |
| 467 | } |
| 468 | |
| 469 | // Now we face two scenarios |
| 470 | if device.Root { |
| 471 | // Load all children as well as the parent of this device (logical_device) |
| 472 | if err := dMgr.loadRootDeviceParentAndChildren(device); err != nil { |
| 473 | log.Warnw("failure-loading-device-parent-and-children", log.Fields{"deviceId": deviceId}) |
| 474 | return err |
| 475 | } |
| 476 | log.Debugw("successfully-loaded-parent-and-children", log.Fields{"deviceId": deviceId}) |
| 477 | } else { |
| 478 | // Scenario B - use the parentId of that device (root device) to trigger the loading |
| 479 | if device.ParentId != "" { |
| 480 | return dMgr.load(device.ParentId) |
| 481 | } |
| 482 | } |
| 483 | return nil |
| 484 | } |
| 485 | |
khenaidoo | 7ccedd5 | 2018-12-14 16:48:54 -0500 | [diff] [blame] | 486 | // ListDeviceIds retrieves the latest device IDs information from the data model (memory data only) |
| 487 | func (dMgr *DeviceManager) ListDeviceIds() (*voltha.IDs, error) { |
| 488 | log.Debug("ListDeviceIDs") |
| 489 | // Report only device IDs that are in the device agent map |
| 490 | return dMgr.listDeviceIdsFromMap(), nil |
| 491 | } |
| 492 | |
| 493 | //ReconcileDevices is a request to a voltha core to managed a list of devices based on their IDs |
| 494 | func (dMgr *DeviceManager) ReconcileDevices(ctx context.Context, ids *voltha.IDs, ch chan interface{}) { |
| 495 | log.Debug("ReconcileDevices") |
| 496 | var res interface{} |
| 497 | if ids != nil { |
| 498 | toReconcile := len(ids.Items) |
| 499 | reconciled := 0 |
| 500 | for _, id := range ids.Items { |
| 501 | // Act on the device only if its not present in the agent map |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 502 | if !dMgr.IsDeviceInCache(id.Id) { |
khenaidoo | 7ccedd5 | 2018-12-14 16:48:54 -0500 | [diff] [blame] | 503 | // Device Id not in memory |
| 504 | log.Debugw("reconciling-device", log.Fields{"id": id.Id}) |
khenaidoo | 6d62c00 | 2019-05-15 21:57:03 -0400 | [diff] [blame] | 505 | // Proceed with the loading only if the device exist in the Model (could have been deleted) |
| 506 | if device, err := dMgr.getDeviceFromModel(id.Id); err == nil { |
| 507 | agent := newDeviceAgent(dMgr.adapterProxy, device, dMgr, dMgr.clusterDataProxy, dMgr.defaultTimeout) |
| 508 | if err := agent.start(nil, true); err != nil { |
| 509 | log.Warnw("failure-loading-device", log.Fields{"deviceId": id.Id}) |
| 510 | agent.stop(nil) |
| 511 | } else { |
| 512 | dMgr.addDeviceAgentToMap(agent) |
| 513 | reconciled += 1 |
| 514 | } |
khenaidoo | 7ccedd5 | 2018-12-14 16:48:54 -0500 | [diff] [blame] | 515 | } else { |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 516 | reconciled += 1 |
khenaidoo | 7ccedd5 | 2018-12-14 16:48:54 -0500 | [diff] [blame] | 517 | } |
khenaidoo | 7ccedd5 | 2018-12-14 16:48:54 -0500 | [diff] [blame] | 518 | } |
| 519 | } |
| 520 | if toReconcile != reconciled { |
| 521 | res = status.Errorf(codes.DataLoss, "less-device-reconciled:%d/%d", reconciled, toReconcile) |
| 522 | } |
| 523 | } else { |
| 524 | res = status.Errorf(codes.InvalidArgument, "empty-list-of-ids") |
| 525 | } |
| 526 | sendResponse(ctx, ch, res) |
| 527 | } |
Stephane Barbarie | 1ab4327 | 2018-12-08 21:42:13 -0500 | [diff] [blame] | 528 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 529 | func (dMgr *DeviceManager) updateDevice(device *voltha.Device) error { |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 530 | log.Debugw("updateDevice", log.Fields{"deviceid": device.Id, "device": device}) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 531 | if agent := dMgr.getDeviceAgent(device.Id); agent != nil { |
| 532 | return agent.updateDevice(device) |
| 533 | } |
| 534 | return status.Errorf(codes.NotFound, "%s", device.Id) |
| 535 | } |
| 536 | |
| 537 | func (dMgr *DeviceManager) addPort(deviceId string, port *voltha.Port) error { |
| 538 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 539 | if err := agent.addPort(port); err != nil { |
| 540 | return err |
| 541 | } |
| 542 | // Setup peer ports |
| 543 | meAsPeer := &voltha.Port_PeerPort{DeviceId: deviceId, PortNo: port.PortNo} |
| 544 | for _, peerPort := range port.Peers { |
| 545 | if agent := dMgr.getDeviceAgent(peerPort.DeviceId); agent != nil { |
| 546 | if err := agent.addPeerPort(meAsPeer); err != nil { |
| 547 | log.Errorw("failed-to-add-peer", log.Fields{"peer-device-id": peerPort.DeviceId}) |
| 548 | return err |
| 549 | } |
| 550 | } |
| 551 | } |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 552 | // Notify the logical device manager to setup a logical port, if needed. If the added port is an NNI or UNI |
| 553 | // then a logical port will be added to the logical device and the device graph generated. If the port is a |
| 554 | // PON port then only the device graph will be generated. |
| 555 | if device, err := dMgr.GetDevice(deviceId); err == nil { |
| 556 | go dMgr.logicalDeviceMgr.updateLogicalPort(device, port) |
| 557 | } else { |
| 558 | log.Errorw("failed-to-retrieve-device", log.Fields{"deviceId": deviceId}) |
| 559 | return err |
khenaidoo | fc1314d | 2019-03-14 09:34:21 -0400 | [diff] [blame] | 560 | } |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 561 | return nil |
| 562 | } else { |
| 563 | return status.Errorf(codes.NotFound, "%s", deviceId) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 564 | } |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 565 | } |
| 566 | |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 567 | func (dMgr *DeviceManager) deletePeerPorts(fromDeviceId string, deviceId string) error { |
| 568 | log.Debugw("deletePeerPorts", log.Fields{"fromDeviceId": fromDeviceId, "deviceid": deviceId}) |
| 569 | if agent := dMgr.getDeviceAgent(fromDeviceId); agent != nil { |
| 570 | return agent.deletePeerPorts(deviceId) |
| 571 | } |
| 572 | return status.Errorf(codes.NotFound, "%s", deviceId) |
| 573 | } |
| 574 | |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 575 | func (dMgr *DeviceManager) addFlowsAndGroups(deviceId string, flows []*ofp.OfpFlowStats, groups []*ofp.OfpGroupEntry) error { |
| 576 | log.Debugw("addFlowsAndGroups", log.Fields{"deviceid": deviceId}) |
khenaidoo | 19d7b63 | 2018-10-30 10:49:50 -0400 | [diff] [blame] | 577 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 578 | return agent.addFlowsAndGroups(flows, groups) |
khenaidoo | 0458db6 | 2019-06-20 08:50:36 -0400 | [diff] [blame] | 579 | } |
| 580 | return status.Errorf(codes.NotFound, "%s", deviceId) |
| 581 | } |
| 582 | |
| 583 | func (dMgr *DeviceManager) deleteFlowsAndGroups(deviceId string, flows []*ofp.OfpFlowStats, groups []*ofp.OfpGroupEntry) error { |
| 584 | log.Debugw("deleteFlowsAndGroups", log.Fields{"deviceid": deviceId}) |
| 585 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
| 586 | return agent.deleteFlowsAndGroups(flows, groups) |
| 587 | } |
| 588 | return status.Errorf(codes.NotFound, "%s", deviceId) |
| 589 | } |
| 590 | |
| 591 | func (dMgr *DeviceManager) updateFlowsAndGroups(deviceId string, flows []*ofp.OfpFlowStats, groups []*ofp.OfpGroupEntry) error { |
| 592 | log.Debugw("updateFlowsAndGroups", log.Fields{"deviceid": deviceId}) |
| 593 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
| 594 | return agent.updateFlowsAndGroups(flows, groups) |
khenaidoo | 19d7b63 | 2018-10-30 10:49:50 -0400 | [diff] [blame] | 595 | } |
| 596 | return status.Errorf(codes.NotFound, "%s", deviceId) |
| 597 | } |
| 598 | |
khenaidoo | b312747 | 2019-07-24 21:04:55 -0400 | [diff] [blame^] | 599 | // updatePmConfigs updates the PM configs. This is executed when the northbound gRPC API is invoked, typically |
| 600 | // following a user action |
| 601 | func (dMgr *DeviceManager) updatePmConfigs(ctx context.Context, pmConfigs *voltha.PmConfigs, ch chan interface{}) { |
| 602 | var res interface{} |
| 603 | if pmConfigs.Id == "" { |
| 604 | res = status.Errorf(codes.FailedPrecondition, "invalid-device-Id") |
| 605 | } else if agent := dMgr.getDeviceAgent(pmConfigs.Id); agent != nil { |
| 606 | res = agent.updatePmConfigs(ctx, pmConfigs) |
| 607 | } else { |
| 608 | res = status.Errorf(codes.NotFound, "%s", pmConfigs.Id) |
| 609 | } |
| 610 | sendResponse(ctx, ch, res) |
| 611 | } |
| 612 | |
| 613 | // initPmConfigs initialize the pm configs as defined by the adapter. |
| 614 | func (dMgr *DeviceManager) initPmConfigs(deviceId string, pmConfigs *voltha.PmConfigs) error { |
| 615 | if pmConfigs.Id == "" { |
| 616 | return status.Errorf(codes.FailedPrecondition, "invalid-device-Id") |
| 617 | } |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 618 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
khenaidoo | b312747 | 2019-07-24 21:04:55 -0400 | [diff] [blame^] | 619 | return agent.initPmConfigs(pmConfigs) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 620 | } |
| 621 | return status.Errorf(codes.NotFound, "%s", deviceId) |
| 622 | } |
| 623 | |
khenaidoo | b312747 | 2019-07-24 21:04:55 -0400 | [diff] [blame^] | 624 | func (dMgr *DeviceManager) listPmConfigs(ctx context.Context, deviceId string) (*voltha.PmConfigs, error) { |
| 625 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
| 626 | return agent.listPmConfigs(ctx) |
| 627 | } |
| 628 | return nil, status.Errorf(codes.NotFound, "%s", deviceId) |
| 629 | } |
| 630 | |
khenaidoo | 7923270 | 2018-12-04 11:00:41 -0500 | [diff] [blame] | 631 | func (dMgr *DeviceManager) getSwitchCapability(ctx context.Context, deviceId string) (*ic.SwitchCapability, error) { |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 632 | log.Debugw("getSwitchCapability", log.Fields{"deviceid": deviceId}) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 633 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
| 634 | return agent.getSwitchCapability(ctx) |
| 635 | } |
| 636 | return nil, status.Errorf(codes.NotFound, "%s", deviceId) |
| 637 | } |
| 638 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 639 | func (dMgr *DeviceManager) getPorts(ctx context.Context, deviceId string, portType voltha.Port_PortType) (*voltha.Ports, error) { |
| 640 | log.Debugw("getPorts", log.Fields{"deviceid": deviceId, "portType": portType}) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 641 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 642 | return agent.getPorts(ctx, portType), nil |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 643 | } |
| 644 | return nil, status.Errorf(codes.NotFound, "%s", deviceId) |
| 645 | } |
| 646 | |
khenaidoo | 7923270 | 2018-12-04 11:00:41 -0500 | [diff] [blame] | 647 | func (dMgr *DeviceManager) getPortCapability(ctx context.Context, deviceId string, portNo uint32) (*ic.PortCapability, error) { |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 648 | log.Debugw("getPortCapability", log.Fields{"deviceid": deviceId}) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 649 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
| 650 | return agent.getPortCapability(ctx, portNo) |
| 651 | } |
| 652 | return nil, status.Errorf(codes.NotFound, "%s", deviceId) |
| 653 | } |
| 654 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 655 | func (dMgr *DeviceManager) updateDeviceStatus(deviceId string, operStatus voltha.OperStatus_OperStatus, connStatus voltha.ConnectStatus_ConnectStatus) error { |
| 656 | log.Debugw("updateDeviceStatus", log.Fields{"deviceid": deviceId, "operStatus": operStatus, "connStatus": connStatus}) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 657 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 658 | return agent.updateDeviceStatus(operStatus, connStatus) |
| 659 | } |
| 660 | return status.Errorf(codes.NotFound, "%s", deviceId) |
| 661 | } |
| 662 | |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 663 | func (dMgr *DeviceManager) updateChildrenStatus(deviceId string, operStatus voltha.OperStatus_OperStatus, connStatus voltha.ConnectStatus_ConnectStatus) error { |
| 664 | log.Debugw("updateChildrenStatus", log.Fields{"parentDeviceid": deviceId, "operStatus": operStatus, "connStatus": connStatus}) |
| 665 | var parentDevice *voltha.Device |
| 666 | var err error |
khenaidoo | 19d7b63 | 2018-10-30 10:49:50 -0400 | [diff] [blame] | 667 | if parentDevice, err = dMgr.GetDevice(deviceId); err != nil { |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 668 | return status.Errorf(codes.Aborted, "%s", err.Error()) |
| 669 | } |
| 670 | var childDeviceIds []string |
| 671 | if childDeviceIds, err = dMgr.getAllChildDeviceIds(parentDevice); err != nil { |
| 672 | return status.Errorf(codes.Aborted, "%s", err.Error()) |
| 673 | } |
| 674 | if len(childDeviceIds) == 0 { |
| 675 | log.Debugw("no-child-device", log.Fields{"parentDeviceId": parentDevice.Id}) |
| 676 | } |
| 677 | for _, childDeviceId := range childDeviceIds { |
| 678 | if agent := dMgr.getDeviceAgent(childDeviceId); agent != nil { |
| 679 | if err = agent.updateDeviceStatus(operStatus, connStatus); err != nil { |
| 680 | return status.Errorf(codes.Aborted, "childDevice:%s, error:%s", childDeviceId, err.Error()) |
| 681 | } |
| 682 | } |
| 683 | } |
| 684 | return nil |
| 685 | } |
| 686 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 687 | func (dMgr *DeviceManager) updatePortState(deviceId string, portType voltha.Port_PortType, portNo uint32, operStatus voltha.OperStatus_OperStatus) error { |
| 688 | log.Debugw("updatePortState", log.Fields{"deviceid": deviceId, "portType": portType, "portNo": portNo, "operStatus": operStatus}) |
| 689 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
| 690 | return agent.updatePortState(portType, portNo, operStatus) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 691 | } |
| 692 | return status.Errorf(codes.NotFound, "%s", deviceId) |
| 693 | } |
| 694 | |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 695 | func (dMgr *DeviceManager) deleteAllPorts(deviceId string) error { |
| 696 | log.Debugw("DeleteAllPorts", log.Fields{"deviceid": deviceId}) |
| 697 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
| 698 | if err := agent.deleteAllPorts(); err != nil { |
| 699 | return err |
| 700 | } |
| 701 | // Notify the logical device manager to remove all logical ports, if needed. |
| 702 | // At this stage the device itself may gave been deleted already at a deleteAllPorts |
| 703 | // typically is part of a device deletion phase. |
| 704 | if device, err := dMgr.GetDevice(deviceId); err == nil { |
| 705 | go dMgr.logicalDeviceMgr.deleteAllLogicalPorts(device) |
| 706 | } else { |
| 707 | log.Warnw("failed-to-retrieve-device", log.Fields{"deviceId": deviceId}) |
| 708 | return err |
| 709 | } |
| 710 | return nil |
| 711 | } |
| 712 | return status.Errorf(codes.NotFound, "%s", deviceId) |
| 713 | } |
| 714 | |
khenaidoo | 3ab3488 | 2019-05-02 21:33:30 -0400 | [diff] [blame] | 715 | //updatePortsState updates all ports on the device |
| 716 | func (dMgr *DeviceManager) updatePortsState(deviceId string, state voltha.OperStatus_OperStatus) error { |
| 717 | log.Debugw("updatePortsState", log.Fields{"deviceid": deviceId}) |
| 718 | |
| 719 | var adminState voltha.AdminState_AdminState |
| 720 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
| 721 | switch state { |
| 722 | case voltha.OperStatus_ACTIVE: |
| 723 | adminState = voltha.AdminState_ENABLED |
| 724 | if err := agent.enablePorts(); err != nil { |
| 725 | log.Warnw("enable-all-ports-failed", log.Fields{"deviceId": deviceId, "error": err}) |
| 726 | return err |
| 727 | } |
| 728 | case voltha.OperStatus_UNKNOWN: |
| 729 | adminState = voltha.AdminState_DISABLED |
| 730 | if err := agent.disablePorts(); err != nil { |
| 731 | log.Warnw("disable-all-ports-failed", log.Fields{"deviceId": deviceId, "error": err}) |
| 732 | return err |
| 733 | } |
| 734 | default: |
| 735 | return status.Error(codes.Unimplemented, "state-change-not-implemented") |
| 736 | } |
| 737 | // Notify the logical device about the state change |
| 738 | if device, err := dMgr.GetDevice(deviceId); err != nil { |
| 739 | log.Warnw("non-existent-device", log.Fields{"deviceId": deviceId, "error": err}) |
| 740 | return err |
| 741 | } else { |
| 742 | if err := dMgr.logicalDeviceMgr.updatePortsState(device, adminState); err != nil { |
| 743 | log.Warnw("failed-updating-ports-state", log.Fields{"deviceId": deviceId, "error": err}) |
| 744 | return err |
| 745 | } |
| 746 | return nil |
| 747 | } |
| 748 | } |
| 749 | return status.Errorf(codes.NotFound, "%s", deviceId) |
| 750 | } |
| 751 | |
Matt Jeanneret | 4e24195 | 2019-02-28 11:16:04 -0500 | [diff] [blame] | 752 | func (dMgr *DeviceManager) childDeviceDetected(parentDeviceId string, parentPortNo int64, deviceType string, |
Mahir Gunyel | 6deaa24 | 2019-06-27 04:53:33 -0700 | [diff] [blame] | 753 | channelId int64, vendorId string, serialNumber string, onuId int64) (*voltha.Device, error) { |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 754 | log.Debugw("childDeviceDetected", log.Fields{"parentDeviceId": parentDeviceId}) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 755 | |
| 756 | // Create the ONU device |
| 757 | childDevice := &voltha.Device{} |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 758 | childDevice.Type = deviceType |
| 759 | childDevice.ParentId = parentDeviceId |
| 760 | childDevice.ParentPortNo = uint32(parentPortNo) |
Matt Jeanneret | 4e24195 | 2019-02-28 11:16:04 -0500 | [diff] [blame] | 761 | childDevice.VendorId = vendorId |
| 762 | childDevice.SerialNumber = serialNumber |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 763 | childDevice.Root = false |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 764 | |
| 765 | //Get parent device type |
| 766 | parent, err := dMgr.GetDevice(parentDeviceId) |
| 767 | if err != nil { |
khenaidoo | 43c8212 | 2018-11-22 18:38:28 -0500 | [diff] [blame] | 768 | log.Error("no-parent-found", log.Fields{"parentId": parentDeviceId}) |
Mahir Gunyel | 6deaa24 | 2019-06-27 04:53:33 -0700 | [diff] [blame] | 769 | return nil, status.Errorf(codes.NotFound, "%s", parentDeviceId) |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 770 | } |
| 771 | |
Mahir Gunyel | 6deaa24 | 2019-06-27 04:53:33 -0700 | [diff] [blame] | 772 | if device, err := dMgr.GetChildDevice(parentDeviceId, serialNumber, onuId, parentPortNo); err == nil { |
Matt Jeanneret | 4e24195 | 2019-02-28 11:16:04 -0500 | [diff] [blame] | 773 | log.Warnw("child-device-exists", log.Fields{"parentId": parentDeviceId, "serialNumber": serialNumber}) |
Mahir Gunyel | 6deaa24 | 2019-06-27 04:53:33 -0700 | [diff] [blame] | 774 | return device, status.Errorf(codes.AlreadyExists, "%s", serialNumber) |
Matt Jeanneret | 4e24195 | 2019-02-28 11:16:04 -0500 | [diff] [blame] | 775 | } |
| 776 | |
| 777 | childDevice.ProxyAddress = &voltha.Device_ProxyAddress{DeviceId: parentDeviceId, DeviceType: parent.Type, ChannelId: uint32(channelId), OnuId: uint32(onuId)} |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 778 | |
| 779 | // Create and start a device agent for that device |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 780 | agent := newDeviceAgent(dMgr.adapterProxy, childDevice, dMgr, dMgr.clusterDataProxy, dMgr.defaultTimeout) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 781 | dMgr.addDeviceAgentToMap(agent) |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 782 | agent.start(nil, false) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 783 | |
| 784 | // Activate the child device |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 785 | if agent := dMgr.getDeviceAgent(agent.deviceId); agent != nil { |
khenaidoo | 7923270 | 2018-12-04 11:00:41 -0500 | [diff] [blame] | 786 | go agent.enableDevice(nil) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 787 | } |
| 788 | |
khenaidoo | 7923270 | 2018-12-04 11:00:41 -0500 | [diff] [blame] | 789 | // Publish on the messaging bus that we have discovered new devices |
khenaidoo | 1937407 | 2018-12-11 11:05:15 -0500 | [diff] [blame] | 790 | go dMgr.kafkaICProxy.DeviceDiscovered(agent.deviceId, deviceType, parentDeviceId, dMgr.coreInstanceId) |
khenaidoo | 7923270 | 2018-12-04 11:00:41 -0500 | [diff] [blame] | 791 | |
Mahir Gunyel | 6deaa24 | 2019-06-27 04:53:33 -0700 | [diff] [blame] | 792 | return agent.lastData, nil |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 793 | } |
| 794 | |
| 795 | func (dMgr *DeviceManager) processTransition(previous *voltha.Device, current *voltha.Device) error { |
| 796 | // This will be triggered on every update to the device. |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 797 | handlers := dMgr.stateTransitions.GetTransitionHandler(previous, current) |
| 798 | if handlers == nil { |
khenaidoo | 43c8212 | 2018-11-22 18:38:28 -0500 | [diff] [blame] | 799 | log.Debugw("no-op-transition", log.Fields{"deviceId": current.Id}) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 800 | return nil |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 801 | } |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 802 | log.Debugw("handler-found", log.Fields{"num-handlers": len(handlers), "isParent": current.Root, "current-data": current}) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 803 | for _, handler := range handlers { |
| 804 | log.Debugw("running-handler", log.Fields{"handler": funcName(handler)}) |
| 805 | if err := handler(current); err != nil { |
khenaidoo | 6d62c00 | 2019-05-15 21:57:03 -0400 | [diff] [blame] | 806 | log.Warnw("handler-failed", log.Fields{"handler": funcName(handler), "error": err}) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 807 | return err |
| 808 | } |
| 809 | } |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 810 | return nil |
| 811 | } |
| 812 | |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 813 | func (dMgr *DeviceManager) packetOut(deviceId string, outPort uint32, packet *ofp.OfpPacketOut) error { |
| 814 | log.Debugw("packetOut", log.Fields{"deviceId": deviceId, "outPort": outPort}) |
| 815 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
| 816 | return agent.packetOut(outPort, packet) |
| 817 | } |
| 818 | return status.Errorf(codes.NotFound, "%s", deviceId) |
| 819 | } |
| 820 | |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 821 | func (dMgr *DeviceManager) PacketIn(deviceId string, port uint32, transactionId string, packet []byte) error { |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 822 | log.Debugw("PacketIn", log.Fields{"deviceId": deviceId, "port": port}) |
| 823 | // Get the logical device Id based on the deviceId |
| 824 | var device *voltha.Device |
| 825 | var err error |
| 826 | if device, err = dMgr.GetDevice(deviceId); err != nil { |
| 827 | log.Errorw("device-not-found", log.Fields{"deviceId": deviceId}) |
| 828 | return err |
| 829 | } |
khenaidoo | 43c8212 | 2018-11-22 18:38:28 -0500 | [diff] [blame] | 830 | if !device.Root { |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 831 | log.Errorw("device-not-root", log.Fields{"deviceId": deviceId}) |
| 832 | return status.Errorf(codes.FailedPrecondition, "%s", deviceId) |
| 833 | } |
| 834 | |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 835 | if err := dMgr.logicalDeviceMgr.packetIn(device.ParentId, port, transactionId, packet); err != nil { |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 836 | return err |
| 837 | } |
| 838 | return nil |
| 839 | } |
| 840 | |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 841 | func (dMgr *DeviceManager) CreateLogicalDevice(cDevice *voltha.Device) error { |
| 842 | log.Info("CreateLogicalDevice") |
khenaidoo | 59ef7be | 2019-06-21 12:40:28 -0400 | [diff] [blame] | 843 | // Verify whether the logical device has already been created |
| 844 | if cDevice.ParentId != "" { |
| 845 | log.Debugw("Parent device already exist.", log.Fields{"deviceId": cDevice.Id, "logicalDeviceId": cDevice.Id}) |
| 846 | return nil |
| 847 | } |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 848 | var logicalId *string |
| 849 | var err error |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 850 | if logicalId, err = dMgr.logicalDeviceMgr.createLogicalDevice(nil, cDevice); err != nil { |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 851 | log.Warnw("createlogical-device-error", log.Fields{"device": cDevice}) |
| 852 | return err |
| 853 | } |
| 854 | // Update the parent device with the logical id |
| 855 | dMgr.UpdateDeviceAttribute(cDevice.Id, "ParentId", *logicalId) |
| 856 | return nil |
| 857 | } |
| 858 | |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 859 | func (dMgr *DeviceManager) DeleteLogicalDevice(cDevice *voltha.Device) error { |
| 860 | log.Info("DeleteLogicalDevice") |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 861 | var err error |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 862 | if err = dMgr.logicalDeviceMgr.deleteLogicalDevice(nil, cDevice); err != nil { |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 863 | log.Warnw("deleteLogical-device-error", log.Fields{"deviceId": cDevice.Id}) |
| 864 | return err |
| 865 | } |
| 866 | // Remove the logical device Id from the parent device |
| 867 | logicalId := "" |
| 868 | dMgr.UpdateDeviceAttribute(cDevice.Id, "ParentId", logicalId) |
| 869 | return nil |
| 870 | } |
| 871 | |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 872 | func (dMgr *DeviceManager) DeleteLogicalPort(device *voltha.Device) error { |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 873 | log.Info("deleteLogicalPort") |
| 874 | var err error |
khenaidoo | 19d7b63 | 2018-10-30 10:49:50 -0400 | [diff] [blame] | 875 | // Get the logical port associated with this device |
| 876 | var lPortId *voltha.LogicalPortId |
| 877 | if lPortId, err = dMgr.logicalDeviceMgr.getLogicalPortId(device); err != nil { |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 878 | log.Warnw("getLogical-port-error", log.Fields{"deviceId": device.Id, "error": err}) |
khenaidoo | 19d7b63 | 2018-10-30 10:49:50 -0400 | [diff] [blame] | 879 | return err |
| 880 | } |
| 881 | if err = dMgr.logicalDeviceMgr.deleteLogicalPort(nil, lPortId); err != nil { |
| 882 | log.Warnw("deleteLogical-port-error", log.Fields{"deviceId": device.Id}) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 883 | return err |
| 884 | } |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 885 | return nil |
| 886 | } |
| 887 | |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 888 | func (dMgr *DeviceManager) DeleteLogicalPorts(device *voltha.Device) error { |
| 889 | log.Info("deleteLogicalPorts") |
| 890 | if err := dMgr.logicalDeviceMgr.deleteLogicalPorts(device.Id); err != nil { |
| 891 | log.Warnw("deleteLogical-ports-error", log.Fields{"deviceId": device.Id}) |
| 892 | return err |
| 893 | } |
| 894 | return nil |
| 895 | } |
| 896 | |
khenaidoo | 59ef7be | 2019-06-21 12:40:28 -0400 | [diff] [blame] | 897 | func (dMgr *DeviceManager) MarkChildDevicesAsUnReachable(device *voltha.Device) error { |
| 898 | log.Info("MarkChildDevicesAsUnReachable") |
| 899 | // Set the connection status to unreachable |
| 900 | connStatus := voltha.ConnectStatus_UNREACHABLE |
| 901 | // Do not set the operational status. Setting it to -1 will do the trick |
| 902 | operStatus := voltha.OperStatus_OperStatus(-1) |
| 903 | if err := dMgr.updateChildrenStatus(device.Id, operStatus, connStatus); err != nil { |
| 904 | log.Warnw("deleteLogical-ports-error", log.Fields{"deviceId": device.Id}) |
| 905 | return err |
| 906 | } |
| 907 | return nil |
| 908 | } |
| 909 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 910 | func (dMgr *DeviceManager) getParentDevice(childDevice *voltha.Device) *voltha.Device { |
| 911 | // Sanity check |
| 912 | if childDevice.Root { |
| 913 | // childDevice is the parent device |
| 914 | return childDevice |
| 915 | } |
khenaidoo | 19d7b63 | 2018-10-30 10:49:50 -0400 | [diff] [blame] | 916 | parentDevice, _ := dMgr.GetDevice(childDevice.ParentId) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 917 | return parentDevice |
| 918 | } |
| 919 | |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 920 | //childDevicesLost is invoked by an adapter to indicate that a parent device is in a state (Disabled) where it |
| 921 | //cannot manage the child devices. This will trigger the Core to disable all the child devices. |
| 922 | func (dMgr *DeviceManager) childDevicesLost(parentDeviceId string) error { |
| 923 | log.Debug("childDevicesLost") |
| 924 | var err error |
| 925 | var parentDevice *voltha.Device |
| 926 | if parentDevice, err = dMgr.GetDevice(parentDeviceId); err != nil { |
| 927 | log.Warnw("failed-getting-device", log.Fields{"deviceId": parentDeviceId, "error": err}) |
| 928 | return err |
| 929 | } |
| 930 | return dMgr.DisableAllChildDevices(parentDevice) |
| 931 | } |
| 932 | |
| 933 | //childDevicesDetected is invoked by an adapter when child devices are found, typically after after a |
| 934 | // disable/enable sequence. This will trigger the Core to Enable all the child devices of that parent. |
| 935 | func (dMgr *DeviceManager) childDevicesDetected(parentDeviceId string) error { |
| 936 | log.Debug("childDevicesDetected") |
| 937 | var err error |
| 938 | var parentDevice *voltha.Device |
| 939 | var childDeviceIds []string |
| 940 | |
| 941 | if parentDevice, err = dMgr.GetDevice(parentDeviceId); err != nil { |
| 942 | log.Warnw("failed-getting-device", log.Fields{"deviceId": parentDeviceId, "error": err}) |
| 943 | return err |
| 944 | } |
| 945 | |
| 946 | if childDeviceIds, err = dMgr.getAllChildDeviceIds(parentDevice); err != nil { |
| 947 | return status.Errorf(codes.NotFound, "%s", parentDevice.Id) |
| 948 | } |
| 949 | if len(childDeviceIds) == 0 { |
| 950 | log.Debugw("no-child-device", log.Fields{"parentDeviceId": parentDevice.Id}) |
| 951 | } |
khenaidoo | 59ef7be | 2019-06-21 12:40:28 -0400 | [diff] [blame] | 952 | allChildEnableRequestSent := true |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 953 | for _, childDeviceId := range childDeviceIds { |
| 954 | if agent := dMgr.getDeviceAgent(childDeviceId); agent != nil { |
khenaidoo | 59ef7be | 2019-06-21 12:40:28 -0400 | [diff] [blame] | 955 | // Run the children re-registration in its own routine |
| 956 | go agent.enableDevice(nil) |
| 957 | } else { |
| 958 | err = status.Errorf(codes.Unavailable, "no agent for child device %s", childDeviceId) |
| 959 | log.Errorw("no-child-device-agent", log.Fields{"parentDeviceId": parentDevice.Id, "childId": childDeviceId}) |
| 960 | allChildEnableRequestSent = false |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 961 | } |
| 962 | } |
khenaidoo | 59ef7be | 2019-06-21 12:40:28 -0400 | [diff] [blame] | 963 | if !allChildEnableRequestSent { |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 964 | return err |
| 965 | } |
| 966 | return nil |
| 967 | } |
| 968 | |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 969 | /* |
| 970 | All the functions below are callback functions where they are invoked with the latest and previous data. We can |
| 971 | therefore use the data as is without trying to get the latest from the model. |
| 972 | */ |
| 973 | |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 974 | //DisableAllChildDevices is invoked as a callback when the parent device is disabled |
| 975 | func (dMgr *DeviceManager) DisableAllChildDevices(parentDevice *voltha.Device) error { |
| 976 | log.Debug("DisableAllChildDevices") |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 977 | var childDeviceIds []string |
| 978 | var err error |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 979 | if childDeviceIds, err = dMgr.getAllChildDeviceIds(parentDevice); err != nil { |
| 980 | return status.Errorf(codes.NotFound, "%s", parentDevice.Id) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 981 | } |
| 982 | if len(childDeviceIds) == 0 { |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 983 | log.Debugw("no-child-device", log.Fields{"parentDeviceId": parentDevice.Id}) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 984 | } |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 985 | allChildDisable := true |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 986 | for _, childDeviceId := range childDeviceIds { |
| 987 | if agent := dMgr.getDeviceAgent(childDeviceId); agent != nil { |
| 988 | if err = agent.disableDevice(nil); err != nil { |
| 989 | log.Errorw("failure-disable-device", log.Fields{"deviceId": childDeviceId, "error": err.Error()}) |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 990 | allChildDisable = false |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 991 | } |
| 992 | } |
| 993 | } |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 994 | if !allChildDisable { |
| 995 | return err |
| 996 | } |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 997 | return nil |
| 998 | } |
| 999 | |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 1000 | //DeleteAllChildDevices is invoked as a callback when the parent device is deleted |
| 1001 | func (dMgr *DeviceManager) DeleteAllChildDevices(parentDevice *voltha.Device) error { |
| 1002 | log.Debug("DeleteAllChildDevices") |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 1003 | var childDeviceIds []string |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 1004 | var err error |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 1005 | if childDeviceIds, err = dMgr.getAllChildDeviceIds(parentDevice); err != nil { |
| 1006 | return status.Errorf(codes.NotFound, "%s", parentDevice.Id) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 1007 | } |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 1008 | if len(childDeviceIds) == 0 { |
| 1009 | log.Debugw("no-child-device", log.Fields{"parentDeviceId": parentDevice.Id}) |
| 1010 | } |
| 1011 | allChildDeleted := true |
| 1012 | for _, childDeviceId := range childDeviceIds { |
| 1013 | if agent := dMgr.getDeviceAgent(childDeviceId); agent != nil { |
| 1014 | if err = agent.deleteDevice(nil); err != nil { |
| 1015 | log.Errorw("failure-delete-device", log.Fields{"deviceId": childDeviceId, "error": err.Error()}) |
| 1016 | allChildDeleted = false |
| 1017 | } else { |
| 1018 | agent.stop(nil) |
| 1019 | dMgr.deleteDeviceAgentToMap(agent) |
| 1020 | } |
| 1021 | } |
| 1022 | } |
| 1023 | if !allChildDeleted { |
| 1024 | return err |
| 1025 | } |
| 1026 | return nil |
| 1027 | } |
| 1028 | |
khenaidoo | 6d62c00 | 2019-05-15 21:57:03 -0400 | [diff] [blame] | 1029 | //getAllDeviceIdsWithDeviceParentId returns the list of device Ids which has id as parent Id. This function uses the |
| 1030 | // data from the agent instead of using the data from the parent device as that data would disappear from a parent |
| 1031 | // device during a delete device operation. |
| 1032 | func (dMgr *DeviceManager) getAllDeviceIdsWithDeviceParentId(id string) []string { |
| 1033 | log.Debugw("getAllAgentsWithDeviceParentId", log.Fields{"parentDeviceId": id}) |
| 1034 | deviceIds := make([]string, 0) |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 1035 | dMgr.deviceAgents.Range(func(key, value interface{}) bool { |
| 1036 | agent := value.(*DeviceAgent) |
khenaidoo | 6d62c00 | 2019-05-15 21:57:03 -0400 | [diff] [blame] | 1037 | if agent.parentId == id { |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 1038 | deviceIds = append(deviceIds, key.(string)) |
khenaidoo | 6d62c00 | 2019-05-15 21:57:03 -0400 | [diff] [blame] | 1039 | } |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 1040 | return true |
| 1041 | }) |
khenaidoo | 6d62c00 | 2019-05-15 21:57:03 -0400 | [diff] [blame] | 1042 | return deviceIds |
| 1043 | } |
| 1044 | |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 1045 | //getAllChildDeviceIds is a helper method to get all the child device IDs from the device passed as parameter |
| 1046 | func (dMgr *DeviceManager) getAllChildDeviceIds(parentDevice *voltha.Device) ([]string, error) { |
| 1047 | log.Debugw("getAllChildDeviceIds", log.Fields{"parentDeviceId": parentDevice.Id}) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 1048 | childDeviceIds := make([]string, 0) |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 1049 | if parentDevice != nil { |
| 1050 | for _, port := range parentDevice.Ports { |
| 1051 | for _, peer := range port.Peers { |
| 1052 | childDeviceIds = append(childDeviceIds, peer.DeviceId) |
| 1053 | } |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 1054 | } |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 1055 | log.Debugw("returning-getAllChildDeviceIds", log.Fields{"parentDeviceId": parentDevice.Id, "childDeviceIds": childDeviceIds}) |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 1056 | } |
| 1057 | return childDeviceIds, nil |
| 1058 | } |
| 1059 | |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 1060 | //getAllChildDevices is a helper method to get all the child device IDs from the device passed as parameter |
| 1061 | func (dMgr *DeviceManager) getAllChildDevices(parentDeviceId string) (*voltha.Devices, error) { |
| 1062 | log.Debugw("getAllChildDevices", log.Fields{"parentDeviceId": parentDeviceId}) |
| 1063 | if parentDevice, err := dMgr.GetDevice(parentDeviceId); err == nil { |
| 1064 | childDevices := make([]*voltha.Device, 0) |
| 1065 | if childDeviceIds, er := dMgr.getAllChildDeviceIds(parentDevice); er == nil { |
| 1066 | for _, deviceId := range childDeviceIds { |
| 1067 | if d, e := dMgr.GetDevice(deviceId); e == nil && d != nil { |
| 1068 | childDevices = append(childDevices, d) |
| 1069 | } |
| 1070 | } |
| 1071 | } |
| 1072 | return &voltha.Devices{Items: childDevices}, nil |
| 1073 | } |
| 1074 | return nil, status.Errorf(codes.NotFound, "%s", parentDeviceId) |
| 1075 | } |
| 1076 | |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 1077 | func (dMgr *DeviceManager) SetupUNILogicalPorts(cDevice *voltha.Device) error { |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1078 | log.Info("addUNILogicalPort") |
khenaidoo | fc1314d | 2019-03-14 09:34:21 -0400 | [diff] [blame] | 1079 | if err := dMgr.logicalDeviceMgr.setupUNILogicalPorts(nil, cDevice); err != nil { |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1080 | log.Warnw("addUNILogicalPort-error", log.Fields{"device": cDevice, "err": err}) |
| 1081 | return err |
| 1082 | } |
| 1083 | return nil |
| 1084 | } |
| 1085 | |
khenaidoo | f5a5bfa | 2019-01-23 22:20:29 -0500 | [diff] [blame] | 1086 | func (dMgr *DeviceManager) downloadImage(ctx context.Context, img *voltha.ImageDownload, ch chan interface{}) { |
| 1087 | log.Debugw("downloadImage", log.Fields{"deviceid": img.Id, "imageName": img.Name}) |
| 1088 | var res interface{} |
| 1089 | var err error |
| 1090 | if agent := dMgr.getDeviceAgent(img.Id); agent != nil { |
| 1091 | if res, err = agent.downloadImage(ctx, img); err != nil { |
| 1092 | log.Debugw("downloadImage-failed", log.Fields{"err": err, "imageName": img.Name}) |
| 1093 | res = err |
| 1094 | } |
| 1095 | } else { |
| 1096 | res = status.Errorf(codes.NotFound, "%s", img.Id) |
| 1097 | } |
| 1098 | sendResponse(ctx, ch, res) |
| 1099 | } |
| 1100 | |
| 1101 | func (dMgr *DeviceManager) cancelImageDownload(ctx context.Context, img *voltha.ImageDownload, ch chan interface{}) { |
| 1102 | log.Debugw("cancelImageDownload", log.Fields{"deviceid": img.Id, "imageName": img.Name}) |
| 1103 | var res interface{} |
| 1104 | var err error |
| 1105 | if agent := dMgr.getDeviceAgent(img.Id); agent != nil { |
| 1106 | if res, err = agent.cancelImageDownload(ctx, img); err != nil { |
| 1107 | log.Debugw("cancelImageDownload-failed", log.Fields{"err": err, "imageName": img.Name}) |
| 1108 | res = err |
| 1109 | } |
| 1110 | } else { |
| 1111 | res = status.Errorf(codes.NotFound, "%s", img.Id) |
| 1112 | } |
| 1113 | sendResponse(ctx, ch, res) |
| 1114 | } |
| 1115 | |
| 1116 | func (dMgr *DeviceManager) activateImage(ctx context.Context, img *voltha.ImageDownload, ch chan interface{}) { |
| 1117 | log.Debugw("activateImage", log.Fields{"deviceid": img.Id, "imageName": img.Name}) |
| 1118 | var res interface{} |
| 1119 | var err error |
| 1120 | if agent := dMgr.getDeviceAgent(img.Id); agent != nil { |
| 1121 | if res, err = agent.activateImage(ctx, img); err != nil { |
| 1122 | log.Debugw("activateImage-failed", log.Fields{"err": err, "imageName": img.Name}) |
| 1123 | res = err |
| 1124 | } |
| 1125 | } else { |
| 1126 | res = status.Errorf(codes.NotFound, "%s", img.Id) |
| 1127 | } |
| 1128 | sendResponse(ctx, ch, res) |
| 1129 | } |
| 1130 | |
| 1131 | func (dMgr *DeviceManager) revertImage(ctx context.Context, img *voltha.ImageDownload, ch chan interface{}) { |
| 1132 | log.Debugw("revertImage", log.Fields{"deviceid": img.Id, "imageName": img.Name}) |
| 1133 | var res interface{} |
| 1134 | var err error |
| 1135 | if agent := dMgr.getDeviceAgent(img.Id); agent != nil { |
| 1136 | if res, err = agent.revertImage(ctx, img); err != nil { |
| 1137 | log.Debugw("revertImage-failed", log.Fields{"err": err, "imageName": img.Name}) |
| 1138 | res = err |
| 1139 | } |
| 1140 | } else { |
| 1141 | res = status.Errorf(codes.NotFound, "%s", img.Id) |
| 1142 | } |
| 1143 | sendResponse(ctx, ch, res) |
| 1144 | } |
| 1145 | |
| 1146 | func (dMgr *DeviceManager) getImageDownloadStatus(ctx context.Context, img *voltha.ImageDownload, ch chan interface{}) { |
| 1147 | log.Debugw("getImageDownloadStatus", log.Fields{"deviceid": img.Id, "imageName": img.Name}) |
| 1148 | var res interface{} |
| 1149 | var err error |
| 1150 | if agent := dMgr.getDeviceAgent(img.Id); agent != nil { |
| 1151 | if res, err = agent.getImageDownloadStatus(ctx, img); err != nil { |
| 1152 | log.Debugw("getImageDownloadStatus-failed", log.Fields{"err": err, "imageName": img.Name}) |
| 1153 | res = err |
| 1154 | } |
| 1155 | } else { |
| 1156 | res = status.Errorf(codes.NotFound, "%s", img.Id) |
| 1157 | } |
| 1158 | sendResponse(ctx, ch, res) |
| 1159 | } |
| 1160 | |
khenaidoo | f5a5bfa | 2019-01-23 22:20:29 -0500 | [diff] [blame] | 1161 | func (dMgr *DeviceManager) updateImageDownload(deviceId string, img *voltha.ImageDownload) error { |
| 1162 | log.Debugw("updateImageDownload", log.Fields{"deviceid": img.Id, "imageName": img.Name}) |
| 1163 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
| 1164 | if err := agent.updateImageDownload(img); err != nil { |
| 1165 | log.Debugw("updateImageDownload-failed", log.Fields{"err": err, "imageName": img.Name}) |
| 1166 | return err |
| 1167 | } |
| 1168 | } else { |
| 1169 | return status.Errorf(codes.NotFound, "%s", img.Id) |
| 1170 | } |
| 1171 | return nil |
| 1172 | } |
| 1173 | |
| 1174 | func (dMgr *DeviceManager) getImageDownload(ctx context.Context, img *voltha.ImageDownload) (*voltha.ImageDownload, error) { |
| 1175 | log.Debugw("getImageDownload", log.Fields{"deviceid": img.Id, "imageName": img.Name}) |
| 1176 | if agent := dMgr.getDeviceAgent(img.Id); agent != nil { |
| 1177 | return agent.getImageDownload(ctx, img) |
| 1178 | } |
| 1179 | return nil, status.Errorf(codes.NotFound, "%s", img.Id) |
| 1180 | } |
| 1181 | |
| 1182 | func (dMgr *DeviceManager) listImageDownloads(ctx context.Context, deviceId string) (*voltha.ImageDownloads, error) { |
| 1183 | log.Debugw("listImageDownloads", log.Fields{"deviceId": deviceId}) |
| 1184 | if agent := dMgr.getDeviceAgent(deviceId); agent != nil { |
| 1185 | return agent.listImageDownloads(ctx, deviceId) |
| 1186 | } |
| 1187 | return nil, status.Errorf(codes.NotFound, "%s", deviceId) |
| 1188 | } |
| 1189 | |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 1190 | func (dMgr *DeviceManager) SetAdminStateToEnable(cDevice *voltha.Device) error { |
| 1191 | log.Info("SetAdminStateToEnable") |
| 1192 | if agent := dMgr.getDeviceAgent(cDevice.Id); agent != nil { |
| 1193 | return agent.updateAdminState(voltha.AdminState_ENABLED) |
| 1194 | } |
| 1195 | return status.Errorf(codes.NotFound, "%s", cDevice.Id) |
| 1196 | } |
| 1197 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 1198 | func (dMgr *DeviceManager) activateDevice(cDevice *voltha.Device) error { |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1199 | log.Info("activateDevice") |
| 1200 | return nil |
| 1201 | } |
| 1202 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 1203 | func (dMgr *DeviceManager) disableDeviceHandler(cDevice *voltha.Device) error { |
| 1204 | log.Info("disableDevice-donothing") |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1205 | return nil |
| 1206 | } |
| 1207 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 1208 | func (dMgr *DeviceManager) abandonDevice(cDevice *voltha.Device) error { |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1209 | log.Info("abandonDevice") |
| 1210 | return nil |
| 1211 | } |
| 1212 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 1213 | func (dMgr *DeviceManager) reEnableDevice(cDevice *voltha.Device) error { |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1214 | log.Info("reEnableDevice") |
| 1215 | return nil |
| 1216 | } |
| 1217 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 1218 | func (dMgr *DeviceManager) noOp(cDevice *voltha.Device) error { |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1219 | log.Info("noOp") |
| 1220 | return nil |
| 1221 | } |
| 1222 | |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 1223 | func (dMgr *DeviceManager) notAllowed(pcDevice *voltha.Device) error { |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1224 | log.Info("notAllowed") |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 1225 | return errors.New("transition-not-allowed") |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1226 | } |
| 1227 | |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 1228 | func (dMgr *DeviceManager) NotifyInvalidTransition(pcDevice *voltha.Device) error { |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 1229 | log.Errorw("NotifyInvalidTransition", log.Fields{ |
| 1230 | "device": pcDevice.Id, |
| 1231 | "adminState": pcDevice.AdminState, |
| 1232 | "operState": pcDevice.OperStatus, |
| 1233 | "connState": pcDevice.ConnectStatus, |
| 1234 | }) |
khenaidoo | 0a822f9 | 2019-05-08 15:15:57 -0400 | [diff] [blame] | 1235 | //TODO: notify over kafka? |
| 1236 | return nil |
| 1237 | } |
| 1238 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1239 | func funcName(f interface{}) string { |
| 1240 | p := reflect.ValueOf(f).Pointer() |
| 1241 | rf := runtime.FuncForPC(p) |
| 1242 | return rf.Name() |
| 1243 | } |
| 1244 | |
| 1245 | func (dMgr *DeviceManager) UpdateDeviceAttribute(deviceId string, attribute string, value interface{}) { |
Stephane Barbarie | ef6650d | 2019-07-18 12:15:09 -0400 | [diff] [blame] | 1246 | if agent, ok := dMgr.deviceAgents.Load(deviceId); ok { |
| 1247 | agent.(*DeviceAgent).updateDeviceAttribute(attribute, value) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1248 | } |
| 1249 | } |
| 1250 | |
| 1251 | func (dMgr *DeviceManager) GetParentDeviceId(deviceId string) *string { |
khenaidoo | 19d7b63 | 2018-10-30 10:49:50 -0400 | [diff] [blame] | 1252 | if device, _ := dMgr.GetDevice(deviceId); device != nil { |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 1253 | log.Infow("GetParentDeviceId", log.Fields{"deviceId": device.Id, "parentId": device.ParentId}) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1254 | return &device.ParentId |
| 1255 | } |
| 1256 | return nil |
| 1257 | } |
serkant.uluderya | 334479d | 2019-04-10 08:26:15 -0700 | [diff] [blame] | 1258 | |
| 1259 | func (dMgr *DeviceManager) simulateAlarm(ctx context.Context, simulatereq *voltha.SimulateAlarmRequest, ch chan interface{}) { |
| 1260 | log.Debugw("simulateAlarm", log.Fields{"id": simulatereq.Id, "Indicator": simulatereq.Indicator, "IntfId": simulatereq.IntfId, |
| 1261 | "PortTypeName": simulatereq.PortTypeName, "OnuDeviceId": simulatereq.OnuDeviceId, "InverseBitErrorRate": simulatereq.InverseBitErrorRate, |
| 1262 | "Drift": simulatereq.Drift, "NewEqd": simulatereq.NewEqd, "OnuSerialNumber": simulatereq.OnuSerialNumber, "Operation": simulatereq.Operation}) |
| 1263 | var res interface{} |
| 1264 | if agent := dMgr.getDeviceAgent(simulatereq.Id); agent != nil { |
| 1265 | res = agent.simulateAlarm(ctx, simulatereq) |
| 1266 | log.Debugw("SimulateAlarm-result", log.Fields{"result": res}) |
| 1267 | } |
| 1268 | //TODO CLI always get successful response |
| 1269 | sendResponse(ctx, ch, res) |
| 1270 | } |