Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 1 | /* |
Joey Armstrong | 11f5a57 | 2024-01-12 19:11:32 -0500 | [diff] [blame] | 2 | * Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 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 | */ |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 16 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 17 | // Package core provides the utility for olt devices, flows and statistics |
Scott Baker | dbd960e | 2020-02-28 08:57:51 -0800 | [diff] [blame] | 18 | package core |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 19 | |
| 20 | import ( |
| 21 | "context" |
khenaidoo | efff76e | 2021-12-15 16:51:30 -0500 | [diff] [blame] | 22 | "fmt" |
Akash Soni | f49299a | 2024-04-25 12:06:37 +0530 | [diff] [blame] | 23 | "sync" |
| 24 | "time" |
| 25 | |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 26 | "github.com/golang/protobuf/ptypes/empty" |
| 27 | conf "github.com/opencord/voltha-lib-go/v7/pkg/config" |
| 28 | "github.com/opencord/voltha-lib-go/v7/pkg/events/eventif" |
| 29 | vgrpc "github.com/opencord/voltha-lib-go/v7/pkg/grpc" |
| 30 | "github.com/opencord/voltha-lib-go/v7/pkg/log" |
Scott Baker | dbd960e | 2020-02-28 08:57:51 -0800 | [diff] [blame] | 31 | "github.com/opencord/voltha-openolt-adapter/internal/pkg/config" |
Thomas Lee S | 94109f1 | 2020-03-03 16:39:29 +0530 | [diff] [blame] | 32 | "github.com/opencord/voltha-openolt-adapter/internal/pkg/olterrors" |
khenaidoo | efff76e | 2021-12-15 16:51:30 -0500 | [diff] [blame] | 33 | "github.com/opencord/voltha-protos/v5/go/adapter_service" |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 34 | "github.com/opencord/voltha-protos/v5/go/common" |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 35 | ca "github.com/opencord/voltha-protos/v5/go/core_adapter" |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 36 | "github.com/opencord/voltha-protos/v5/go/extension" |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 37 | "github.com/opencord/voltha-protos/v5/go/health" |
| 38 | ia "github.com/opencord/voltha-protos/v5/go/inter_adapter" |
| 39 | "github.com/opencord/voltha-protos/v5/go/omci" |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 40 | "github.com/opencord/voltha-protos/v5/go/voltha" |
nikesh.krishnan | 4d64453 | 2023-12-16 00:21:07 +0530 | [diff] [blame] | 41 | "google.golang.org/grpc/codes" |
| 42 | "google.golang.org/grpc/status" |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 43 | ) |
| 44 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 45 | // OpenOLT structure holds the OLT information |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 46 | type OpenOLT struct { |
Akash Kankanala | 041a212 | 2024-10-16 15:49:22 +0530 | [diff] [blame] | 47 | eventProxy eventif.EventProxy |
Abhilash Laxmeshwar | d0f58cf | 2022-06-01 12:15:19 +0530 | [diff] [blame] | 48 | configManager *conf.ConfigManager |
| 49 | deviceHandlers map[string]*DeviceHandler |
| 50 | coreClient *vgrpc.Client |
Abhilash Laxmeshwar | d0f58cf | 2022-06-01 12:15:19 +0530 | [diff] [blame] | 51 | config *config.AdapterFlags |
Akash Kankanala | 041a212 | 2024-10-16 15:49:22 +0530 | [diff] [blame] | 52 | exitChannel chan struct{} |
Abhilash Laxmeshwar | d0f58cf | 2022-06-01 12:15:19 +0530 | [diff] [blame] | 53 | KVStoreAddress string |
| 54 | KVStoreType string |
Akash Kankanala | 041a212 | 2024-10-16 15:49:22 +0530 | [diff] [blame] | 55 | numOnus int |
Abhilash Laxmeshwar | d0f58cf | 2022-06-01 12:15:19 +0530 | [diff] [blame] | 56 | HeartbeatCheckInterval time.Duration |
| 57 | HeartbeatFailReportInterval time.Duration |
| 58 | GrpcTimeoutInterval time.Duration |
Akash Kankanala | 041a212 | 2024-10-16 15:49:22 +0530 | [diff] [blame] | 59 | rpcTimeout time.Duration |
Abhilash Laxmeshwar | d0f58cf | 2022-06-01 12:15:19 +0530 | [diff] [blame] | 60 | lockDeviceHandlersMap sync.RWMutex |
| 61 | enableONUStats bool |
| 62 | enableGemStats bool |
Abhilash Laxmeshwar | d0f58cf | 2022-06-01 12:15:19 +0530 | [diff] [blame] | 63 | CheckOnuDevExistenceAtOnuDiscovery bool |
Sridhar Ravindra | ab785f2 | 2025-07-21 17:20:55 +0530 | [diff] [blame^] | 64 | ForceOnuDiscIndProcessing bool |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 65 | } |
| 66 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 67 | // NewOpenOLT returns a new instance of OpenOLT |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 68 | func NewOpenOLT(ctx context.Context, |
| 69 | coreClient *vgrpc.Client, |
Himani Chawla | cd40780 | 2020-12-10 12:08:59 +0530 | [diff] [blame] | 70 | eventProxy eventif.EventProxy, cfg *config.AdapterFlags, cm *conf.ConfigManager) *OpenOLT { |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 71 | var openOLT OpenOLT |
khenaidoo | efff76e | 2021-12-15 16:51:30 -0500 | [diff] [blame] | 72 | openOLT.exitChannel = make(chan struct{}) |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 73 | openOLT.deviceHandlers = make(map[string]*DeviceHandler) |
Abhilash Laxmeshwar | f9942e9 | 2020-01-07 15:32:44 +0530 | [diff] [blame] | 74 | openOLT.config = cfg |
| 75 | openOLT.numOnus = cfg.OnuNumber |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 76 | openOLT.coreClient = coreClient |
Devmalya Paul | fb990a5 | 2019-07-09 10:01:49 -0400 | [diff] [blame] | 77 | openOLT.eventProxy = eventProxy |
Neha Sharma | 3f221ae | 2020-04-29 19:02:12 +0000 | [diff] [blame] | 78 | openOLT.KVStoreAddress = cfg.KVStoreAddress |
Abhilash Laxmeshwar | f9942e9 | 2020-01-07 15:32:44 +0530 | [diff] [blame] | 79 | openOLT.KVStoreType = cfg.KVStoreType |
| 80 | openOLT.HeartbeatCheckInterval = cfg.HeartbeatCheckInterval |
| 81 | openOLT.HeartbeatFailReportInterval = cfg.HeartbeatFailReportInterval |
| 82 | openOLT.GrpcTimeoutInterval = cfg.GrpcTimeoutInterval |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 83 | openOLT.lockDeviceHandlersMap = sync.RWMutex{} |
Matteo Scandolo | dfa7a97 | 2020-11-06 13:03:40 -0800 | [diff] [blame] | 84 | openOLT.configManager = cm |
Gamze Abaka | fcbd6e7 | 2020-12-17 13:25:16 +0000 | [diff] [blame] | 85 | openOLT.enableONUStats = cfg.EnableONUStats |
| 86 | openOLT.enableGemStats = cfg.EnableGEMStats |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 87 | openOLT.rpcTimeout = cfg.RPCTimeout |
Abhilash Laxmeshwar | d0f58cf | 2022-06-01 12:15:19 +0530 | [diff] [blame] | 88 | openOLT.CheckOnuDevExistenceAtOnuDiscovery = cfg.CheckOnuDevExistenceAtOnuDiscovery |
Sridhar Ravindra | ab785f2 | 2025-07-21 17:20:55 +0530 | [diff] [blame^] | 89 | openOLT.ForceOnuDiscIndProcessing = cfg.ForceOnuDiscIndProcessing |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 90 | return &openOLT |
| 91 | } |
| 92 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 93 | // Start starts (logs) the device manager |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 94 | func (oo *OpenOLT) Start(ctx context.Context) error { |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 95 | logger.Info(ctx, "starting-device-manager") |
| 96 | logger.Info(ctx, "device-manager-started") |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 97 | return nil |
| 98 | } |
| 99 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 100 | // Stop terminates the session |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 101 | func (oo *OpenOLT) Stop(ctx context.Context) error { |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 102 | logger.Info(ctx, "stopping-device-manager") |
khenaidoo | efff76e | 2021-12-15 16:51:30 -0500 | [diff] [blame] | 103 | close(oo.exitChannel) |
| 104 | // Stop the device handlers |
| 105 | oo.stopAllDeviceHandlers(ctx) |
| 106 | |
| 107 | // Stop the core grpc client connection |
| 108 | if oo.coreClient != nil { |
| 109 | oo.coreClient.Stop(ctx) |
| 110 | } |
| 111 | |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 112 | logger.Info(ctx, "device-manager-stopped") |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 113 | return nil |
| 114 | } |
| 115 | |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 116 | func (oo *OpenOLT) addDeviceHandlerToMap(agent *DeviceHandler) { |
| 117 | oo.lockDeviceHandlersMap.Lock() |
| 118 | defer oo.lockDeviceHandlersMap.Unlock() |
Thomas Lee S | 985938d | 2020-05-04 11:40:41 +0530 | [diff] [blame] | 119 | if _, exist := oo.deviceHandlers[agent.device.Id]; !exist { |
| 120 | oo.deviceHandlers[agent.device.Id] = agent |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 121 | } |
| 122 | } |
| 123 | |
| 124 | func (oo *OpenOLT) deleteDeviceHandlerToMap(agent *DeviceHandler) { |
| 125 | oo.lockDeviceHandlersMap.Lock() |
| 126 | defer oo.lockDeviceHandlersMap.Unlock() |
Thomas Lee S | 985938d | 2020-05-04 11:40:41 +0530 | [diff] [blame] | 127 | delete(oo.deviceHandlers, agent.device.Id) |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 128 | } |
| 129 | |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 130 | func (oo *OpenOLT) getDeviceHandler(deviceID string) *DeviceHandler { |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 131 | oo.lockDeviceHandlersMap.Lock() |
| 132 | defer oo.lockDeviceHandlersMap.Unlock() |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 133 | if agent, ok := oo.deviceHandlers[deviceID]; ok { |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 134 | return agent |
| 135 | } |
| 136 | return nil |
| 137 | } |
| 138 | |
khenaidoo | efff76e | 2021-12-15 16:51:30 -0500 | [diff] [blame] | 139 | func (oo *OpenOLT) stopAllDeviceHandlers(ctx context.Context) { |
| 140 | oo.lockDeviceHandlersMap.Lock() |
| 141 | defer oo.lockDeviceHandlersMap.Unlock() |
| 142 | for _, handler := range oo.deviceHandlers { |
| 143 | handler.Stop(ctx) |
| 144 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | // AdoptDevice creates a new device handler if not present already and then adopts the device |
| 148 | func (oo *OpenOLT) AdoptDevice(ctx context.Context, device *voltha.Device) (*empty.Empty, error) { |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 149 | if device == nil { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 150 | return nil, olterrors.NewErrInvalidValue(log.Fields{"device": nil}, nil).Log() |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 151 | } |
divyadesai | 3af43e1 | 2020-08-18 07:10:54 +0000 | [diff] [blame] | 152 | logger.Infow(ctx, "adopt-device", log.Fields{"device-id": device.Id}) |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 153 | var handler *DeviceHandler |
| 154 | if handler = oo.getDeviceHandler(device.Id); handler == nil { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 155 | handler := NewDeviceHandler(oo.coreClient, oo.eventProxy, device, oo, oo.configManager, oo.config) |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 156 | oo.addDeviceHandlerToMap(handler) |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 157 | go handler.AdoptDevice(log.WithSpanFromContext(context.Background(), ctx), device) |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 158 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 159 | return &empty.Empty{}, nil |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 160 | } |
| 161 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 162 | // GetOfpDeviceInfo returns OFP information for the given device |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 163 | func (oo *OpenOLT) GetOfpDeviceInfo(ctx context.Context, device *voltha.Device) (*ca.SwitchCapability, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 164 | logger.Infow(ctx, "get_ofp_device_info", log.Fields{"device-id": device.Id}) |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 165 | if handler := oo.getDeviceHandler(device.Id); handler != nil { |
| 166 | return handler.GetOfpDeviceInfo(device) |
| 167 | } |
Girish Kumar | f26e488 | 2020-03-05 06:49:10 +0000 | [diff] [blame] | 168 | return nil, olterrors.NewErrNotFound("device-handler", log.Fields{"device-id": device.Id}, nil) |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 169 | } |
| 170 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 171 | // ReconcileDevice unimplemented |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 172 | func (oo *OpenOLT) ReconcileDevice(ctx context.Context, device *voltha.Device) (*empty.Empty, error) { |
Abhilash Laxmeshwar | ab0bd52 | 2019-10-21 15:05:15 +0530 | [diff] [blame] | 173 | if device == nil { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 174 | return nil, olterrors.NewErrInvalidValue(log.Fields{"device": nil}, nil) |
Abhilash Laxmeshwar | ab0bd52 | 2019-10-21 15:05:15 +0530 | [diff] [blame] | 175 | } |
divyadesai | 3af43e1 | 2020-08-18 07:10:54 +0000 | [diff] [blame] | 176 | logger.Infow(ctx, "reconcile-device", log.Fields{"device-id": device.Id}) |
Abhilash Laxmeshwar | ab0bd52 | 2019-10-21 15:05:15 +0530 | [diff] [blame] | 177 | var handler *DeviceHandler |
| 178 | if handler = oo.getDeviceHandler(device.Id); handler == nil { |
Maninder | e49938d | 2021-03-19 00:23:24 +0530 | [diff] [blame] | 179 | //Setting state to RECONCILING |
Nandita Biradar | 1b590f1 | 2024-09-27 10:56:28 +0530 | [diff] [blame] | 180 | // Fetch previous state |
| 181 | //here we are fetching the previous operation states of the device,so to check which operation state it was previously for proper transition and proper clean up of the resources. |
| 182 | PrevOperStatus := device.OperStatus |
| 183 | |
| 184 | // Log previous state |
| 185 | logger.Infow(ctx, "previous-device-state", log.Fields{ |
| 186 | "device-id": device.Id, |
| 187 | "previous-operStatus": PrevOperStatus, |
| 188 | "Device-connStatus": device.ConnectStatus, |
| 189 | }) |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 190 | cgClient, err := oo.coreClient.GetCoreServiceClient() |
Maninder | e49938d | 2021-03-19 00:23:24 +0530 | [diff] [blame] | 191 | if err != nil { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 192 | return nil, err |
Maninder | e49938d | 2021-03-19 00:23:24 +0530 | [diff] [blame] | 193 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 194 | subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), oo.rpcTimeout) |
| 195 | defer cancel() |
Nandita Biradar | 1b590f1 | 2024-09-27 10:56:28 +0530 | [diff] [blame] | 196 | // Create DeviceStateFilter with new state |
| 197 | deviceStateFilter := &ca.DeviceStateFilter{ |
| 198 | DeviceId: device.Id, |
| 199 | OperStatus: voltha.OperStatus_RECONCILING, |
| 200 | ConnStatus: device.ConnectStatus, |
| 201 | } |
| 202 | |
| 203 | // Log the new state being set |
| 204 | logger.Infow(ctx, "setting-new-device-state", log.Fields{ |
| 205 | "device-id": deviceStateFilter.DeviceId, |
| 206 | "new-operStatus": deviceStateFilter.OperStatus, |
| 207 | "new-connStatus": deviceStateFilter.ConnStatus, |
| 208 | }) |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 209 | if _, err := cgClient.DeviceStateUpdate(subCtx, &ca.DeviceStateFilter{ |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 210 | DeviceId: device.Id, |
| 211 | OperStatus: voltha.OperStatus_RECONCILING, |
Akash Soni | f49299a | 2024-04-25 12:06:37 +0530 | [diff] [blame] | 212 | ConnStatus: voltha.ConnectStatus_UNREACHABLE, |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 213 | }); err != nil { |
| 214 | return nil, olterrors.NewErrAdapter("device-update-failed", log.Fields{"device-id": device.Id}, err) |
| 215 | } |
| 216 | |
Akash Soni | f49299a | 2024-04-25 12:06:37 +0530 | [diff] [blame] | 217 | // The OperState and connection state of the device is set to RECONCILING and UNREACHABLE in the previous section. This also needs to be set on the |
Girish Gowdra | 0fb24a3 | 2021-10-27 15:15:27 -0700 | [diff] [blame] | 218 | // locally cached copy of the device struct. |
| 219 | device.OperStatus = voltha.OperStatus_RECONCILING |
Akash Soni | f49299a | 2024-04-25 12:06:37 +0530 | [diff] [blame] | 220 | device.ConnectStatus = voltha.ConnectStatus_UNREACHABLE |
Girish Gowdra | 0fb24a3 | 2021-10-27 15:15:27 -0700 | [diff] [blame] | 221 | handler := NewDeviceHandler(oo.coreClient, oo.eventProxy, device, oo, oo.configManager, oo.config) |
| 222 | handler.adapterPreviouslyConnected = true |
Nandita Biradar | 1b590f1 | 2024-09-27 10:56:28 +0530 | [diff] [blame] | 223 | handler.prevOperStatus = PrevOperStatus |
Girish Gowdra | 0fb24a3 | 2021-10-27 15:15:27 -0700 | [diff] [blame] | 224 | oo.addDeviceHandlerToMap(handler) |
| 225 | handler.transitionMap = NewTransitionMap(handler) |
| 226 | |
Nandita Biradar | 1b590f1 | 2024-09-27 10:56:28 +0530 | [diff] [blame] | 227 | go handler.transitionMap.Handle(log.WithSpanFromContext(context.Background(), ctx), DeviceInit) |
nikesh.krishnan | 4d64453 | 2023-12-16 00:21:07 +0530 | [diff] [blame] | 228 | } else { |
| 229 | logger.Warnf(ctx, "device-already-reconciled-or-active", log.Fields{"device-id": device.Id}) |
| 230 | return &empty.Empty{}, status.Errorf(codes.AlreadyExists, "handler exists: %s", device.Id) |
Abhilash Laxmeshwar | ab0bd52 | 2019-10-21 15:05:15 +0530 | [diff] [blame] | 231 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 232 | return &empty.Empty{}, nil |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 233 | } |
| 234 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 235 | // DisableDevice disables the given device |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 236 | func (oo *OpenOLT) DisableDevice(ctx context.Context, device *voltha.Device) (*empty.Empty, error) { |
divyadesai | 3af43e1 | 2020-08-18 07:10:54 +0000 | [diff] [blame] | 237 | logger.Infow(ctx, "disable-device", log.Fields{"device-id": device.Id}) |
Girish Gowdru | 5ba46c9 | 2019-04-25 05:00:05 -0400 | [diff] [blame] | 238 | if handler := oo.getDeviceHandler(device.Id); handler != nil { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 239 | if err := handler.DisableDevice(log.WithSpanFromContext(context.Background(), ctx), device); err != nil { |
| 240 | return nil, err |
| 241 | } |
| 242 | return &empty.Empty{}, nil |
Girish Gowdru | 5ba46c9 | 2019-04-25 05:00:05 -0400 | [diff] [blame] | 243 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 244 | return nil, olterrors.NewErrNotFound("device-handler", log.Fields{"device-id": device.Id}, nil) |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 245 | } |
| 246 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 247 | // ReEnableDevice enables the olt device after disable |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 248 | func (oo *OpenOLT) ReEnableDevice(ctx context.Context, device *voltha.Device) (*empty.Empty, error) { |
divyadesai | 3af43e1 | 2020-08-18 07:10:54 +0000 | [diff] [blame] | 249 | logger.Infow(ctx, "reenable-device", log.Fields{"device-id": device.Id}) |
Girish Gowdru | 5ba46c9 | 2019-04-25 05:00:05 -0400 | [diff] [blame] | 250 | if handler := oo.getDeviceHandler(device.Id); handler != nil { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 251 | if err := handler.ReenableDevice(log.WithSpanFromContext(context.Background(), ctx), device); err != nil { |
| 252 | return nil, err |
| 253 | } |
| 254 | return &empty.Empty{}, nil |
Girish Gowdru | 5ba46c9 | 2019-04-25 05:00:05 -0400 | [diff] [blame] | 255 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 256 | return nil, olterrors.NewErrNotFound("device-handler", log.Fields{"device-id": device.Id}, nil) |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 257 | } |
| 258 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 259 | // RebootDevice reboots the given device |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 260 | func (oo *OpenOLT) RebootDevice(ctx context.Context, device *voltha.Device) (*empty.Empty, error) { |
divyadesai | 3af43e1 | 2020-08-18 07:10:54 +0000 | [diff] [blame] | 261 | logger.Infow(ctx, "reboot-device", log.Fields{"device-id": device.Id}) |
Girish Gowdru | 0fe5f7e | 2019-05-28 05:12:27 -0400 | [diff] [blame] | 262 | if handler := oo.getDeviceHandler(device.Id); handler != nil { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 263 | if err := handler.RebootDevice(log.WithSpanFromContext(context.Background(), ctx), device); err != nil { |
| 264 | return nil, err |
| 265 | } |
| 266 | return &empty.Empty{}, nil |
Girish Gowdru | 0fe5f7e | 2019-05-28 05:12:27 -0400 | [diff] [blame] | 267 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 268 | return nil, olterrors.NewErrNotFound("device-handler", log.Fields{"device-id": device.Id}, nil) |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 269 | } |
| 270 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 271 | // DeleteDevice deletes a device |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 272 | func (oo *OpenOLT) DeleteDevice(ctx context.Context, device *voltha.Device) (*empty.Empty, error) { |
divyadesai | 3af43e1 | 2020-08-18 07:10:54 +0000 | [diff] [blame] | 273 | logger.Infow(ctx, "delete-device", log.Fields{"device-id": device.Id}) |
Devmalya Paul | 495b94a | 2019-08-27 19:42:00 -0400 | [diff] [blame] | 274 | if handler := oo.getDeviceHandler(device.Id); handler != nil { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 275 | if err := handler.DeleteDevice(log.WithSpanFromContext(context.Background(), ctx), device); err != nil { |
Gustavo Silva | 41af912 | 2022-10-11 11:05:13 -0300 | [diff] [blame] | 276 | return nil, err |
Devmalya Paul | 495b94a | 2019-08-27 19:42:00 -0400 | [diff] [blame] | 277 | } |
Akash Soni | 5c76e27 | 2024-01-15 04:09:24 +0530 | [diff] [blame] | 278 | // Initialize a ticker with a 2-second interval to periodically check the states |
| 279 | ticker := time.NewTicker(2 * time.Second) |
| 280 | defer ticker.Stop() |
| 281 | |
| 282 | // Set a maximum timeout duration of 30 seconds for the loop |
| 283 | timeout := time.After(30 * time.Second) |
| 284 | |
| 285 | for { |
| 286 | select { |
| 287 | case <-ticker.C: |
| 288 | // Check if all processes have stopped |
| 289 | if !handler.isHeartbeatCheckActive && !handler.isCollectorActive && !handler.isReadIndicationRoutineActive { |
| 290 | logger.Debugf(ctx, "delete-device-handler") |
| 291 | oo.deleteDeviceHandlerToMap(handler) |
| 292 | return &empty.Empty{}, nil |
| 293 | } |
| 294 | case <-timeout: |
| 295 | // Timeout exceeded |
| 296 | logger.Warnw(ctx, "delete-device-handler timeout exceeded", log.Fields{"device-id": device.Id}) |
| 297 | oo.deleteDeviceHandlerToMap(handler) // Clean up anyway |
| 298 | return &empty.Empty{}, nil |
| 299 | } |
| 300 | } |
Devmalya Paul | 495b94a | 2019-08-27 19:42:00 -0400 | [diff] [blame] | 301 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 302 | return nil, olterrors.NewErrNotFound("device-handler", log.Fields{"device-id": device.Id}, nil) |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 303 | } |
| 304 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 305 | // UpdateFlowsIncrementally updates (add/remove) the flows on a given device |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 306 | func (oo *OpenOLT) UpdateFlowsIncrementally(ctx context.Context, incrFlows *ca.IncrementalFlows) (*empty.Empty, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 307 | logger.Infow(ctx, "update_flows_incrementally", log.Fields{"device-id": incrFlows.Device.Id, "flows": incrFlows.Flows, "flowMetadata": incrFlows.FlowMetadata}) |
| 308 | if handler := oo.getDeviceHandler(incrFlows.Device.Id); handler != nil { |
| 309 | if err := handler.UpdateFlowsIncrementally(log.WithSpanFromContext(context.Background(), ctx), incrFlows.Device, incrFlows.Flows, incrFlows.Groups, incrFlows.FlowMetadata); err != nil { |
| 310 | return nil, err |
| 311 | } |
| 312 | return &empty.Empty{}, nil |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 313 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 314 | return nil, olterrors.NewErrNotFound("device-handler", log.Fields{"device-id": incrFlows.Device.Id}, nil) |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 315 | } |
| 316 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 317 | // UpdatePmConfig returns PmConfigs nil or error |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 318 | func (oo *OpenOLT) UpdatePmConfig(ctx context.Context, configs *ca.PmConfigsInfo) (*empty.Empty, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 319 | logger.Debugw(ctx, "update_pm_config", log.Fields{"device-id": configs.DeviceId, "pm-configs": configs.PmConfigs}) |
| 320 | if handler := oo.getDeviceHandler(configs.DeviceId); handler != nil { |
| 321 | handler.UpdatePmConfig(log.WithSpanFromContext(context.Background(), ctx), configs.PmConfigs) |
| 322 | return &empty.Empty{}, nil |
Rohan Agrawal | da5e0b2 | 2020-05-20 11:10:26 +0000 | [diff] [blame] | 323 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 324 | return nil, olterrors.NewErrNotFound("device-handler", log.Fields{"device-id": configs.DeviceId}, nil) |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 325 | } |
| 326 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 327 | // SendPacketOut sends packet out to the device |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 328 | func (oo *OpenOLT) SendPacketOut(ctx context.Context, packet *ca.PacketOut) (*empty.Empty, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 329 | logger.Debugw(ctx, "send_packet_out", log.Fields{"device-id": packet.DeviceId, "egress_port_no": packet.EgressPortNo, "pkt": packet.Packet}) |
| 330 | if handler := oo.getDeviceHandler(packet.DeviceId); handler != nil { |
| 331 | if err := handler.PacketOut(log.WithSpanFromContext(context.Background(), ctx), packet.EgressPortNo, packet.Packet); err != nil { |
| 332 | return nil, err |
| 333 | } |
| 334 | return &empty.Empty{}, nil |
manikkaraj k | 9eb6cac | 2019-05-09 12:32:03 -0400 | [diff] [blame] | 335 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 336 | return nil, olterrors.NewErrNotFound("device-handler", log.Fields{"device-id": packet.DeviceId}, nil) |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 337 | } |
| 338 | |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 339 | // EnablePort to Enable PON/NNI interface |
| 340 | func (oo *OpenOLT) EnablePort(ctx context.Context, port *voltha.Port) (*empty.Empty, error) { |
| 341 | logger.Infow(ctx, "enable_port", log.Fields{"device-id": port.DeviceId, "port": port}) |
| 342 | if err := oo.enableDisablePort(log.WithSpanFromContext(context.Background(), ctx), port.DeviceId, port, true); err != nil { |
| 343 | return nil, err |
| 344 | } |
| 345 | return &empty.Empty{}, nil |
Girish Gowdru | 0c588b2 | 2019-04-23 23:24:56 -0400 | [diff] [blame] | 346 | } |
| 347 | |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 348 | // DisablePort to Disable pon/nni interface |
| 349 | func (oo *OpenOLT) DisablePort(ctx context.Context, port *voltha.Port) (*empty.Empty, error) { |
| 350 | logger.Infow(ctx, "disable_port", log.Fields{"device-id": port.DeviceId, "port": port}) |
| 351 | if err := oo.enableDisablePort(log.WithSpanFromContext(context.Background(), ctx), port.DeviceId, port, false); err != nil { |
| 352 | return nil, err |
| 353 | } |
| 354 | return &empty.Empty{}, nil |
kesavand | 39e0aa3 | 2020-01-28 20:58:50 -0500 | [diff] [blame] | 355 | } |
| 356 | |
| 357 | // enableDisablePort to Disable pon or Enable PON interface |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 358 | func (oo *OpenOLT) enableDisablePort(ctx context.Context, deviceID string, port *voltha.Port, enablePort bool) error { |
divyadesai | 3af43e1 | 2020-08-18 07:10:54 +0000 | [diff] [blame] | 359 | logger.Infow(ctx, "enableDisablePort", log.Fields{"device-id": deviceID, "port": port}) |
kesavand | 39e0aa3 | 2020-01-28 20:58:50 -0500 | [diff] [blame] | 360 | if port == nil { |
Thomas Lee S | 94109f1 | 2020-03-03 16:39:29 +0530 | [diff] [blame] | 361 | return olterrors.NewErrInvalidValue(log.Fields{ |
David K. Bainbridge | 794735f | 2020-02-11 21:01:37 -0800 | [diff] [blame] | 362 | "reason": "port cannot be nil", |
| 363 | "device-id": deviceID, |
Girish Kumar | f26e488 | 2020-03-05 06:49:10 +0000 | [diff] [blame] | 364 | "port": nil}, nil) |
kesavand | 39e0aa3 | 2020-01-28 20:58:50 -0500 | [diff] [blame] | 365 | } |
| 366 | if handler := oo.getDeviceHandler(deviceID); handler != nil { |
divyadesai | 3af43e1 | 2020-08-18 07:10:54 +0000 | [diff] [blame] | 367 | logger.Debugw(ctx, "Enable_Disable_Port", log.Fields{"device-id": deviceID, "port": port}) |
kesavand | 39e0aa3 | 2020-01-28 20:58:50 -0500 | [diff] [blame] | 368 | if enablePort { |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 369 | if err := handler.EnablePort(ctx, port); err != nil { |
divyadesai | 3af43e1 | 2020-08-18 07:10:54 +0000 | [diff] [blame] | 370 | return olterrors.NewErrAdapter("error-occurred-during-enable-port", log.Fields{"device-id": deviceID, "port": port}, err) |
kesavand | 39e0aa3 | 2020-01-28 20:58:50 -0500 | [diff] [blame] | 371 | } |
| 372 | } else { |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 373 | if err := handler.DisablePort(ctx, port); err != nil { |
divyadesai | 3af43e1 | 2020-08-18 07:10:54 +0000 | [diff] [blame] | 374 | return olterrors.NewErrAdapter("error-occurred-during-disable-port", log.Fields{"device-id": deviceID, "port": port}, err) |
kesavand | 39e0aa3 | 2020-01-28 20:58:50 -0500 | [diff] [blame] | 375 | } |
| 376 | } |
| 377 | } |
| 378 | return nil |
| 379 | } |
Chaitrashree G S | 1a55b88 | 2020-02-04 17:35:35 -0500 | [diff] [blame] | 380 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 381 | // ChildDeviceLost deletes the ONU and its references from PONResources |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 382 | func (oo *OpenOLT) ChildDeviceLost(ctx context.Context, childDevice *voltha.Device) (*empty.Empty, error) { |
Girish Gowdra | a087056 | 2021-03-11 14:30:14 -0800 | [diff] [blame] | 383 | logger.Infow(ctx, "Child-device-lost", log.Fields{"parent-device-id": childDevice.ParentId, "child-device-id": childDevice.Id}) |
| 384 | if handler := oo.getDeviceHandler(childDevice.ParentId); handler != nil { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 385 | if err := handler.ChildDeviceLost(log.WithSpanFromContext(context.Background(), ctx), childDevice.ParentPortNo, childDevice.ProxyAddress.OnuId, childDevice.SerialNumber); err != nil { |
| 386 | return nil, err |
| 387 | } |
| 388 | return &empty.Empty{}, nil |
Chaitrashree G S | 1a55b88 | 2020-02-04 17:35:35 -0500 | [diff] [blame] | 389 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 390 | return nil, olterrors.NewErrNotFound("device-handler", log.Fields{"parent-device-id": childDevice.ParentId}, nil).Log() |
Chaitrashree G S | 1a55b88 | 2020-02-04 17:35:35 -0500 | [diff] [blame] | 391 | } |
Scott Baker | 24f83e2 | 2020-03-30 16:14:28 -0700 | [diff] [blame] | 392 | |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 393 | // GetExtValue retrieves a value on a particular ONU |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 394 | func (oo *OpenOLT) GetExtValue(ctx context.Context, extInfo *ca.GetExtValueMessage) (*extension.ReturnValues, error) { |
Dinesh Belwalkar | db587af | 2020-02-27 15:37:16 -0800 | [diff] [blame] | 395 | var err error |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 396 | resp := new(extension.ReturnValues) |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 397 | logger.Infow(ctx, "get_ext_value", log.Fields{"parent-device-id": extInfo.ParentDevice.Id, "onu-id": extInfo.ChildDevice.Id}) |
| 398 | if handler := oo.getDeviceHandler(extInfo.ParentDevice.Id); handler != nil { |
| 399 | if resp, err = handler.getExtValue(ctx, extInfo.ChildDevice, extInfo.ValueType); err != nil { |
| 400 | logger.Errorw(ctx, "error-occurred-during-get-ext-value", |
| 401 | log.Fields{"parent-device-id": extInfo.ParentDevice.Id, "onu-id": extInfo.ChildDevice.Id, "error": err}) |
Dinesh Belwalkar | db587af | 2020-02-27 15:37:16 -0800 | [diff] [blame] | 402 | return nil, err |
| 403 | } |
| 404 | } |
| 405 | return resp, nil |
| 406 | } |
kesavand | 6212621 | 2021-01-12 04:56:06 -0500 | [diff] [blame] | 407 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 408 | // GetSingleValue handles get uni status on ONU and ondemand metric on OLT |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 409 | func (oo *OpenOLT) GetSingleValue(ctx context.Context, request *extension.SingleGetValueRequest) (*extension.SingleGetValueResponse, error) { |
| 410 | logger.Infow(ctx, "single_get_value_request", log.Fields{"request": request}) |
Akash Reddy Kankanala | c6b6ca1 | 2025-06-12 14:26:57 +0530 | [diff] [blame] | 411 | var handler *DeviceHandler |
| 412 | var onuDevice *voltha.Device |
kesavand | 6212621 | 2021-01-12 04:56:06 -0500 | [diff] [blame] | 413 | |
| 414 | errResp := func(status extension.GetValueResponse_Status, |
| 415 | reason extension.GetValueResponse_ErrorReason) *extension.SingleGetValueResponse { |
| 416 | return &extension.SingleGetValueResponse{ |
| 417 | Response: &extension.GetValueResponse{ |
| 418 | Status: status, |
| 419 | ErrReason: reason, |
| 420 | }, |
| 421 | } |
| 422 | } |
Akash Reddy Kankanala | c6b6ca1 | 2025-06-12 14:26:57 +0530 | [diff] [blame] | 423 | |
| 424 | switch request.GetRequest().GetRequest().(type) { |
| 425 | case *extension.GetValueRequest_OnuStatsFromOlt: |
| 426 | handler, onuDevice = oo.GetDeviceHandlerFromChild(ctx, request.TargetId) |
| 427 | default: |
| 428 | handler = oo.getDeviceHandler(request.TargetId) |
| 429 | } |
| 430 | |
| 431 | if handler != nil { |
kesavand | 6212621 | 2021-01-12 04:56:06 -0500 | [diff] [blame] | 432 | switch reqType := request.GetRequest().GetRequest().(type) { |
| 433 | case *extension.GetValueRequest_OltPortInfo: |
| 434 | return handler.getOltPortCounters(ctx, reqType.OltPortInfo), nil |
Himani Chawla | 2c8ae0f | 2021-05-18 23:27:00 +0530 | [diff] [blame] | 435 | case *extension.GetValueRequest_OnuPonInfo: |
| 436 | return handler.getOnuPonCounters(ctx, reqType.OnuPonInfo), nil |
Gamze Abaka | 85e9a14 | 2021-05-26 13:41:39 +0000 | [diff] [blame] | 437 | case *extension.GetValueRequest_RxPower: |
| 438 | return handler.getRxPower(ctx, reqType.RxPower), nil |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 439 | case *extension.GetValueRequest_OltRxPower: |
| 440 | return handler.getPONRxPower(ctx, reqType.OltRxPower), nil |
Akash Soni | 3bcf5e0 | 2024-12-03 08:01:48 +0530 | [diff] [blame] | 441 | case *extension.GetValueRequest_OffloadedAppsStats: |
| 442 | return handler.getOltOffloadStats(ctx, reqType.OffloadedAppsStats), nil |
Akash Reddy Kankanala | c6b6ca1 | 2025-06-12 14:26:57 +0530 | [diff] [blame] | 443 | case *extension.GetValueRequest_OnuStatsFromOlt: |
| 444 | return handler.getOnuStatsFromOlt(ctx, reqType.OnuStatsFromOlt, onuDevice), nil |
Akash Reddy Kankanala | d9ec482 | 2025-06-10 22:59:53 +0530 | [diff] [blame] | 445 | case *extension.GetValueRequest_OltPonStats: |
| 446 | return handler.getPonPortStats(ctx, reqType.OltPonStats), nil |
| 447 | case *extension.GetValueRequest_OltNniStats: |
| 448 | return handler.getNniPortStats(ctx, reqType.OltNniStats), nil |
kesavand | 6212621 | 2021-01-12 04:56:06 -0500 | [diff] [blame] | 449 | default: |
| 450 | return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_UNSUPPORTED), nil |
| 451 | } |
| 452 | } |
| 453 | |
| 454 | logger.Infow(ctx, "Single_get_value_request failed ", log.Fields{"request": request}) |
| 455 | return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_INVALID_DEVICE_ID), nil |
| 456 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 457 | |
Akash Soni | 3bcf5e0 | 2024-12-03 08:01:48 +0530 | [diff] [blame] | 458 | // SetSingleValue is implemented |
| 459 | func (oo *OpenOLT) SetSingleValue(ctx context.Context, request *extension.SingleSetValueRequest) (*extension.SingleSetValueResponse, error) { |
| 460 | logger.Infow(ctx, "single_set_value_request", log.Fields{"request": request}) |
| 461 | |
| 462 | errResp := func(status extension.SetValueResponse_Status, |
| 463 | reason extension.SetValueResponse_ErrorReason) *extension.SingleSetValueResponse { |
| 464 | return &extension.SingleSetValueResponse{ |
| 465 | Response: &extension.SetValueResponse{ |
| 466 | Status: status, |
| 467 | ErrReason: reason, |
| 468 | }, |
| 469 | } |
| 470 | } |
| 471 | if handler := oo.getDeviceHandler(request.TargetId); handler != nil { |
| 472 | switch reqType := request.GetRequest().GetRequest().(type) { |
| 473 | case *extension.SetValueRequest_AppOffloadConfig: |
Akash Soni | 3c75ad7 | 2024-12-23 12:09:48 +0530 | [diff] [blame] | 474 | return handler.setOltOffload(ctx, reqType.AppOffloadConfig), nil |
| 475 | case *extension.SetValueRequest_AppOffloadOnuConfig: |
| 476 | return handler.setOnuOffload(ctx, reqType.AppOffloadOnuConfig), nil |
Akash Soni | 3bcf5e0 | 2024-12-03 08:01:48 +0530 | [diff] [blame] | 477 | default: |
| 478 | return errResp(extension.SetValueResponse_ERROR, extension.SetValueResponse_UNSUPPORTED), nil |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | logger.Infow(ctx, "Single_set_value_request failed ", log.Fields{"request": request}) |
| 483 | return errResp(extension.SetValueResponse_ERROR, extension.SetValueResponse_INVALID_DEVICE_ID), nil |
| 484 | } |
| 485 | |
Akash Reddy Kankanala | c6b6ca1 | 2025-06-12 14:26:57 +0530 | [diff] [blame] | 486 | func (oo *OpenOLT) GetDeviceHandlerFromChild(ctx context.Context, deviceId string) (*DeviceHandler, *voltha.Device) { |
| 487 | oo.lockDeviceHandlersMap.Lock() |
| 488 | defer oo.lockDeviceHandlersMap.Unlock() |
| 489 | |
| 490 | for parentId, handler := range oo.deviceHandlers { |
| 491 | devices, _ := handler.getChildDevicesFromCore(ctx, parentId) |
| 492 | if devices != nil { |
| 493 | for _, onuDevice := range devices.Items { |
| 494 | if onuDevice.Id == deviceId { |
| 495 | return handler, onuDevice |
| 496 | } |
| 497 | } |
| 498 | } |
| 499 | } |
| 500 | return nil, nil |
| 501 | } |
| 502 | |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 503 | /* |
| 504 | * OLT Inter-adapter service |
| 505 | */ |
| 506 | |
kesavand | b9f54fd | 2021-11-25 20:08:04 +0530 | [diff] [blame] | 507 | // ProxyOmciRequests proxies an onu sw download OMCI request from the child adapter |
| 508 | func (oo *OpenOLT) ProxyOmciRequests(ctx context.Context, request *ia.OmciMessages) (*empty.Empty, error) { |
| 509 | if handler := oo.getDeviceHandler(request.ParentDeviceId); handler != nil { |
| 510 | if err := handler.ProxyOmciRequests(ctx, request); err != nil { |
Abhilash Laxmeshwar | 092e6ca | 2022-12-08 19:51:27 +0530 | [diff] [blame] | 511 | return nil, err |
kesavand | b9f54fd | 2021-11-25 20:08:04 +0530 | [diff] [blame] | 512 | } |
| 513 | return &empty.Empty{}, nil |
| 514 | } |
| 515 | return nil, olterrors.NewErrNotFound("no-device-handler", log.Fields{"parent-device-id": request.ParentDeviceId, "child-device-id": request.ChildDeviceId}, nil).Log() |
| 516 | } |
| 517 | |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 518 | // ProxyOmciRequest proxies an OMCI request from the child adapter |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 519 | func (oo *OpenOLT) ProxyOmciRequest(ctx context.Context, request *ia.OmciMessage) (*empty.Empty, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 520 | logger.Debugw(ctx, "proxy-omci-request", log.Fields{"request": request}) |
| 521 | |
| 522 | if handler := oo.getDeviceHandler(request.ParentDeviceId); handler != nil { |
| 523 | if err := handler.ProxyOmciMessage(ctx, request); err != nil { |
Abhilash Laxmeshwar | 092e6ca | 2022-12-08 19:51:27 +0530 | [diff] [blame] | 524 | return nil, err |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 525 | } |
| 526 | return &empty.Empty{}, nil |
| 527 | } |
| 528 | return nil, olterrors.NewErrNotFound("no-device-handler", log.Fields{"parent-device-id": request.ParentDeviceId, "child-device-id": request.ChildDeviceId}, nil).Log() |
| 529 | } |
| 530 | |
| 531 | // GetTechProfileInstance returns an instance of a tech profile |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 532 | func (oo *OpenOLT) GetTechProfileInstance(ctx context.Context, request *ia.TechProfileInstanceRequestMessage) (*ia.TechProfileDownloadMessage, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 533 | logger.Debugw(ctx, "getting-tech-profile-request", log.Fields{"request": request}) |
| 534 | |
| 535 | targetDeviceID := request.ParentDeviceId |
| 536 | if targetDeviceID == "" { |
| 537 | return nil, olterrors.NewErrNotFound("parent-id-empty", log.Fields{"parent-device-id": request.ParentDeviceId, "child-device-id": request.DeviceId}, nil).Log() |
| 538 | } |
| 539 | if handler := oo.getDeviceHandler(targetDeviceID); handler != nil { |
| 540 | return handler.GetTechProfileDownloadMessage(ctx, request) |
| 541 | } |
| 542 | return nil, olterrors.NewErrNotFound("no-device-handler", log.Fields{"parent-device-id": request.ParentDeviceId, "child-device-id": request.DeviceId}, nil).Log() |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 543 | } |
| 544 | |
khenaidoo | efff76e | 2021-12-15 16:51:30 -0500 | [diff] [blame] | 545 | // GetHealthStatus is used by a OltAdapterService client to detect a connection |
| 546 | // lost with the gRPC server hosting the OltAdapterService service |
| 547 | func (oo *OpenOLT) GetHealthStatus(stream adapter_service.AdapterService_GetHealthStatusServer) error { |
| 548 | ctx := context.Background() |
| 549 | logger.Debugw(ctx, "receive-stream-connection", log.Fields{"stream": stream}) |
| 550 | |
| 551 | if stream == nil { |
| 552 | return fmt.Errorf("conn-is-nil %v", stream) |
| 553 | } |
| 554 | initialRequestTime := time.Now() |
| 555 | var remoteClient *common.Connection |
| 556 | var tempClient *common.Connection |
| 557 | var err error |
| 558 | loop: |
| 559 | for { |
| 560 | tempClient, err = stream.Recv() |
| 561 | if err != nil { |
| 562 | logger.Warnw(ctx, "received-stream-error", log.Fields{"remote-client": remoteClient, "error": err}) |
| 563 | break loop |
| 564 | } |
| 565 | // Send a response back |
| 566 | err = stream.Send(&health.HealthStatus{State: health.HealthStatus_HEALTHY}) |
| 567 | if err != nil { |
| 568 | logger.Warnw(ctx, "sending-stream-error", log.Fields{"remote-client": remoteClient, "error": err}) |
| 569 | break loop |
| 570 | } |
| 571 | |
| 572 | remoteClient = tempClient |
| 573 | logger.Debugw(ctx, "received-keep-alive", log.Fields{"remote-client": remoteClient}) |
| 574 | |
| 575 | select { |
| 576 | case <-stream.Context().Done(): |
| 577 | logger.Infow(ctx, "stream-keep-alive-context-done", log.Fields{"remote-client": remoteClient, "error": stream.Context().Err()}) |
| 578 | break loop |
| 579 | case <-oo.exitChannel: |
| 580 | logger.Warnw(ctx, "received-stop", log.Fields{"remote-client": remoteClient, "initial-conn-time": initialRequestTime}) |
| 581 | break loop |
| 582 | default: |
| 583 | } |
| 584 | } |
| 585 | logger.Errorw(ctx, "connection-down", log.Fields{"remote-client": remoteClient, "error": err, "initial-conn-time": initialRequestTime}) |
| 586 | return err |
| 587 | } |
| 588 | |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 589 | /* |
| 590 | * |
| 591 | * Unimplemented APIs |
| 592 | * |
| 593 | */ |
| 594 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 595 | // SimulateAlarm is unimplemented |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 596 | func (oo *OpenOLT) SimulateAlarm(context.Context, *ca.SimulateAlarmMessage) (*voltha.OperationResp, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 597 | return nil, olterrors.ErrNotImplemented |
| 598 | } |
| 599 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 600 | // SetExtValue is unimplemented |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 601 | func (oo *OpenOLT) SetExtValue(context.Context, *ca.SetExtValueMessage) (*empty.Empty, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 602 | return nil, olterrors.ErrNotImplemented |
| 603 | } |
| 604 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 605 | // StartOmciTest not implemented |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 606 | func (oo *OpenOLT) StartOmciTest(ctx context.Context, test *ca.OMCITest) (*omci.TestResponse, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 607 | return nil, olterrors.ErrNotImplemented |
| 608 | } |
| 609 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 610 | // SuppressEvent unimplemented |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 611 | func (oo *OpenOLT) SuppressEvent(ctx context.Context, filter *voltha.EventFilter) (*empty.Empty, error) { |
| 612 | return nil, olterrors.ErrNotImplemented |
| 613 | } |
| 614 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 615 | // UnSuppressEvent unimplemented |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 616 | func (oo *OpenOLT) UnSuppressEvent(ctx context.Context, filter *voltha.EventFilter) (*empty.Empty, error) { |
| 617 | return nil, olterrors.ErrNotImplemented |
| 618 | } |
| 619 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 620 | // DownloadImage is unimplemented |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 621 | func (oo *OpenOLT) DownloadImage(ctx context.Context, imageInfo *ca.ImageDownloadMessage) (*voltha.ImageDownload, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 622 | return nil, olterrors.ErrNotImplemented |
| 623 | } |
| 624 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 625 | // GetImageDownloadStatus is unimplemented |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 626 | func (oo *OpenOLT) GetImageDownloadStatus(ctx context.Context, imageInfo *ca.ImageDownloadMessage) (*voltha.ImageDownload, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 627 | return nil, olterrors.ErrNotImplemented |
| 628 | } |
| 629 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 630 | // CancelImageDownload is unimplemented |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 631 | func (oo *OpenOLT) CancelImageDownload(ctx context.Context, imageInfo *ca.ImageDownloadMessage) (*voltha.ImageDownload, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 632 | return nil, olterrors.ErrNotImplemented |
| 633 | } |
| 634 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 635 | // ActivateImageUpdate is unimplemented |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 636 | func (oo *OpenOLT) ActivateImageUpdate(ctx context.Context, imageInfo *ca.ImageDownloadMessage) (*voltha.ImageDownload, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 637 | return nil, olterrors.ErrNotImplemented |
| 638 | } |
| 639 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 640 | // RevertImageUpdate is unimplemented |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 641 | func (oo *OpenOLT) RevertImageUpdate(ctx context.Context, imageInfo *ca.ImageDownloadMessage) (*voltha.ImageDownload, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 642 | return nil, olterrors.ErrNotImplemented |
| 643 | } |
| 644 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 645 | // DownloadOnuImage unimplemented |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 646 | func (oo *OpenOLT) DownloadOnuImage(ctx context.Context, request *voltha.DeviceImageDownloadRequest) (*voltha.DeviceImageResponse, error) { |
| 647 | return nil, olterrors.ErrNotImplemented |
| 648 | } |
| 649 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 650 | // GetOnuImageStatus unimplemented |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 651 | func (oo *OpenOLT) GetOnuImageStatus(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) { |
| 652 | return nil, olterrors.ErrNotImplemented |
| 653 | } |
| 654 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 655 | // AbortOnuImageUpgrade unimplemented |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 656 | func (oo *OpenOLT) AbortOnuImageUpgrade(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) { |
| 657 | return nil, olterrors.ErrNotImplemented |
| 658 | } |
| 659 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 660 | // GetOnuImages unimplemented |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 661 | func (oo *OpenOLT) GetOnuImages(ctx context.Context, deviceID *common.ID) (*voltha.OnuImages, error) { |
| 662 | return nil, olterrors.ErrNotImplemented |
| 663 | } |
| 664 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 665 | // ActivateOnuImage unimplemented |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 666 | func (oo *OpenOLT) ActivateOnuImage(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) { |
| 667 | return nil, olterrors.ErrNotImplemented |
| 668 | } |
| 669 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 670 | // CommitOnuImage unimplemented |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 671 | func (oo *OpenOLT) CommitOnuImage(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) { |
| 672 | return nil, olterrors.ErrNotImplemented |
| 673 | } |
| 674 | |
| 675 | // UpdateFlowsBulk is unimplemented |
khenaidoo | dc2116e | 2021-10-19 17:33:19 -0400 | [diff] [blame] | 676 | func (oo *OpenOLT) UpdateFlowsBulk(ctx context.Context, flows *ca.BulkFlows) (*empty.Empty, error) { |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 677 | return nil, olterrors.ErrNotImplemented |
| 678 | } |
| 679 | |
praneeth nalmas | 55616d6 | 2023-02-06 09:19:18 +0530 | [diff] [blame] | 680 | // SelfTestDevice unimplemented |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 681 | func (oo *OpenOLT) SelfTestDevice(ctx context.Context, device *voltha.Device) (*empty.Empty, error) { |
| 682 | return nil, olterrors.ErrNotImplemented |
| 683 | } |