avro-0.1.0.0: src/Data/Avro.hs
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE ConstraintKinds #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE MultiWayIf #-}
-- | Avro encoding and decoding routines.
--
-- This library provides a high level interface for encoding (and decoding)
-- Haskell values in Apache's Avro serialization format. The goal is to
-- match Aeson's API whenever reasonable, meaning user experience with one
-- effectively translate to the other.
--
-- Avro RPC is not currently supported.
--
-- **Library Structure**
--
-- The library structure includes:
-- * This module, 'Data.Avro', providing a high-level interface via
-- classes of 'FromAvro' and 'ToAvro' for decoding and encoding values.
-- * 'Data.Avro.Type' define the types of Avro data, providing a common
-- (intermediate) representation for any data that is encoded or decoded
-- by Data.Avro.
-- * 'Data.Avro.Encode' and 'Data.Avro.Decode': More
-- efficient conversion capable of avoiding the intermediate representation.
-- Also, the implementation of the en/decoding of the intermediate
-- representation.
-- * 'Data.Avro.Deconflict': translate decoded data from an
-- encoder schema to the (potentially different) decoder's schema.
-- * 'Data.Avro.Schema': Defines the type for Avro schema's and its JSON
-- encoding/decoding.
--
-- Example decoding:
--
-- Let's say you have an ADT and related schema:
--
-- @
-- {-# LANGUAGE OverloadedStrings #-}
-- import qualified Data.Avro.Types as Ty
-- import Data.Avro.Schema
-- import Data.Avro
-- import Data.List.NonEmpty (NonEmpty(..))
--
-- data MyEnum = A | B | C | D deriving (Eq,Ord,Show,Enum,Generic)
-- data MyStruct = MyStruct (Either MyEnum String) Int
--
-- meSchema :: Schema
-- meSchema = Schema $ mkEnum "MyEnum" [] Nothing Nothing ["A","B","C","D"]
--
-- msSchema :: Schema
-- msSchema =
-- Struct "MyStruct" Nothing [] Nothing Nothing
-- [ fld "enumOrString" eOrS (Just $ String "The Default")
-- , fld "int" Int (Just (Ty.Int 1))
-- ]
-- where
-- fld nm ty def = Field nm [] Nothing Nothing ty def
-- eOrS = mkUnion (meSchema :| [String])
--
-- instance ToAvro MyEnum where
-- toAvro = toAvroEnum
-- instance ToAvro MyStruct where
-- toAvro (MyStruct ab i) =
-- record [ "enumOrString" .= ab
-- , "int" .= i
-- ]
--
-- main = do
-- let val = MyStruct (Right "Hello") 1
-- print (fromAvro (toAvro val) == Success val)
--
-- @
module Data.Avro
( FromAvro(..)
, ToAvro(..)
, Avro
, (.:)
, (.=), record
, Result(..), badValue
, decode
, decodeContainer
, decodeContainerBytes
, encode
, encodeContainer
, encodeContainerWithSync
, schemaOf
) where
import Prelude as P
import Control.Arrow (first)
import qualified Data.Avro.Decode as D
import Data.Avro.Deconflict as C
import qualified Data.Avro.Encode as E
import Data.Avro.Schema as S
import Data.Avro.Types as T
import qualified Data.Binary.Get as G
import qualified Data.Binary.Put as P
import qualified Data.ByteString as B
import Data.ByteString.Lazy (ByteString)
import qualified Data.ByteString.Lazy as BL
import Data.Foldable (toList)
import qualified Data.HashMap.Strict as HashMap
import Data.Int
import Data.List.NonEmpty (NonEmpty(..))
import qualified Data.Map as Map
import Data.Monoid ((<>))
import Data.Text (Text)
import qualified Data.Text as Text
import qualified Data.Text.Lazy as TL
import Data.Tagged
import qualified Data.Vector as V
import Data.Word
-- |Decode a lazy bytestring using a given Schema.
decode :: FromAvro a => Schema -> ByteString -> Result a
decode sch bytes =
case D.decodeAvro sch bytes of
Right val -> fromAvro val
Left err -> Error err
-- |Decode a container and de-conflict the writer schema with a given
-- reader-schema. Exceptions are thrown instead of a 'Result' type to
-- allow this function to be read lazy (to be done in some later version).
decodeContainer :: FromAvro a => Schema -> ByteString -> [[a]]
decodeContainer readerSchema bs =
case D.decodeContainer bs of
Right (writerSchema,val) ->
let err e = error $ "Could not deconflict reader and writer schema." <> e
dec x =
case C.deconflict writerSchema readerSchema x of
Left e -> err e
Right v -> case fromAvro v of
Success x -> x
Error e -> error e
in P.map (P.map dec) val
Left err -> error err
encode :: ToAvro a => a -> BL.ByteString
encode = E.encodeAvro . toAvro
encodeContainer :: ToAvro a => [[a]] -> IO BL.ByteString
encodeContainer = E.encodeContainer . map (map toAvro)
encodeContainerWithSync :: ToAvro a => (Word64,Word64,Word64,Word64) -> [[a]] -> BL.ByteString
encodeContainerWithSync (a,b,c,d) = E.encodeContainerWithSync s . map (map toAvro)
where s = P.runPut $ mapM_ P.putWord64le [a,b,c,d]
-- |Like 'decodeContainer' but returns the avro-encoded bytes for each
-- object in the container instead of the Haskell type.
--
-- This is particularly useful when slicing up containers into one or more
-- smaller files. By extracting the original bytestring it is possible to
-- avoid re-encoding data.
decodeContainerBytes :: ByteString -> [[ByteString]]
decodeContainerBytes bs =
case D.decodeContainerWith schemaBytes bs of
Right (writerSchema, val) -> val
Left e -> error $ "Could not decode container: " <> e
where
schemaBytes sch =
do start <- G.bytesRead
end <- G.lookAhead $ do _ <- D.getAvroOf sch
G.bytesRead
G.getLazyByteString (end-start)
type Avro a = (FromAvro a, ToAvro a)
class FromAvro a where
fromAvro :: Value Type -> Result a
instance FromAvro (Value Type) where
fromAvro = pure
instance (ToAvro a, ToAvro b, FromAvro a, FromAvro b) => FromAvro (Either a b) where
fromAvro e@(T.Union _ v x) =
if | v == untag (schema :: Tagged a Type) -> Left <$> fromAvro x
| v == untag (schema :: Tagged b Type) -> Right <$> fromAvro x
| otherwise -> badValue e "either"
fromAvro x = badValue x "either"
instance FromAvro Bool where
fromAvro (T.Boolean b) = pure b
fromAvro v = badValue v "Bool"
instance FromAvro B.ByteString where
fromAvro (T.Bytes b) = pure b
fromAvro v = badValue v "ByteString"
instance FromAvro BL.ByteString where
fromAvro (T.Bytes b) = pure (BL.fromStrict b)
fromAvro v = badValue v "Lazy ByteString"
instance FromAvro Int where
fromAvro (T.Int i) | (fromIntegral i :: Integer) < fromIntegral (maxBound :: Int)
= pure (fromIntegral i)
fromAvro (T.Long i) | (fromIntegral i :: Integer) < fromIntegral (maxBound :: Int)
= pure (fromIntegral i)
fromAvro v = badValue v "Int"
instance FromAvro Int32 where
fromAvro (T.Int i) = pure (fromIntegral i)
fromAvro v = badValue v "Int32"
instance FromAvro Int64 where
fromAvro (T.Long i) = pure i
fromAvro (T.Int i) = pure (fromIntegral i)
fromAvro v = badValue v "Int64"
instance FromAvro Double where
fromAvro (T.Double d) = pure d
fromAvro v = badValue v "Double"
instance FromAvro a => FromAvro (Maybe a) where
fromAvro (T.Union (S.Null :| [_]) _ T.Null) = pure Nothing
fromAvro (T.Union (S.Null :| [_]) _ v) = Just <$> fromAvro v
fromAvro v = badValue v "Maybe a"
instance FromAvro a => FromAvro [a] where
fromAvro (T.Array vec) = mapM fromAvro $ toList vec
fromAvro v = badValue v "[a]"
instance FromAvro Text where
fromAvro (T.String txt) = pure txt
fromAvro v = badValue v "Text"
instance FromAvro TL.Text where
fromAvro (T.String txt) = pure (TL.fromStrict txt)
fromAvro v = badValue v "Lazy Text"
instance (FromAvro a) => FromAvro (Map.Map Text a) where
fromAvro (T.Record _ mp) = mapM fromAvro $ Map.fromList (HashMap.toList mp)
fromAvro (T.Map mp) = mapM fromAvro $ Map.fromList (HashMap.toList mp)
fromAvro v = badValue v "Map Text a"
instance (FromAvro a) => FromAvro (HashMap.HashMap Text a) where
fromAvro (T.Record _ mp) = mapM fromAvro mp
fromAvro (T.Map mp) = mapM fromAvro mp
fromAvro v = badValue v "HashMap Text a"
badValue :: Value Type -> String -> Result a
badValue v t = fail $ "Unexpected value when decoding for '" <> t <> "': " <> show v
(.:) :: FromAvro a => HashMap.HashMap Text (Value Type) -> Text -> Result a
(.:) obj key =
case HashMap.lookup key obj of
Nothing -> fail $ "Requested field not available: " <> show key
Just v -> fromAvro v
(.=) :: ToAvro a => Text -> a -> (Text,T.Value Type)
(.=) nm val = (nm,toAvro val)
record :: Foldable f => Type -> f (Text,T.Value Type) -> T.Value Type
record ty = T.Record ty . HashMap.fromList . toList
class ToAvro a where
toAvro :: a -> T.Value Type
schema :: Tagged a Type
schemaOf :: (ToAvro a) => a -> Type
schemaOf = witness schema
instance ToAvro Bool where
toAvro = T.Boolean
schema = Tagged S.Boolean
instance ToAvro () where
toAvro _ = T.Null
schema = Tagged S.Null
instance ToAvro Int where
toAvro = T.Long . fromIntegral
schema = Tagged S.Long
instance ToAvro Int32 where
toAvro = T.Int
schema = Tagged S.Int
instance ToAvro Int64 where
toAvro = T.Long
schema = Tagged S.Long
instance ToAvro Double where
toAvro = T.Double
schema = Tagged S.Double
instance ToAvro Text.Text where
toAvro = T.String
schema = Tagged S.String
instance ToAvro TL.Text where
toAvro = T.String . TL.toStrict
schema = Tagged S.String
instance ToAvro B.ByteString where
toAvro = T.Bytes
schema = Tagged S.Bytes
instance ToAvro BL.ByteString where
toAvro = T.Bytes . BL.toStrict
schema = Tagged S.Bytes
instance (ToAvro a, ToAvro b) => ToAvro (Either a b) where
toAvro e =
let sch@(l:|[r]) = options (schemaOf e)
in case e of
Left a -> T.Union sch l (toAvro a)
Right b -> T.Union sch r (toAvro b)
schema = Tagged $ mkUnion (untag (schema :: Tagged a Type) :| [untag (schema :: Tagged b Type)])
instance (ToAvro a) => ToAvro (Map.Map Text a) where
toAvro = toAvro . HashMap.fromList . Map.toList
schema = wrapTag S.Map (schema :: Tagged a Type)
instance (ToAvro a) => ToAvro (HashMap.HashMap Text a) where
toAvro = T.Map . HashMap.map toAvro
schema = wrapTag S.Map (schema :: Tagged a Type)
instance (ToAvro a) => ToAvro (Map.Map TL.Text a) where
toAvro = toAvro . HashMap.fromList . map (first TL.toStrict) . Map.toList
schema = wrapTag S.Map (schema :: Tagged a Type)
instance (ToAvro a) => ToAvro (HashMap.HashMap TL.Text a) where
toAvro = toAvro . HashMap.fromList . map (first TL.toStrict) . HashMap.toList
schema = wrapTag S.Map (schema :: Tagged a Type)
instance (ToAvro a) => ToAvro (Map.Map String a) where
toAvro = toAvro . HashMap.fromList . map (first Text.pack) . Map.toList
schema = wrapTag S.Map (schema :: Tagged a Type)
instance (ToAvro a) => ToAvro (HashMap.HashMap String a) where
toAvro = toAvro . HashMap.fromList . map (first Text.pack) . HashMap.toList
schema = wrapTag S.Map (schema :: Tagged a Type)
instance (ToAvro a) => ToAvro (Maybe a) where
toAvro a =
let sch@(l:|[r]) = options (schemaOf a)
in case a of
Nothing -> T.Union sch S.Null (toAvro ())
Just v -> T.Union sch r (toAvro v)
schema = Tagged $ mkUnion (S.Null:| [untag (schema :: Tagged a Type)])
instance (ToAvro a) => ToAvro [a] where
toAvro = T.Array . V.fromList . (toAvro <$>)
schema = wrapTag S.Array (schema :: Tagged a Type)
wrapTag :: (Type -> Type) -> Tagged a Type -> Tagged b Type
wrapTag f = Tagged . f . untag
{-# INLINE wrapTag #-}
-- @enumToAvro val@ will generate an Avro encoded value of enum suitable
-- for serialization ('encode').
-- enumToAvro :: (Show a, Enum a, Bounded a, Generic a) => a -> T.Value Type
-- enumToAvro e = T.Enum ty (show e)
-- where
-- ty = S.Enum nm Nothing [] Nothing (map (Text.pack . show) [minBound..maxBound])
-- nm = datatypeName g
-- g = from e -- GHC generics