{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE NoRebindableSyntax #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TypeFamilies #-}
module Duckling.Numeral.Types where
import Control.DeepSeq
import Data.Aeson
import Data.Hashable
import Data.Maybe
import Data.Text (Text)
import GHC.Generics
import Prelude
import Duckling.Resolve
data NumeralData = NumeralData
{ value :: Double
, grain :: Maybe Int
, multipliable :: Bool
, okForAnyTime :: Bool
}
deriving (Eq, Generic, Hashable, Ord, Show, NFData)
instance Resolve NumeralData where
type ResolvedValue NumeralData = NumeralValue
resolve _ _ NumeralData {value} = Just (NumeralValue {vValue = value}, False)
newtype NumeralValue = NumeralValue { vValue :: Double }
deriving (Eq, Show)
instance ToJSON NumeralValue where
toJSON (NumeralValue value) = object
[ "type" .= ("value" :: Text)
, "value" .= value
]
getIntValue :: Double -> Maybe Int
getIntValue x = if rest == 0 then Just int else Nothing
where
(int, rest) = properFraction x :: (Int, Double)
isInteger :: Double -> Bool
isInteger = isJust . getIntValue
isIntegerBetween :: Double -> Int -> Int -> Bool
isIntegerBetween x low high = case getIntValue x of
Just int -> low <= int && int <= high
Nothing -> False