kafka-device-0.2.1.0: src/Network/UI/Kafka.hs
{-|
Module : $Header$
Copyright : (c) 2016-17 Brian W Bush
License : MIT
Maintainer : Brian W Bush <consult@brianwbush.info>
Stability : Experimental
Portability : Stable
Produce and consume events on Kafka topics.
-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE RecordWildCards #-}
module Network.UI.Kafka (
-- * Types
TopicConnection(..)
, Sensor
, LoopAction
, ExitAction
-- * Consumption
, ConsumerCallback
, consumerLoop
-- * Production
, ProducerCallback
, producerLoop
) where
import Control.Arrow ((***))
import Control.Concurrent (MVar, newEmptyMVar, isEmptyMVar, threadDelay, tryPutMVar)
import Control.Monad (void, when)
import Control.Monad.Except (liftIO)
import Data.Aeson.Types (FromJSON, ToJSON)
import Data.Binary (decode, encode)
import Data.ByteString.Char8 (pack, unpack)
import Data.ByteString.Lazy (fromStrict, toStrict)
import Data.String (IsString(fromString))
import GHC.Generics (Generic)
import Network.UI.Kafka.Types (Event)
import Network.Kafka (KafkaClientError, KafkaTime(..), TopicAndMessage(..), getLastOffset, mkKafkaState, runKafka, withAddressHandle)
import Network.Kafka.Consumer (fetch', fetchMessages, fetchRequest)
import Network.Kafka.Producer (makeKeyedMessage, produceMessages)
import Network.Kafka.Protocol (FetchResponse(..), KafkaBytes(..), Key(..), Message(..), Value(..))
-- | Connection information for a Kafka topic.
data TopicConnection =
TopicConnection
{
client :: String -- ^ A name for the Kafka client.
, address :: (String, Int) -- ^ The host name and port for the Kafka broker.
, topic :: String -- ^ The Kafka topic name.
}
deriving (Eq, Generic, Read, Show)
instance FromJSON TopicConnection
instance ToJSON TopicConnection
-- | A name for a sensor.
type Sensor = String
-- | Action for iterating to produce or consume events.
type LoopAction = IO (Either KafkaClientError ())
-- | Action for ending iteration.
type ExitAction = IO ()
-- | Callback for consuming events from a sensor.
type ConsumerCallback = Sensor -- ^ The name of the sensor producing the event.
-> Event -- ^ The event.
-> IO () -- ^ The action for consuming the event.
-- | Consume events for a Kafka topic.
consumerLoop :: TopicConnection -- ^ The Kafka topic name and connection information.
-> ConsumerCallback -- ^ The consumer callback.
-> IO (ExitAction, LoopAction) -- ^ Action to create the exit and loop actions.
consumerLoop TopicConnection{..} consumer =
do
exitFlag <- newEmptyMVar :: IO (MVar ())
let
topic' = fromString topic
address' = fromString *** fromIntegral $ address
fromMessage :: Message -> (Sensor, Event)
fromMessage message =
let
(_, _, _, Key (Just (KBytes k)), Value (Just (KBytes v))) = _messageFields message
in
(unpack k, decode $ fromStrict v)
loop offset =
do
result <- withAddressHandle address' $ \handle -> fetch' handle =<< fetchRequest offset 0 topic'
let
(_, [(_, _, offset', _)]) : _ = _fetchResponseFields result
messages = fromMessage . _tamMessage <$> fetchMessages result
liftIO
$ do
mapM_ (uncurry consumer) messages
threadDelay 7500 -- FIXME: Is a thread delay really necessary in order not to miss messages? Why?
running <- liftIO $ isEmptyMVar exitFlag
when running
$ loop offset'
return
(
void $ tryPutMVar exitFlag ()
, fmap void $ runKafka (mkKafkaState (fromString client) address')
$ do
offset <- getLastOffset LatestTime 0 topic'
loop offset
)
-- | Callback for producing events from a sensor.
type ProducerCallback = IO [Event] -- ^ Action for producing events.
-- | Produce events for a Kafka topic.
producerLoop :: TopicConnection -- ^ The Kafka topic name and connection information.
-> Sensor -- ^ The name of the sensor producing the event.
-> ProducerCallback -- ^ The producer callback.
-> IO (ExitAction, LoopAction) -- ^ Action to create the exit and loop actions.
producerLoop TopicConnection{..} sensor producer =
do
exitFlag <- newEmptyMVar :: IO (MVar ())
let
loop =
do
events <- liftIO producer
void
$ produceMessages
$ map
(TopicAndMessage (fromString topic) . makeKeyedMessage (pack sensor) . toStrict . encode)
events
running <- liftIO $ isEmptyMVar exitFlag
when running
loop
return
(
void $ tryPutMVar exitFlag ()
, void <$> runKafka (mkKafkaState (fromString client) (fromString *** fromIntegral $ address)) loop
)