blob: 32677598eafe8a63722a09bd8f6b21fd3331dcf0 [file] [log] [blame]
kdarapub26b4502019-10-05 03:02:33 +05301/*
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 (
sbarbaria8910ba2019-11-05 10:12:23 -050020 "github.com/opencord/voltha-lib-go/v2/pkg/db"
Scott Bakerc6e54cb2019-11-04 09:31:25 -080021 tp_pb "github.com/opencord/voltha-protos/v2/go/tech_profile"
kdarapub26b4502019-10-05 03:02:33 +053022)
23
24type TechProfileIf interface {
sbarbaria8910ba2019-11-05 10:12:23 -050025 SetKVClient() *db.Backend
kdarapub26b4502019-10-05 03:02:33 +053026 GetTechProfileInstanceKVPath(techProfiletblID uint32, uniPortName string) string
27 GetTPInstanceFromKVStore(techProfiletblID uint32, path string) (*TechProfile, error)
28 CreateTechProfInstance(techProfiletblID uint32, uniPortName string, intfId uint32) *TechProfile
29 DeleteTechProfileInstance(techProfiletblID uint32, uniPortName string) error
30 GetprotoBufParamValue(paramType string, paramKey string) int32
31 GetUsScheduler(tpInstance *TechProfile) *tp_pb.SchedulerConfig
32 GetDsScheduler(tpInstance *TechProfile) *tp_pb.SchedulerConfig
33 GetTrafficScheduler(tpInstance *TechProfile, SchedCfg *tp_pb.SchedulerConfig,
34 ShapingCfg *tp_pb.TrafficShapingInfo) *tp_pb.TrafficScheduler
35 GetTrafficQueues(tp *TechProfile, Dir tp_pb.Direction) []*tp_pb.TrafficQueue
36 GetGemportIDForPbit(tp *TechProfile, Dir tp_pb.Direction, pbit uint32) uint32
37}