blob: 5acec697bc5fd1bdf8e7dd20bfb071be288cb411 [file] [log] [blame]
Matteo Scandolod525ae32020-04-02 17:27:29 -07001/*
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
17package kafka
18
19import (
Rohan Agrawal31f21802020-06-12 05:38:46 +000020 "context"
yasin sapli5458a1c2021-06-14 22:24:38 +000021 "github.com/opencord/voltha-lib-go/v5/pkg/kafka"
Matteo Scandolod525ae32020-04-02 17:27:29 -070022)
23
24type EndpointManager struct{}
25
26func NewEndpointManager() kafka.EndpointManager {
27 mock := &EndpointManager{}
28 return mock
29}
30
Rohan Agrawal31f21802020-06-12 05:38:46 +000031func (em *EndpointManager) GetEndpoint(ctx context.Context, deviceID string, serviceType string) (kafka.Endpoint, error) {
Matteo Scandolod525ae32020-04-02 17:27:29 -070032 // TODO add mocks call and args
33 return kafka.Endpoint(serviceType), nil
34}
35
Rohan Agrawal31f21802020-06-12 05:38:46 +000036func (em *EndpointManager) IsDeviceOwnedByService(ctx context.Context, deviceID string, serviceType string, replicaNumber int32) (bool, error) {
Matteo Scandolod525ae32020-04-02 17:27:29 -070037 // TODO add mocks call and args
38 return true, nil
39}
40
Rohan Agrawal31f21802020-06-12 05:38:46 +000041func (em *EndpointManager) GetReplicaAssignment(ctx context.Context, deviceID string, serviceType string) (kafka.ReplicaID, error) {
Matteo Scandolod525ae32020-04-02 17:27:29 -070042 return kafka.ReplicaID(1), nil
43}