Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [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 adapters |
| 17 | |
| 18 | import ( |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 19 | "context" |
kesavand | 46a9f01 | 2021-01-04 16:40:36 +0530 | [diff] [blame] | 20 | |
| 21 | "github.com/opencord/voltha-protos/v4/go/extension" |
Girish Gowdra | 89c985b | 2020-10-14 15:02:09 -0700 | [diff] [blame] | 22 | ic "github.com/opencord/voltha-protos/v4/go/inter_container" |
| 23 | "github.com/opencord/voltha-protos/v4/go/openflow_13" |
| 24 | "github.com/opencord/voltha-protos/v4/go/voltha" |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 25 | ) |
| 26 | |
| 27 | //IAdapter represents the set of APIs a voltha adapter has to support. |
| 28 | type IAdapter interface { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 29 | Adapter_descriptor(ctx context.Context) error |
| 30 | Device_types(ctx context.Context) (*voltha.DeviceTypes, error) |
| 31 | Health(ctx context.Context) (*voltha.HealthStatus, error) |
| 32 | Adopt_device(ctx context.Context, device *voltha.Device) error |
| 33 | Reconcile_device(ctx context.Context, device *voltha.Device) error |
| 34 | Abandon_device(ctx context.Context, device *voltha.Device) error |
| 35 | Disable_device(ctx context.Context, device *voltha.Device) error |
| 36 | Reenable_device(ctx context.Context, device *voltha.Device) error |
| 37 | Reboot_device(ctx context.Context, device *voltha.Device) error |
| 38 | Self_test_device(ctx context.Context, device *voltha.Device) error |
| 39 | Delete_device(ctx context.Context, device *voltha.Device) error |
| 40 | Get_device_details(ctx context.Context, device *voltha.Device) error |
| 41 | Update_flows_bulk(ctx context.Context, device *voltha.Device, flows *voltha.Flows, groups *voltha.FlowGroups, flowMetadata *voltha.FlowMetadata) error |
| 42 | Update_flows_incrementally(ctx context.Context, device *voltha.Device, flows *openflow_13.FlowChanges, groups *openflow_13.FlowGroupChanges, flowMetadata *voltha.FlowMetadata) error |
| 43 | Update_pm_config(ctx context.Context, device *voltha.Device, pm_configs *voltha.PmConfigs) error |
| 44 | Receive_packet_out(ctx context.Context, deviceId string, egress_port_no int, msg *openflow_13.OfpPacketOut) error |
| 45 | Suppress_event(ctx context.Context, filter *voltha.EventFilter) error |
| 46 | Unsuppress_event(ctx context.Context, filter *voltha.EventFilter) error |
| 47 | Get_ofp_device_info(ctx context.Context, device *voltha.Device) (*ic.SwitchCapability, error) |
| 48 | Process_inter_adapter_message(ctx context.Context, msg *ic.InterAdapterMessage) error |
Girish Gowdra | 248971a | 2021-06-01 15:14:15 -0700 | [diff] [blame] | 49 | Process_tech_profile_instance_request(ctx context.Context, msg *ic.InterAdapterTechProfileInstanceRequestMessage) *ic.InterAdapterTechProfileDownloadMessage |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 50 | Download_image(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) |
| 51 | Get_image_download_status(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) |
| 52 | Cancel_image_download(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) |
| 53 | Activate_image_update(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) |
| 54 | Revert_image_update(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) |
| 55 | Enable_port(ctx context.Context, deviceId string, port *voltha.Port) error |
| 56 | Disable_port(ctx context.Context, deviceId string, port *voltha.Port) error |
Girish Gowdra | 2d99f24 | 2021-03-11 14:35:39 -0800 | [diff] [blame] | 57 | Child_device_lost(ctx context.Context, childDevice *voltha.Device) error |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 58 | Start_omci_test(ctx context.Context, device *voltha.Device, request *voltha.OmciTestRequest) (*voltha.TestResponse, error) |
| 59 | Get_ext_value(ctx context.Context, deviceId string, device *voltha.Device, valueflag voltha.ValueType_Type) (*voltha.ReturnValues, error) |
kesavand | 46a9f01 | 2021-01-04 16:40:36 +0530 | [diff] [blame] | 60 | Single_get_value_request(ctx context.Context, request extension.SingleGetValueRequest) (*extension.SingleGetValueResponse, error) |
kesavand | 652ef48 | 2021-04-19 09:26:39 +0530 | [diff] [blame] | 61 | Download_onu_image(ctx context.Context, request *voltha.DeviceImageDownloadRequest) (*voltha.DeviceImageResponse, error) |
| 62 | Get_onu_image_status(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) |
| 63 | Abort_onu_image_upgrade(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) |
| 64 | Get_onu_images(ctx context.Context, deviceID string) (*voltha.OnuImages, error) |
| 65 | Activate_onu_image(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) |
| 66 | Commit_onu_image(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 67 | } |