hw-kafka-client-4.0.4: src/Kafka/Producer/Convert.hs
module Kafka.Producer.Convert
( copyMsgFlags
, producePartitionInt
, producePartitionCInt
, handleProduceErr
, handleProduceErr'
, handleProduceErrT
)
where
import Foreign.C.Error (getErrno)
import Foreign.C.Types (CInt)
import Kafka.Internal.RdKafka (RdKafkaRespErrT(..), rdKafkaMsgFlagCopy)
import Kafka.Internal.Shared (kafkaRespErr)
import Kafka.Types (KafkaError(..))
import Kafka.Producer.Types (ProducePartition(..))
copyMsgFlags :: Int
copyMsgFlags = rdKafkaMsgFlagCopy
{-# INLINE copyMsgFlags #-}
producePartitionInt :: ProducePartition -> Int
producePartitionInt UnassignedPartition = -1
producePartitionInt (SpecifiedPartition n) = n
{-# INLINE producePartitionInt #-}
producePartitionCInt :: ProducePartition -> CInt
producePartitionCInt = fromIntegral . producePartitionInt
{-# INLINE producePartitionCInt #-}
handleProduceErr :: Int -> IO (Maybe KafkaError)
handleProduceErr (- 1) = Just . kafkaRespErr <$> getErrno
handleProduceErr 0 = return Nothing
handleProduceErr _ = return $ Just KafkaInvalidReturnValue
{-# INLINE handleProduceErr #-}
handleProduceErrT :: RdKafkaRespErrT -> IO (Maybe KafkaError)
handleProduceErrT RdKafkaRespErrUnknown = Just . kafkaRespErr <$> getErrno
handleProduceErrT RdKafkaRespErrNoError = return Nothing
handleProduceErrT e = return $ Just (KafkaResponseError e)
{-# INLINE handleProduceErrT #-}
handleProduceErr' :: Int -> IO (Either KafkaError ())
handleProduceErr' (- 1) = Left . kafkaRespErr <$> getErrno
handleProduceErr' 0 = return (Right ())
handleProduceErr' _ = return $ Left KafkaInvalidReturnValue
{-# INLINE handleProduceErr' #-}