{-# LANGUAGE MagicHash #-}
{-# LANGUAGE PatternSynonyms #-}
{-# LANGUAGE UnboxedTuples #-}
{-# LANGUAGE ViewPatterns #-}

module Data.Maybe.Unpacked.Numeric.Word16
  ( Maybe (..)
  , just
  , nothing
  , maybe
  , isJust
  , isNothing
  , fromMaybe
  , listToMaybe
  , maybeToList
  , catMaybes
  , mapMaybe
  , toBaseMaybe
  , fromBaseMaybe
    -- * Patterns
  , pattern Nothing
  , pattern Just
  ) where

import Prelude hiding (Just, Maybe, Nothing, maybe)

import GHC.Base (build)
import GHC.Exts (Word#)
import GHC.Word (Word16)
import GHC.Word.Compat (pattern W16#)

import GHC.Read (Read (readPrec))
import Text.ParserCombinators.ReadPrec (prec, step)
import Text.Read (Lexeme (Ident), lexP, parens, (+++))

import qualified Prelude as P

data Maybe = Maybe (# (# #) | Word# #)

instance Eq Maybe where
  Maybe
ma == :: Maybe -> Maybe -> Bool
== Maybe
mb =
    Bool -> (Word16 -> Bool) -> Maybe -> Bool
forall a. a -> (Word16 -> a) -> Maybe -> a
maybe
      (Maybe -> Bool
isNothing Maybe
mb)
      (\Word16
a -> Bool -> (Word16 -> Bool) -> Maybe -> Bool
forall a. a -> (Word16 -> a) -> Maybe -> a
maybe Bool
False (\Word16
b -> Word16
a Word16 -> Word16 -> Bool
forall a. Eq a => a -> a -> Bool
== Word16
b) Maybe
mb)
      Maybe
ma

instance Ord Maybe where
  compare :: Maybe -> Maybe -> Ordering
compare Maybe
ma Maybe
mb = case Maybe
ma of
    Just Word16
a -> case Maybe
mb of
      Just Word16
b -> Word16 -> Word16 -> Ordering
forall a. Ord a => a -> a -> Ordering
compare Word16
a Word16
b
      Maybe
_ -> Ordering
GT
    Maybe
_ -> case Maybe
mb of
      Just{} -> Ordering
LT
      Maybe
_ -> Ordering
EQ

instance Show Maybe where
  showsPrec :: Int -> Maybe -> ShowS
showsPrec Int
p (Maybe (# (# #) | Word# #)
m) = case (# (# #) | Word# #)
m of
    (# (# #) | #) -> String -> ShowS
showString String
"nothing"
    (# | Word#
w #) ->
      Bool -> ShowS -> ShowS
showParen (Int
p Int -> Int -> Bool
forall a. Ord a => a -> a -> Bool
> Int
10) (ShowS -> ShowS) -> ShowS -> ShowS
forall a b. (a -> b) -> a -> b
$
        String -> ShowS
showString String
"just "
          ShowS -> ShowS -> ShowS
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Int -> Word16 -> ShowS
forall a. Show a => Int -> a -> ShowS
showsPrec Int
11 (Word# -> Word16
W16# Word#
w)

instance Read Maybe where
  readPrec :: ReadPrec Maybe
readPrec = ReadPrec Maybe -> ReadPrec Maybe
forall a. ReadPrec a -> ReadPrec a
parens (ReadPrec Maybe -> ReadPrec Maybe)
-> ReadPrec Maybe -> ReadPrec Maybe
forall a b. (a -> b) -> a -> b
$ ReadPrec Maybe
nothingP ReadPrec Maybe -> ReadPrec Maybe -> ReadPrec Maybe
forall a. ReadPrec a -> ReadPrec a -> ReadPrec a
+++ ReadPrec Maybe
justP
   where
    nothingP :: ReadPrec Maybe
nothingP = do
      Ident String
"nothing" <- ReadPrec Lexeme
lexP
      Maybe -> ReadPrec Maybe
forall a. a -> ReadPrec a
forall (m :: * -> *) a. Monad m => a -> m a
return Maybe
nothing
    justP :: ReadPrec Maybe
justP = Int -> ReadPrec Maybe -> ReadPrec Maybe
forall a. Int -> ReadPrec a -> ReadPrec a
prec Int
10 (ReadPrec Maybe -> ReadPrec Maybe)
-> ReadPrec Maybe -> ReadPrec Maybe
forall a b. (a -> b) -> a -> b
$ do
      Ident String
"just" <- ReadPrec Lexeme
lexP
      Word16
a <- ReadPrec Word16 -> ReadPrec Word16
forall a. ReadPrec a -> ReadPrec a
step ReadPrec Word16
forall a. Read a => ReadPrec a
readPrec
      Maybe -> ReadPrec Maybe
forall a. a -> ReadPrec a
forall (m :: * -> *) a. Monad m => a -> m a
return (Word16 -> Maybe
just Word16
a)

listToMaybe :: [Word16] -> Maybe
listToMaybe :: [Word16] -> Maybe
listToMaybe [] = Maybe
nothing
listToMaybe (Word16
x : [Word16]
_) = Word16 -> Maybe
just Word16
x

maybeToList :: Maybe -> [Word16]
maybeToList :: Maybe -> [Word16]
maybeToList = [Word16] -> (Word16 -> [Word16]) -> Maybe -> [Word16]
forall a. a -> (Word16 -> a) -> Maybe -> a
maybe [] (Word16 -> [Word16] -> [Word16]
forall a. a -> [a] -> [a]
: [])

catMaybes :: [Maybe] -> [Word16]
catMaybes :: [Maybe] -> [Word16]
catMaybes = (Maybe -> Maybe) -> [Maybe] -> [Word16]
forall a. (a -> Maybe) -> [a] -> [Word16]
mapMaybe Maybe -> Maybe
forall a. a -> a
id

mapMaybe :: (a -> Maybe) -> [a] -> [Word16]
mapMaybe :: forall a. (a -> Maybe) -> [a] -> [Word16]
mapMaybe a -> Maybe
_ [] = []
mapMaybe a -> Maybe
f (a
a : [a]
as) =
  let ws :: [Word16]
ws = (a -> Maybe) -> [a] -> [Word16]
forall a. (a -> Maybe) -> [a] -> [Word16]
mapMaybe a -> Maybe
f [a]
as
   in [Word16] -> (Word16 -> [Word16]) -> Maybe -> [Word16]
forall a. a -> (Word16 -> a) -> Maybe -> a
maybe [Word16]
ws (Word16 -> [Word16] -> [Word16]
forall a. a -> [a] -> [a]
: [Word16]
ws) (a -> Maybe
f a
a)
{-# NOINLINE [1] mapMaybe #-}

{-# RULES
"mapMaybe" [~1] forall f xs.
  mapMaybe f xs =
    build (\c n -> foldr (mapMaybeFB c f) n xs)
"mapMaybeList" [1] forall f. foldr (mapMaybeFB (:) f) [] = mapMaybe f
  #-}

{-# NOINLINE [0] mapMaybeFB #-}
mapMaybeFB :: (Word16 -> r -> r) -> (a -> Maybe) -> a -> r -> r
mapMaybeFB :: forall r a. (Word16 -> r -> r) -> (a -> Maybe) -> a -> r -> r
mapMaybeFB Word16 -> r -> r
cons a -> Maybe
f a
x r
next = r -> (Word16 -> r) -> Maybe -> r
forall a. a -> (Word16 -> a) -> Maybe -> a
maybe r
next ((Word16 -> r -> r) -> r -> Word16 -> r
forall a b c. (a -> b -> c) -> b -> a -> c
flip Word16 -> r -> r
cons r
next) (a -> Maybe
f a
x)

isNothing :: Maybe -> Bool
isNothing :: Maybe -> Bool
isNothing = Bool -> (Word16 -> Bool) -> Maybe -> Bool
forall a. a -> (Word16 -> a) -> Maybe -> a
maybe Bool
True (Bool -> Word16 -> Bool
forall a b. a -> b -> a
const Bool
False)

isJust :: Maybe -> Bool
isJust :: Maybe -> Bool
isJust = Bool -> (Word16 -> Bool) -> Maybe -> Bool
forall a. a -> (Word16 -> a) -> Maybe -> a
maybe Bool
False (Bool -> Word16 -> Bool
forall a b. a -> b -> a
const Bool
True)

nothing :: Maybe
nothing :: Maybe
nothing = (# (# #) | Word# #) -> Maybe
Maybe (# (# #) | #)

just :: Word16 -> Maybe
just :: Word16 -> Maybe
just (W16# Word#
w) = (# (# #) | Word# #) -> Maybe
Maybe (# | Word#
w #)

fromMaybe :: Word16 -> Maybe -> Word16
fromMaybe :: Word16 -> Maybe -> Word16
fromMaybe Word16
a (Maybe (# (# #) | Word# #)
m) = case (# (# #) | Word# #)
m of
  (# (# #) | #) -> Word16
a
  (# | Word#
w #) -> Word# -> Word16
W16# Word#
w

maybe :: a -> (Word16 -> a) -> Maybe -> a
maybe :: forall a. a -> (Word16 -> a) -> Maybe -> a
maybe a
a Word16 -> a
f (Maybe (# (# #) | Word# #)
m) = case (# (# #) | Word# #)
m of
  (# (# #) | #) -> a
a
  (# | Word#
w #) -> Word16 -> a
f (Word# -> Word16
W16# Word#
w)

toBaseMaybe :: Maybe -> P.Maybe Word16
toBaseMaybe :: Maybe -> Maybe Word16
toBaseMaybe = Maybe Word16 -> (Word16 -> Maybe Word16) -> Maybe -> Maybe Word16
forall a. a -> (Word16 -> a) -> Maybe -> a
maybe Maybe Word16
forall a. Maybe a
P.Nothing Word16 -> Maybe Word16
forall a. a -> Maybe a
P.Just

fromBaseMaybe :: P.Maybe Word16 -> Maybe
fromBaseMaybe :: Maybe Word16 -> Maybe
fromBaseMaybe = Maybe -> (Word16 -> Maybe) -> Maybe Word16 -> Maybe
forall b a. b -> (a -> b) -> Maybe a -> b
P.maybe Maybe
nothing Word16 -> Maybe
just

pattern Nothing :: Maybe
pattern $mNothing :: forall {r}. Maybe -> ((# #) -> r) -> ((# #) -> r) -> r
$bNothing :: Maybe
Nothing = Maybe (# (# #) | #)

pattern Just :: Word16 -> Maybe
pattern $mJust :: forall {r}. Maybe -> (Word16 -> r) -> ((# #) -> r) -> r
$bJust :: Word16 -> Maybe
Just i <- Maybe (# | (W16# -> i) #)
  where
    Just (W16# Word#
i) = (# (# #) | Word# #) -> Maybe
Maybe (# | Word#
i #)

{-# COMPLETE Nothing, Just #-}