blob: cadca871ebbe48d7ae2af18edbbcbe3b3b000860 [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 (
sbarbari1e3e29c2019-11-05 10:06:50 -050020 "github.com/opencord/voltha-lib-go/v2/pkg/db"
Scott Bakerf1b096c2019-11-01 12:36:30 -070021 tp_pb "github.com/opencord/voltha-protos/v2/go/tech_profile"
Scott Baker2c1c4822019-10-16 11:02:41 -070022)
23
24type TechProfileIf interface {
sbarbari1e3e29c2019-11-05 10:06:50 -050025 SetKVClient() *db.Backend
Scott Baker2c1c4822019-10-16 11:02:41 -070026 GetTechProfileInstanceKVPath(techProfiletblID uint32, uniPortName string) string
27 GetTPInstanceFromKVStore(techProfiletblID uint32, path string) (*TechProfile, error)
Girish Kumarb3c52d52019-12-06 12:14:14 +000028 CreateTechProfInstance(techProfiletblID uint32, uniPortName string, intfId uint32) (*TechProfile, error)
Scott Baker2c1c4822019-10-16 11:02:41 -070029 DeleteTechProfileInstance(techProfiletblID uint32, uniPortName string) error
30 GetprotoBufParamValue(paramType string, paramKey string) int32
Girish Kumarb3c52d52019-12-06 12:14:14 +000031 GetUsScheduler(tpInstance *TechProfile) (*tp_pb.SchedulerConfig, error)
32 GetDsScheduler(tpInstance *TechProfile) (*tp_pb.SchedulerConfig, error)
Scott Baker2c1c4822019-10-16 11:02:41 -070033 GetTrafficScheduler(tpInstance *TechProfile, SchedCfg *tp_pb.SchedulerConfig,
34 ShapingCfg *tp_pb.TrafficShapingInfo) *tp_pb.TrafficScheduler
Girish Kumarb3c52d52019-12-06 12:14:14 +000035 GetTrafficQueues(tp *TechProfile, Dir tp_pb.Direction) ([]*tp_pb.TrafficQueue, error)
Esin Karaman8aa75a72019-12-20 13:11:59 +000036 GetMulticastTrafficQueues(tp *TechProfile) []*tp_pb.TrafficQueue
Scott Baker2c1c4822019-10-16 11:02:41 -070037 GetGemportIDForPbit(tp *TechProfile, Dir tp_pb.Direction, pbit uint32) uint32
Girish Gowdra9447baf2019-11-05 16:42:37 +053038 FindAllTpInstances(techProfiletblID uint32, ponIntf uint32, onuID uint32) []TechProfile
Scott Baker2c1c4822019-10-16 11:02:41 -070039}