blob: a10a3c823f30f7cd6413bb1abf56bf527ef19a60 [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*/
20package coreIf
21
22import (
23 "context"
24 "github.com/opencord/voltha-protos/v2/go/openflow_13"
25 "github.com/opencord/voltha-protos/v2/go/voltha"
26)
27
28type LogicalDeviceManager interface {
29 GetLogicalPort(lPortId *voltha.LogicalPortId) (*voltha.LogicalPort, error)
30 EnableLogicalPort(ctx context.Context, id *voltha.LogicalPortId, ch chan interface{})
31 DisableLogicalPort(ctx context.Context, id *voltha.LogicalPortId, ch chan interface{})
32 UpdateFlowTable(ctx context.Context, id string, flow *openflow_13.OfpFlowMod, ch chan interface{})
33 UpdateMeterTable(ctx context.Context, id string, meter *openflow_13.OfpMeterMod, ch chan interface{})
34 UpdateGroupTable(ctx context.Context, id string, groupMod *openflow_13.OfpGroupMod, ch chan interface{})
35 GetLogicalDevice(id string) (*voltha.LogicalDevice, error)
36 ListManagedLogicalDevices() (*voltha.LogicalDevices, error)
37 ListLogicalDevices() (*voltha.LogicalDevices, error)
38 ListLogicalDeviceFlows(ctx context.Context, id string) (*openflow_13.Flows, error)
39 ListLogicalDeviceFlowGroups(ctx context.Context, id string) (*openflow_13.FlowGroups, error)
40 ListLogicalDevicePorts(ctx context.Context, id string) (*voltha.LogicalPorts, error)
41 ListLogicalDeviceMeters(ctx context.Context, id string) (*openflow_13.Meters, error)
42 PacketOut(packet *openflow_13.PacketOut) error
43}