khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 1 | /* |
| 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 | */ |
khenaidoo | b6238b3 | 2020-04-07 12:07:36 -0400 | [diff] [blame] | 16 | package kafka |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 17 | |
| 18 | import ( |
| 19 | "fmt" |
serkant.uluderya | b38671c | 2019-11-01 09:35:38 -0700 | [diff] [blame] | 20 | "sync" |
Scott Baker | 84a55ce | 2020-04-17 10:11:30 -0700 | [diff] [blame] | 21 | "time" |
serkant.uluderya | b38671c | 2019-11-01 09:35:38 -0700 | [diff] [blame] | 22 | |
| 23 | "github.com/opencord/voltha-lib-go/v3/pkg/kafka" |
| 24 | "github.com/opencord/voltha-lib-go/v3/pkg/log" |
| 25 | ic "github.com/opencord/voltha-protos/v3/go/inter_container" |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 26 | "google.golang.org/grpc/codes" |
| 27 | "google.golang.org/grpc/status" |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 28 | ) |
| 29 | |
Kent Hagerman | ccfa213 | 2019-12-17 13:29:34 -0500 | [diff] [blame] | 30 | // static check to ensure KafkaClient implements kafka.Client |
| 31 | var _ kafka.Client = &KafkaClient{} |
| 32 | |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 33 | type KafkaClient struct { |
| 34 | topicsChannelMap map[string][]chan *ic.InterContainerMessage |
| 35 | lock sync.RWMutex |
| 36 | } |
| 37 | |
| 38 | func NewKafkaClient() *KafkaClient { |
| 39 | return &KafkaClient{ |
| 40 | topicsChannelMap: make(map[string][]chan *ic.InterContainerMessage), |
| 41 | lock: sync.RWMutex{}, |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | func (kc *KafkaClient) Start() error { |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 46 | logger.Debug("kafka-client-started") |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 47 | return nil |
| 48 | } |
| 49 | |
| 50 | func (kc *KafkaClient) Stop() { |
| 51 | kc.lock.Lock() |
| 52 | defer kc.lock.Unlock() |
| 53 | for topic, chnls := range kc.topicsChannelMap { |
| 54 | for _, c := range chnls { |
| 55 | close(c) |
| 56 | } |
| 57 | delete(kc.topicsChannelMap, topic) |
| 58 | } |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 59 | logger.Debug("kafka-client-stopped") |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | func (kc *KafkaClient) CreateTopic(topic *kafka.Topic, numPartition int, repFactor int) error { |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 63 | logger.Debugw("CreatingTopic", log.Fields{"topic": topic.Name, "numPartition": numPartition, "replicationFactor": repFactor}) |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 64 | kc.lock.Lock() |
| 65 | defer kc.lock.Unlock() |
| 66 | if _, ok := kc.topicsChannelMap[topic.Name]; ok { |
| 67 | return fmt.Errorf("Topic %s already exist", topic.Name) |
| 68 | } |
| 69 | ch := make(chan *ic.InterContainerMessage) |
| 70 | kc.topicsChannelMap[topic.Name] = append(kc.topicsChannelMap[topic.Name], ch) |
| 71 | return nil |
| 72 | } |
| 73 | |
| 74 | func (kc *KafkaClient) DeleteTopic(topic *kafka.Topic) error { |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 75 | logger.Debugw("DeleteTopic", log.Fields{"topic": topic.Name}) |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 76 | kc.lock.Lock() |
| 77 | defer kc.lock.Unlock() |
| 78 | delete(kc.topicsChannelMap, topic.Name) |
| 79 | return nil |
| 80 | } |
| 81 | |
| 82 | func (kc *KafkaClient) Subscribe(topic *kafka.Topic, kvArgs ...*kafka.KVArg) (<-chan *ic.InterContainerMessage, error) { |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 83 | logger.Debugw("Subscribe", log.Fields{"topic": topic.Name, "args": kvArgs}) |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 84 | kc.lock.Lock() |
| 85 | defer kc.lock.Unlock() |
| 86 | ch := make(chan *ic.InterContainerMessage) |
| 87 | kc.topicsChannelMap[topic.Name] = append(kc.topicsChannelMap[topic.Name], ch) |
| 88 | return ch, nil |
| 89 | } |
| 90 | |
| 91 | func removeChannel(s []chan *ic.InterContainerMessage, i int) []chan *ic.InterContainerMessage { |
| 92 | s[i] = s[len(s)-1] |
| 93 | return s[:len(s)-1] |
| 94 | } |
| 95 | |
| 96 | func (kc *KafkaClient) UnSubscribe(topic *kafka.Topic, ch <-chan *ic.InterContainerMessage) error { |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 97 | logger.Debugw("UnSubscribe", log.Fields{"topic": topic.Name}) |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 98 | kc.lock.Lock() |
| 99 | defer kc.lock.Unlock() |
| 100 | if chnls, ok := kc.topicsChannelMap[topic.Name]; ok { |
| 101 | idx := -1 |
| 102 | for i, c := range chnls { |
| 103 | if c == ch { |
| 104 | close(c) |
| 105 | idx = i |
| 106 | } |
| 107 | } |
| 108 | if idx >= 0 { |
| 109 | kc.topicsChannelMap[topic.Name] = removeChannel(kc.topicsChannelMap[topic.Name], idx) |
| 110 | } |
| 111 | } |
| 112 | return nil |
| 113 | } |
| 114 | |
Scott Baker | 84a55ce | 2020-04-17 10:11:30 -0700 | [diff] [blame] | 115 | func (kc *KafkaClient) SubscribeForMetadata(_ func(fromTopic string, timestamp time.Time)) { |
Kent Hagerman | 359d93b | 2020-02-04 17:27:30 -0500 | [diff] [blame] | 116 | logger.Debug("SubscribeForMetadata - unimplemented") |
Kent Hagerman | ccfa213 | 2019-12-17 13:29:34 -0500 | [diff] [blame] | 117 | } |
| 118 | |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 119 | func (kc *KafkaClient) Send(msg interface{}, topic *kafka.Topic, keys ...string) error { |
| 120 | req, ok := msg.(*ic.InterContainerMessage) |
| 121 | if !ok { |
| 122 | return status.Error(codes.InvalidArgument, "msg-not-InterContainerMessage-type") |
| 123 | } |
| 124 | if req == nil { |
| 125 | return status.Error(codes.InvalidArgument, "msg-nil") |
| 126 | } |
| 127 | kc.lock.RLock() |
| 128 | defer kc.lock.RUnlock() |
| 129 | for _, ch := range kc.topicsChannelMap[topic.Name] { |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 130 | logger.Debugw("Publishing", log.Fields{"fromTopic": req.Header.FromTopic, "toTopic": topic.Name, "id": req.Header.Id}) |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 131 | ch <- req |
| 132 | } |
| 133 | return nil |
| 134 | } |
| 135 | |
| 136 | func (kc *KafkaClient) SendLiveness() error { |
| 137 | return status.Error(codes.Unimplemented, "SendLiveness") |
| 138 | } |
| 139 | |
| 140 | func (kc *KafkaClient) EnableLivenessChannel(enable bool) chan bool { |
Kent Hagerman | 359d93b | 2020-02-04 17:27:30 -0500 | [diff] [blame] | 141 | logger.Debug("EnableLivenessChannel - unimplemented") |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 142 | return nil |
| 143 | } |
Scott Baker | 0fef698 | 2019-12-12 09:49:42 -0800 | [diff] [blame] | 144 | |
| 145 | func (kc *KafkaClient) EnableHealthinessChannel(enable bool) chan bool { |
Kent Hagerman | 359d93b | 2020-02-04 17:27:30 -0500 | [diff] [blame] | 146 | logger.Debug("EnableHealthinessChannel - unimplemented") |
Scott Baker | 0fef698 | 2019-12-12 09:49:42 -0800 | [diff] [blame] | 147 | return nil |
| 148 | } |