blob: 1ed38db3a90c55fbc80fb2ee31bb5107f342d8c4 [file] [log] [blame]
kdarapub589fae2019-10-05 02:02:56 +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 (
20 "github.com/opencord/voltha-go/db/model"
21 tp_pb "github.com/opencord/voltha-protos/go/tech_profile"
22)
23
24type TechProfileIf interface {
25 SetKVClient() *model.Backend
26 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}