blob: 28d124d61e4a38c621fe8f811d6ad37ef54fe816 [file] [log] [blame]
Holger Hildebrandtfa074992020-03-27 15:42:06 +00001/*
2 * Copyright 2020-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
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000017//Package adaptercoreonu provides the utility for onu devices, flows and statistics
18package adaptercoreonu
Holger Hildebrandtfa074992020-03-27 15:42:06 +000019
20import (
21 "context"
22 "errors"
23 "fmt"
24 "sync"
25 "time"
26
27 "github.com/opencord/voltha-lib-go/v3/pkg/adapters/adapterif"
mpagenkoaf801632020-07-03 10:00:42 +000028 "github.com/opencord/voltha-lib-go/v3/pkg/db/kvstore"
Holger Hildebrandtfa074992020-03-27 15:42:06 +000029 "github.com/opencord/voltha-lib-go/v3/pkg/kafka"
30 "github.com/opencord/voltha-lib-go/v3/pkg/log"
31 ic "github.com/opencord/voltha-protos/v3/go/inter_container"
32 "github.com/opencord/voltha-protos/v3/go/openflow_13"
33 "github.com/opencord/voltha-protos/v3/go/voltha"
34
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000035 "test.internal/openadapter/internal/pkg/config"
Holger Hildebrandtfa074992020-03-27 15:42:06 +000036)
37
38//OpenONUAC structure holds the ONU core information
39type OpenONUAC struct {
40 deviceHandlers map[string]*DeviceHandler
41 coreProxy adapterif.CoreProxy
42 adapterProxy adapterif.AdapterProxy
43 eventProxy adapterif.EventProxy
44 kafkaICProxy kafka.InterContainerProxy
mpagenkoaf801632020-07-03 10:00:42 +000045 kvClient kvstore.Client
Holger Hildebrandtfa074992020-03-27 15:42:06 +000046 config *config.AdapterFlags
47 numOnus int
48 KVStoreHost string
49 KVStorePort int
50 KVStoreType string
mpagenkoaf801632020-07-03 10:00:42 +000051 KVStoreTimeout time.Duration
Holger Hildebrandtfa074992020-03-27 15:42:06 +000052 exitChannel chan int
53 HeartbeatCheckInterval time.Duration
54 HeartbeatFailReportInterval time.Duration
mpagenkodff5dda2020-08-28 11:52:01 +000055 AcceptIncrementalEvto bool
Holger Hildebrandtfa074992020-03-27 15:42:06 +000056 //GrpcTimeoutInterval time.Duration
57 lockDeviceHandlersMap sync.RWMutex
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000058 pSupportedFsms *OmciDeviceFsms
Holger Hildebrandtfa074992020-03-27 15:42:06 +000059}
60
61//NewOpenONUAC returns a new instance of OpenONU_AC
62func NewOpenONUAC(ctx context.Context, kafkaICProxy kafka.InterContainerProxy,
63 coreProxy adapterif.CoreProxy, adapterProxy adapterif.AdapterProxy,
mpagenkoaf801632020-07-03 10:00:42 +000064 eventProxy adapterif.EventProxy, kvClient kvstore.Client, cfg *config.AdapterFlags) *OpenONUAC {
Holger Hildebrandtfa074992020-03-27 15:42:06 +000065 var openOnuAc OpenONUAC
66 openOnuAc.exitChannel = make(chan int, 1)
67 openOnuAc.deviceHandlers = make(map[string]*DeviceHandler)
68 openOnuAc.kafkaICProxy = kafkaICProxy
69 openOnuAc.config = cfg
70 openOnuAc.numOnus = cfg.OnuNumber
71 openOnuAc.coreProxy = coreProxy
72 openOnuAc.adapterProxy = adapterProxy
73 openOnuAc.eventProxy = eventProxy
mpagenkoaf801632020-07-03 10:00:42 +000074 openOnuAc.kvClient = kvClient
Holger Hildebrandtfa074992020-03-27 15:42:06 +000075 openOnuAc.KVStoreHost = cfg.KVStoreHost
76 openOnuAc.KVStorePort = cfg.KVStorePort
77 openOnuAc.KVStoreType = cfg.KVStoreType
mpagenkoaf801632020-07-03 10:00:42 +000078 openOnuAc.KVStoreTimeout = cfg.KVStoreTimeout
Holger Hildebrandtfa074992020-03-27 15:42:06 +000079 openOnuAc.HeartbeatCheckInterval = cfg.HeartbeatCheckInterval
80 openOnuAc.HeartbeatFailReportInterval = cfg.HeartbeatFailReportInterval
mpagenkodff5dda2020-08-28 11:52:01 +000081 openOnuAc.AcceptIncrementalEvto = cfg.AccIncrEvto
Holger Hildebrandtfa074992020-03-27 15:42:06 +000082 //openOnuAc.GrpcTimeoutInterval = cfg.GrpcTimeoutInterval
83 openOnuAc.lockDeviceHandlersMap = sync.RWMutex{}
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000084
85 openOnuAc.pSupportedFsms = &OmciDeviceFsms{
86 "mib-synchronizer": {
87 //mibSyncFsm, // Implements the MIB synchronization state machine
88 MibDbVolatileDictImpl, // Implements volatile ME MIB database
Himani Chawla4d908332020-08-31 12:30:20 +053089 //true, // Advertise events on OpenOMCI event bus
90 cMibAuditDelayImpl, // Time to wait between MIB audits. 0 to disable audits.
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000091 // map[string]func() error{
92 // "mib-upload": onuDeviceEntry.MibUploadTask,
93 // "mib-template": onuDeviceEntry.MibTemplateTask,
94 // "get-mds": onuDeviceEntry.GetMdsTask,
95 // "mib-audit": onuDeviceEntry.GetMdsTask,
96 // "mib-resync": onuDeviceEntry.MibResyncTask,
97 // "mib-reconcile": onuDeviceEntry.MibReconcileTask,
98 // },
99 },
100 }
101
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000102 return &openOnuAc
103}
104
105//Start starts (logs) the adapter
106func (oo *OpenONUAC) Start(ctx context.Context) error {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000107 logger.Info("starting-openonu-adapter")
108 logger.Info("openonu-adapter-started")
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000109 return nil
110}
111
112//Stop terminates the session
113func (oo *OpenONUAC) Stop(ctx context.Context) error {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000114 logger.Info("stopping-device-manager")
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000115 oo.exitChannel <- 1
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000116 logger.Info("device-manager-stopped")
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000117 return nil
118}
119
120func (oo *OpenONUAC) addDeviceHandlerToMap(ctx context.Context, agent *DeviceHandler) {
121 oo.lockDeviceHandlersMap.Lock()
122 defer oo.lockDeviceHandlersMap.Unlock()
123 if _, exist := oo.deviceHandlers[agent.deviceID]; !exist {
124 oo.deviceHandlers[agent.deviceID] = agent
125 oo.deviceHandlers[agent.deviceID].Start(ctx)
126 }
127}
128
Himani Chawla4d908332020-08-31 12:30:20 +0530129/*
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000130func (oo *OpenONUAC) deleteDeviceHandlerToMap(agent *DeviceHandler) {
131 oo.lockDeviceHandlersMap.Lock()
132 defer oo.lockDeviceHandlersMap.Unlock()
133 delete(oo.deviceHandlers, agent.deviceID)
134}
Himani Chawla4d908332020-08-31 12:30:20 +0530135*/
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000136
137func (oo *OpenONUAC) getDeviceHandler(deviceID string) *DeviceHandler {
138 oo.lockDeviceHandlersMap.Lock()
139 defer oo.lockDeviceHandlersMap.Unlock()
140 if agent, ok := oo.deviceHandlers[deviceID]; ok {
141 return agent
142 }
143 return nil
144}
145
146// Adapter interface required methods ############## begin #########
147// #################################################################
148
149// for original content compare: (needs according deviceHandler methods)
150// /voltha-openolt-adapter/adaptercore/openolt.go
151
152// Adopt_device creates a new device handler if not present already and then adopts the device
153func (oo *OpenONUAC) Adopt_device(device *voltha.Device) error {
154 if device == nil {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000155 logger.Warn("voltha-device-is-nil")
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000156 return errors.New("nil-device")
157 }
158 ctx := context.Background()
divyadesai4d299552020-08-18 07:13:49 +0000159 logger.Infow("adopt-device", log.Fields{"device-id": device.Id})
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000160 var handler *DeviceHandler
161 if handler = oo.getDeviceHandler(device.Id); handler == nil {
162 handler := NewDeviceHandler(oo.coreProxy, oo.adapterProxy, oo.eventProxy, device, oo)
163 oo.addDeviceHandlerToMap(ctx, handler)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000164 go handler.AdoptOrReconcileDevice(ctx, device)
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000165 // Launch the creation of the device topic
166 // go oo.createDeviceTopic(device)
167 }
168 return nil
169}
170
171//Get_ofp_device_info returns OFP information for the given device
172func (oo *OpenONUAC) Get_ofp_device_info(device *voltha.Device) (*ic.SwitchCapability, error) {
divyadesai4d299552020-08-18 07:13:49 +0000173 logger.Errorw("device-handler-not-set", log.Fields{"device-id": device.Id})
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000174 return nil, errors.New("device-handler-not-set")
175}
176
177//Get_ofp_port_info returns OFP port information for the given device
mpagenkoaf801632020-07-03 10:00:42 +0000178//200630: method removed as per [VOL-3202]: OF port info is now to be delivered within UniPort create
179// cmp changes in onu_uni_port.go::CreateVolthaPort()
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000180
181//Process_inter_adapter_message sends messages to a target device (between adapters)
182func (oo *OpenONUAC) Process_inter_adapter_message(msg *ic.InterAdapterMessage) error {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000183 logger.Debugw("Process_inter_adapter_message", log.Fields{"msgId": msg.Header.Id,
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000184 "msgProxyDeviceId": msg.Header.ProxyDeviceId, "msgToDeviceId": msg.Header.ToDeviceId})
185
186 targetDevice := msg.Header.ToDeviceId
187 //ToDeviceId should address an DeviceHandler instance
188 if handler := oo.getDeviceHandler(targetDevice); handler != nil {
mpagenko1cc3cb42020-07-27 15:24:38 +0000189 /* 200724: modification towards synchronous implementation - possible errors within processing shall be
190 * in the accordingly delayed response, some timing effect might result in Techprofile processing for multiple UNI's
191 */
192 return handler.ProcessInterAdapterMessage(msg)
193 /* so far the processing has been in background with according commented error treatment restrictions:
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000194 go handler.ProcessInterAdapterMessage(msg)
195 // error treatment might be more sophisticated
196 // by now let's just accept the message on 'communication layer'
197 // message content problems have to be evaluated then in the handler
198 // and are by now not reported to the calling party (to force what reaction there?)
199 return nil
mpagenko1cc3cb42020-07-27 15:24:38 +0000200 */
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000201 }
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000202 logger.Warnw("no handler found for received Inter-Proxy-message", log.Fields{
203 "msgToDeviceId": targetDevice})
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000204 return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", targetDevice))
205}
206
207//Adapter_descriptor not implemented
208func (oo *OpenONUAC) Adapter_descriptor() error {
209 return errors.New("unImplemented")
210}
211
212//Device_types unimplemented
213func (oo *OpenONUAC) Device_types() (*voltha.DeviceTypes, error) {
214 return nil, errors.New("unImplemented")
215}
216
217//Health returns unimplemented
218func (oo *OpenONUAC) Health() (*voltha.HealthStatus, error) {
219 return nil, errors.New("unImplemented")
220}
221
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000222//Reconcile_device is called once when the adapter needs to re-create device - usually on core restart
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000223func (oo *OpenONUAC) Reconcile_device(device *voltha.Device) error {
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000224 if device == nil {
225 logger.Warn("voltha-device-is-nil")
226 return errors.New("nil-device")
227 }
228 ctx := context.Background()
229 logger.Infow("Reconcile_device", log.Fields{"device-id": device.Id})
230 var handler *DeviceHandler
231 if handler = oo.getDeviceHandler(device.Id); handler == nil {
232 handler := NewDeviceHandler(oo.coreProxy, oo.adapterProxy, oo.eventProxy, device, oo)
233 oo.addDeviceHandlerToMap(ctx, handler)
234 handler.device = device
235 handler.reconciling = true
236 go handler.AdoptOrReconcileDevice(ctx, handler.device)
237 // reconcilement will be continued after onu-device entry is added
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000238 } else {
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000239 return fmt.Errorf(fmt.Sprintf("device-already-reconciled-or-active-%s", device.Id))
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000240 }
241 return nil
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000242}
243
244//Abandon_device unimplemented
245func (oo *OpenONUAC) Abandon_device(device *voltha.Device) error {
246 return errors.New("unImplemented")
247}
248
249//Disable_device disables the given device
250func (oo *OpenONUAC) Disable_device(device *voltha.Device) error {
divyadesai4d299552020-08-18 07:13:49 +0000251 logger.Debugw("Disable_device", log.Fields{"device-id": device.Id})
ozgecanetsiafce57b12020-05-25 14:39:35 +0300252 if handler := oo.getDeviceHandler(device.Id); handler != nil {
253 go handler.DisableDevice(device)
254 return nil
255 }
divyadesai4d299552020-08-18 07:13:49 +0000256 logger.Warnw("no handler found for device-disable", log.Fields{"device-id": device.Id})
ozgecanetsiafce57b12020-05-25 14:39:35 +0300257 return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id))
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000258}
259
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000260//Reenable_device enables the onu device after disable
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000261func (oo *OpenONUAC) Reenable_device(device *voltha.Device) error {
divyadesai4d299552020-08-18 07:13:49 +0000262 logger.Debugw("Reenable_device", log.Fields{"device-id": device.Id})
ozgecanetsiafce57b12020-05-25 14:39:35 +0300263 if handler := oo.getDeviceHandler(device.Id); handler != nil {
264 go handler.ReenableDevice(device)
265 return nil
266 }
divyadesai4d299552020-08-18 07:13:49 +0000267 logger.Warnw("no handler found for device-reenable", log.Fields{"device-id": device.Id})
ozgecanetsiafce57b12020-05-25 14:39:35 +0300268 return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id))
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000269}
270
271//Reboot_device reboots the given device
272func (oo *OpenONUAC) Reboot_device(device *voltha.Device) error {
divyadesai4d299552020-08-18 07:13:49 +0000273 logger.Debugw("Reboot-device", log.Fields{"device-id": device.Id})
ozgecanetsiae11479f2020-07-06 09:44:47 +0300274 if handler := oo.getDeviceHandler(device.Id); handler != nil {
275 go handler.RebootDevice(device)
276 return nil
277 }
divyadesai4d299552020-08-18 07:13:49 +0000278 logger.Warnw("no handler found for device-reboot", log.Fields{"device-id": device.Id})
ozgecanetsiae11479f2020-07-06 09:44:47 +0300279 return fmt.Errorf(fmt.Sprintf("handler-not-found-#{device.Id}"))
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000280}
281
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000282//Self_test_device unimplemented
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000283func (oo *OpenONUAC) Self_test_device(device *voltha.Device) error {
284 return errors.New("unImplemented")
285}
286
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000287func (oo *OpenONUAC) Delete_device(device *voltha.Device) error {
divyadesai4d299552020-08-18 07:13:49 +0000288 logger.Debugw("Delete_device", log.Fields{"device-id": device.Id})
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000289 if handler := oo.getDeviceHandler(device.Id); handler != nil {
290 if err := handler.DeleteDevice(device); err != nil {
291 return err
292 }
293 } else {
divyadesai4d299552020-08-18 07:13:49 +0000294 logger.Warnw("no handler found for device-reconcilement", log.Fields{"device-id": device.Id})
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000295 return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id))
296 }
297 return nil
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000298}
299
300//Get_device_details unimplemented
301func (oo *OpenONUAC) Get_device_details(device *voltha.Device) error {
302 return errors.New("unImplemented")
303}
304
305//Update_flows_bulk returns
306func (oo *OpenONUAC) Update_flows_bulk(device *voltha.Device, flows *voltha.Flows, groups *voltha.FlowGroups, flowMetadata *voltha.FlowMetadata) error {
307 return errors.New("unImplemented")
308}
309
310//Update_flows_incrementally updates (add/remove) the flows on a given device
mpagenkodff5dda2020-08-28 11:52:01 +0000311func (oo *OpenONUAC) Update_flows_incrementally(device *voltha.Device,
312 flows *openflow_13.FlowChanges, groups *openflow_13.FlowGroupChanges, flowMetadata *voltha.FlowMetadata) error {
313 // no point in pushing omci flows if the device isn't reachable
314 if device.ConnectStatus != voltha.ConnectStatus_REACHABLE ||
315 device.AdminState != voltha.AdminState_ENABLED {
316 logger.Warnw("device disabled or offline - skipping flow-update", log.Fields{"deviceId": device.Id})
317 return errors.New("non-matching device state")
318 }
319
320 // For now, there is no support for group changes (as in the actual Py-adapter code)
321 if groups.ToAdd != nil && groups.ToAdd.Items != nil {
322 logger.Debugw("Update-flow-incr: group add not supported (ignored)", log.Fields{"deviceId": device.Id})
323 }
324 if groups.ToRemove != nil && groups.ToRemove.Items != nil {
325 logger.Debugw("Update-flow-incr: group remove not supported (ignored)", log.Fields{"deviceId": device.Id})
326 }
327 if groups.ToUpdate != nil && groups.ToUpdate.Items != nil {
328 logger.Debugw("Update-flow-incr: group update not supported (ignored)", log.Fields{"deviceId": device.Id})
329 }
330
331 if handler := oo.getDeviceHandler(device.Id); handler != nil {
332 err := handler.FlowUpdateIncremental(flows, groups, flowMetadata)
333 return err
334 }
335 logger.Warnw("no handler found for incremental flow update", log.Fields{"deviceId": device.Id})
336 return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id))
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000337}
338
339//Update_pm_config returns PmConfigs nil or error
340func (oo *OpenONUAC) Update_pm_config(device *voltha.Device, pmConfigs *voltha.PmConfigs) error {
341 return errors.New("unImplemented")
342}
343
344//Receive_packet_out sends packet out to the device
345func (oo *OpenONUAC) Receive_packet_out(deviceID string, egressPortNo int, packet *openflow_13.OfpPacketOut) error {
346 return errors.New("unImplemented")
347}
348
349//Suppress_event unimplemented
350func (oo *OpenONUAC) Suppress_event(filter *voltha.EventFilter) error {
351 return errors.New("unImplemented")
352}
353
354//Unsuppress_event unimplemented
355func (oo *OpenONUAC) Unsuppress_event(filter *voltha.EventFilter) error {
356 return errors.New("unImplemented")
357}
358
359//Download_image unimplemented
360func (oo *OpenONUAC) Download_image(device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) {
361 return nil, errors.New("unImplemented")
362}
363
364//Get_image_download_status unimplemented
365func (oo *OpenONUAC) Get_image_download_status(device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) {
366 return nil, errors.New("unImplemented")
367}
368
369//Cancel_image_download unimplemented
370func (oo *OpenONUAC) Cancel_image_download(device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) {
371 return nil, errors.New("unImplemented")
372}
373
374//Activate_image_update unimplemented
375func (oo *OpenONUAC) Activate_image_update(device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) {
376 return nil, errors.New("unImplemented")
377}
378
379//Revert_image_update unimplemented
380func (oo *OpenONUAC) Revert_image_update(device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) {
381 return nil, errors.New("unImplemented")
382}
383
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000384// Enable_port to Enable PON/NNI interface - seems not to be used/required according to python code
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000385func (oo *OpenONUAC) Enable_port(deviceID string, port *voltha.Port) error {
386 return errors.New("unImplemented")
387}
388
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000389// Disable_port to Disable pon/nni interface - seems not to be used/required according to python code
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000390func (oo *OpenONUAC) Disable_port(deviceID string, port *voltha.Port) error {
391 return errors.New("unImplemented")
392}
393
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000394//needed for if update >= 3.1.x
Matteo Scandolo2e6f1e32020-04-15 11:28:45 -0700395func (oo *OpenONUAC) Child_device_lost(deviceID string, pPortNo uint32, onuID uint32) error {
396 return errors.New("unImplemented")
397}
398
399func (oo *OpenONUAC) Start_omci_test(device *voltha.Device, request *voltha.OmciTestRequest) (*voltha.TestResponse, error) {
400 return nil, errors.New("unImplemented")
401}
402
Matteo Scandolod132c0e2020-04-24 17:06:25 -0700403func (oo *OpenONUAC) Get_ext_value(deviceID string, device *voltha.Device, valueparam voltha.ValueType_Type) (*voltha.ReturnValues, error) {
404 return nil, errors.New("unImplemented")
405}
406
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000407// Adapter interface required methods ################ end #########
408// #################################################################