blob: c936a5695e0bddfdb0171d8477c5bea6f5ecc653 [file] [log] [blame]
Scott Baker2c1c4822019-10-16 11:02:41 -07001/*
2 * Copyright 2019-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
17package techprofile
18
19import (
npujar5bf737f2020-01-16 19:35:25 +053020 "context"
khenaidoo26721882021-08-11 17:42:52 -040021
22 "github.com/opencord/voltha-lib-go/v7/pkg/db"
23 tp_pb "github.com/opencord/voltha-protos/v5/go/tech_profile"
Scott Baker2c1c4822019-10-16 11:02:41 -070024)
25
26type TechProfileIf interface {
Matteo Scandolof34d9082020-11-24 13:56:34 -080027 SetKVClient(ctx context.Context, pathPrefix string) *db.Backend
Holger Hildebrandt40bd2672023-02-10 08:14:26 +000028 CloseKVClient(ctx context.Context)
Girish Gowdra248971a2021-06-01 15:14:15 -070029 GetTechProfileInstanceKey(ctx context.Context, tpID uint32, uniPortName string) string
30 GetTPInstance(ctx context.Context, path string) (interface{}, error)
31 CreateTechProfileInstance(ctx context.Context, tpID uint32, uniPortName string, intfID uint32) (interface{}, error)
32 DeleteTechProfileInstance(ctx context.Context, tpID uint32, uniPortName string) error
33 GetUsScheduler(tpInstance *tp_pb.TechProfileInstance) *tp_pb.SchedulerConfig
34 GetDsScheduler(tpInstance *tp_pb.TechProfileInstance) *tp_pb.SchedulerConfig
35 GetTrafficScheduler(tpInstance *tp_pb.TechProfileInstance, SchedCfg *tp_pb.SchedulerConfig, ShapingCfg *tp_pb.TrafficShapingInfo) *tp_pb.TrafficScheduler
36 GetTrafficQueues(ctx context.Context, tp *tp_pb.TechProfileInstance, Dir tp_pb.Direction) ([]*tp_pb.TrafficQueue, error)
37 GetMulticastTrafficQueues(ctx context.Context, tp *tp_pb.TechProfileInstance) []*tp_pb.TrafficQueue
Gamze Abaka1400dc42021-02-26 10:37:45 +000038 GetGemportForPbit(ctx context.Context, tp interface{}, Dir tp_pb.Direction, pbit uint32) interface{}
Gamze Abaka41b02e62021-06-10 07:58:00 +000039 FindAllTpInstances(ctx context.Context, oltDeviceID string, tpID uint32, ponIntf uint32, onuID uint32) interface{}
Matteo Scandolob85b2f02021-03-18 14:44:41 -070040 GetResourceID(ctx context.Context, IntfID uint32, ResourceType string, NumIDs uint32) ([]uint32, error)
41 FreeResourceID(ctx context.Context, IntfID uint32, ResourceType string, ReleaseContent []uint32) error
Scott Baker2c1c4822019-10-16 11:02:41 -070042}