blob: 92a33e72fc88810d050ff0b68628c50b27037039 [file] [log] [blame]
dbainbri4d3a0dc2020-12-02 00:33:42 +00001/*
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 */
16package adapters
17
18import (
19 "context"
mpagenkoc8bba412021-01-15 15:38:44 +000020
21 "github.com/opencord/voltha-protos/v4/go/extension"
dbainbri4d3a0dc2020-12-02 00:33:42 +000022 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"
25)
26
27//IAdapter represents the set of APIs a voltha adapter has to support.
28type IAdapter interface {
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
49 Download_image(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error)
50 Get_image_download_status(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error)
51 Cancel_image_download(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error)
52 Activate_image_update(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error)
53 Revert_image_update(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error)
54 Enable_port(ctx context.Context, deviceId string, port *voltha.Port) error
55 Disable_port(ctx context.Context, deviceId string, port *voltha.Port) error
Matteo Scandolo3f2bdc82021-03-18 18:18:22 -070056 Child_device_lost(ctx context.Context, childDevice *voltha.Device) error
dbainbri4d3a0dc2020-12-02 00:33:42 +000057 Start_omci_test(ctx context.Context, device *voltha.Device, request *voltha.OmciTestRequest) (*voltha.TestResponse, error)
58 Get_ext_value(ctx context.Context, deviceId string, device *voltha.Device, valueflag voltha.ValueType_Type) (*voltha.ReturnValues, error)
mpagenkoc8bba412021-01-15 15:38:44 +000059 Single_get_value_request(ctx context.Context, request extension.SingleGetValueRequest) (*extension.SingleGetValueResponse, error)
dbainbri4d3a0dc2020-12-02 00:33:42 +000060}