{-# LANGUAGE DataKinds #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-}
module Network.AMQP.Worker.Key
( Key (..)
, Bind (..)
, Route
, key
, word
, any1
, many
, keyText
, fromBind
, toBind
, toBindKey
, RequireRoute
) where
import Data.Kind (Constraint, Type)
import qualified Data.List as List
import Data.Text (Text)
import qualified Data.Text as Text
import GHC.TypeLits (ErrorMessage (..), TypeError)
newtype Key a msg = Key [Bind]
deriving (Key a msg -> Key a msg -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
forall a msg. Key a msg -> Key a msg -> Bool
/= :: Key a msg -> Key a msg -> Bool
$c/= :: forall a msg. Key a msg -> Key a msg -> Bool
== :: Key a msg -> Key a msg -> Bool
$c== :: forall a msg. Key a msg -> Key a msg -> Bool
Eq, Int -> Key a msg -> ShowS
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
forall a msg. Int -> Key a msg -> ShowS
forall a msg. [Key a msg] -> ShowS
forall a msg. Key a msg -> String
showList :: [Key a msg] -> ShowS
$cshowList :: forall a msg. [Key a msg] -> ShowS
show :: Key a msg -> String
$cshow :: forall a msg. Key a msg -> String
showsPrec :: Int -> Key a msg -> ShowS
$cshowsPrec :: forall a msg. Int -> Key a msg -> ShowS
Show, NonEmpty (Key a msg) -> Key a msg
Key a msg -> Key a msg -> Key a msg
forall b. Integral b => b -> Key a msg -> Key a msg
forall a.
(a -> a -> a)
-> (NonEmpty a -> a)
-> (forall b. Integral b => b -> a -> a)
-> Semigroup a
forall a msg. NonEmpty (Key a msg) -> Key a msg
forall a msg. Key a msg -> Key a msg -> Key a msg
forall a msg b. Integral b => b -> Key a msg -> Key a msg
stimes :: forall b. Integral b => b -> Key a msg -> Key a msg
$cstimes :: forall a msg b. Integral b => b -> Key a msg -> Key a msg
sconcat :: NonEmpty (Key a msg) -> Key a msg
$csconcat :: forall a msg. NonEmpty (Key a msg) -> Key a msg
<> :: Key a msg -> Key a msg -> Key a msg
$c<> :: forall a msg. Key a msg -> Key a msg -> Key a msg
Semigroup, Key a msg
[Key a msg] -> Key a msg
Key a msg -> Key a msg -> Key a msg
forall a.
Semigroup a -> a -> (a -> a -> a) -> ([a] -> a) -> Monoid a
forall a msg. Semigroup (Key a msg)
forall a msg. Key a msg
forall a msg. [Key a msg] -> Key a msg
forall a msg. Key a msg -> Key a msg -> Key a msg
mconcat :: [Key a msg] -> Key a msg
$cmconcat :: forall a msg. [Key a msg] -> Key a msg
mappend :: Key a msg -> Key a msg -> Key a msg
$cmappend :: forall a msg. Key a msg -> Key a msg -> Key a msg
mempty :: Key a msg
$cmempty :: forall a msg. Key a msg
Monoid)
data Route
data Bind
= Word Text
| Any
| Many
deriving (Bind -> Bind -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Bind -> Bind -> Bool
$c/= :: Bind -> Bind -> Bool
== :: Bind -> Bind -> Bool
$c== :: Bind -> Bind -> Bool
Eq, Int -> Bind -> ShowS
[Bind] -> ShowS
Bind -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Bind] -> ShowS
$cshowList :: [Bind] -> ShowS
show :: Bind -> String
$cshow :: Bind -> String
showsPrec :: Int -> Bind -> ShowS
$cshowsPrec :: Int -> Bind -> ShowS
Show)
fromBind :: Bind -> Text
fromBind :: Bind -> Text
fromBind (Word Text
t) = Text
t
fromBind Bind
Any = Text
"*"
fromBind Bind
Many = Text
"#"
toBind :: Text -> Bind
toBind :: Text -> Bind
toBind = Text -> Bind
Word
keyText :: Key a msg -> Text
keyText :: forall a msg. Key a msg -> Text
keyText (Key [Bind]
ns) =
Text -> [Text] -> Text
Text.intercalate Text
"." forall b c a. (b -> c) -> (a -> b) -> a -> c
. forall a b. (a -> b) -> [a] -> [b]
List.map Bind -> Text
fromBind forall a b. (a -> b) -> a -> b
$ [Bind]
ns
key :: Text -> Key Route msg
key :: forall msg. Text -> Key Route msg
key Text
t = forall a msg. [Bind] -> Key a msg
Key [Text -> Bind
Word Text
t]
word :: Text -> Key a msg -> Key a msg
word :: forall a msg. Text -> Key a msg -> Key a msg
word Text
w (Key [Bind]
ws) = forall a msg. [Bind] -> Key a msg
Key forall a b. (a -> b) -> a -> b
$ [Bind]
ws forall a. [a] -> [a] -> [a]
++ [Text -> Bind
toBind Text
w]
any1 :: Key a msg -> Key Bind msg
any1 :: forall a msg. Key a msg -> Key Bind msg
any1 (Key [Bind]
ws) = forall a msg. [Bind] -> Key a msg
Key ([Bind]
ws forall a. [a] -> [a] -> [a]
++ [Bind
Any])
many :: Key a msg -> Key Bind msg
many :: forall a msg. Key a msg -> Key Bind msg
many (Key [Bind]
ws) = forall a msg. [Bind] -> Key a msg
Key ([Bind]
ws forall a. [a] -> [a] -> [a]
++ [Bind
Many])
toBindKey :: Key a msg -> Key Bind msg
toBindKey :: forall a msg. Key a msg -> Key Bind msg
toBindKey (Key [Bind]
ws) = forall a msg. [Bind] -> Key a msg
Key [Bind]
ws
type family RequireRoute (a :: Type) :: Constraint where
RequireRoute Bind =
TypeError
( 'Text "Expected Routing Key but got Binding Key instead. Messages can be published only with keys that exclusivlely use `key` and `word`"
:$$: 'Text "\n key \"message\" & word \"new\" \n"
)
RequireRoute a = ()