blob: 2beaea5342dfc83707def43b273a464cc5c7f0c6 [file] [log] [blame]
khenaidooab1f7bd2019-11-14 14:00:27 -05001/*
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/*
17Defines a DeviceManager Interface - Used for unit testing of the flow decomposer only at this
18time.
19*/
npujar1d86a522019-11-14 17:11:16 +053020
21package coreif
khenaidooab1f7bd2019-11-14 14:00:27 -050022
23import (
24 "context"
npujar1d86a522019-11-14 17:11:16 +053025
khenaidooab1f7bd2019-11-14 14:00:27 -050026 "github.com/opencord/voltha-protos/v2/go/openflow_13"
27 "github.com/opencord/voltha-protos/v2/go/voltha"
28)
29
npujar1d86a522019-11-14 17:11:16 +053030// LogicalDeviceManager represent logical device manager related methods
khenaidooab1f7bd2019-11-14 14:00:27 -050031type LogicalDeviceManager interface {
npujar1d86a522019-11-14 17:11:16 +053032 GetLogicalPort(lPortID *voltha.LogicalPortId) (*voltha.LogicalPort, error)
khenaidooab1f7bd2019-11-14 14:00:27 -050033 EnableLogicalPort(ctx context.Context, id *voltha.LogicalPortId, ch chan interface{})
34 DisableLogicalPort(ctx context.Context, id *voltha.LogicalPortId, ch chan interface{})
35 UpdateFlowTable(ctx context.Context, id string, flow *openflow_13.OfpFlowMod, ch chan interface{})
36 UpdateMeterTable(ctx context.Context, id string, meter *openflow_13.OfpMeterMod, ch chan interface{})
37 UpdateGroupTable(ctx context.Context, id string, groupMod *openflow_13.OfpGroupMod, ch chan interface{})
38 GetLogicalDevice(id string) (*voltha.LogicalDevice, error)
39 ListManagedLogicalDevices() (*voltha.LogicalDevices, error)
40 ListLogicalDevices() (*voltha.LogicalDevices, error)
41 ListLogicalDeviceFlows(ctx context.Context, id string) (*openflow_13.Flows, error)
42 ListLogicalDeviceFlowGroups(ctx context.Context, id string) (*openflow_13.FlowGroups, error)
43 ListLogicalDevicePorts(ctx context.Context, id string) (*voltha.LogicalPorts, error)
44 ListLogicalDeviceMeters(ctx context.Context, id string) (*openflow_13.Meters, error)
45 PacketOut(packet *openflow_13.PacketOut) error
46}