Pragya Arya | 324337e | 2020-02-20 14:35:08 +0530 | [diff] [blame] | 1 | /* |
| 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 | |
| 17 | package common |
| 18 | |
| 19 | import ( |
| 20 | "encoding/json" |
| 21 | "strconv" |
| 22 | "time" |
| 23 | |
| 24 | "github.com/Shopify/sarama" |
| 25 | log "github.com/sirupsen/logrus" |
| 26 | ) |
| 27 | |
| 28 | var producer sarama.AsyncProducer |
| 29 | var topic string |
| 30 | |
| 31 | // Event defines structure for bbsim events |
| 32 | type Event struct { |
| 33 | EventType string |
| 34 | OnuSerial string |
| 35 | OltID int |
| 36 | IntfID int32 |
| 37 | OnuID int32 |
| 38 | EpochTime int64 |
| 39 | Timestamp string |
| 40 | } |
| 41 | |
| 42 | // InitializePublisher initalizes kafka publisher |
Shrey Baid | 64cda47 | 2020-04-24 18:58:18 +0530 | [diff] [blame] | 43 | func InitializePublisher(NewAsyncProducer func([]string, *sarama.Config) (sarama.AsyncProducer, error), oltID int) error { |
Pragya Arya | 324337e | 2020-02-20 14:35:08 +0530 | [diff] [blame] | 44 | |
| 45 | var err error |
| 46 | sarama.Logger = log.New() |
| 47 | // producer config |
| 48 | config := sarama.NewConfig() |
| 49 | config.Producer.Retry.Max = 5 |
| 50 | config.Metadata.Retry.Max = 10 |
| 51 | config.Metadata.Retry.Backoff = 10 * time.Second |
| 52 | config.ClientID = "BBSim-OLT-" + strconv.Itoa(oltID) |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 53 | if len(Config.BBSim.KafkaEventTopic) > 0 { |
| 54 | topic = Config.BBSim.KafkaEventTopic |
Shrey Baid | 64cda47 | 2020-04-24 18:58:18 +0530 | [diff] [blame] | 55 | } else { |
| 56 | topic = "BBSim-OLT-" + strconv.Itoa(oltID) + "-Events" |
| 57 | } |
Pragya Arya | 324337e | 2020-02-20 14:35:08 +0530 | [diff] [blame] | 58 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 59 | producer, err = NewAsyncProducer([]string{Config.BBSim.KafkaAddress}, config) |
Pragya Arya | 324337e | 2020-02-20 14:35:08 +0530 | [diff] [blame] | 60 | return err |
| 61 | } |
| 62 | |
| 63 | // KafkaPublisher receives messages on eventChannel and publish them to kafka |
| 64 | func KafkaPublisher(eventChannel chan Event) { |
| 65 | defer log.Debugf("KafkaPublisher stopped") |
| 66 | for { |
Shrey Baid | 688b424 | 2020-07-10 20:40:10 +0530 | [diff] [blame] | 67 | event := <-eventChannel |
| 68 | log.WithFields(log.Fields{ |
| 69 | "EventType": event.EventType, |
| 70 | "OnuSerial": event.OnuSerial, |
| 71 | "OltID": event.OltID, |
| 72 | "IntfID": event.IntfID, |
| 73 | "OnuID": event.OnuID, |
| 74 | "EpochTime": event.EpochTime, |
| 75 | "Timestamp": event.Timestamp, |
| 76 | }).Trace("Received event on channel") |
| 77 | jsonEvent, err := json.Marshal(event) |
| 78 | if err != nil { |
| 79 | log.Errorf("Failed to get json event %v", err) |
| 80 | continue |
Pragya Arya | 324337e | 2020-02-20 14:35:08 +0530 | [diff] [blame] | 81 | } |
Shrey Baid | 688b424 | 2020-07-10 20:40:10 +0530 | [diff] [blame] | 82 | producer.Input() <- &sarama.ProducerMessage{ |
| 83 | Topic: topic, |
| 84 | Value: sarama.ByteEncoder(jsonEvent), |
| 85 | } |
| 86 | log.WithFields(log.Fields{ |
| 87 | "EventType": event.EventType, |
| 88 | "OnuSerial": event.OnuSerial, |
| 89 | "OltID": event.OltID, |
| 90 | "IntfID": event.IntfID, |
| 91 | "OnuID": event.OnuID, |
| 92 | "EpochTime": event.EpochTime, |
| 93 | "Timestamp": event.Timestamp, |
| 94 | }).Debug("Event sent on kafka") |
Pragya Arya | 324337e | 2020-02-20 14:35:08 +0530 | [diff] [blame] | 95 | } |
Shrey Baid | 688b424 | 2020-07-10 20:40:10 +0530 | [diff] [blame] | 96 | |
Pragya Arya | 324337e | 2020-02-20 14:35:08 +0530 | [diff] [blame] | 97 | } |