{-# LANGUAGE ConstraintKinds #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-}
module Data.StringVariants.Util (SymbolNonEmpty, SymbolWithNoSpaceAround, SymbolNoLongerThan, usePositiveNat, textIsWhitespace, textHasNoMeaningfulContent) where
import Data.Proxy
import Data.Kind (Constraint)
import Data.Type.Bool
import Data.Type.Equality
import GHC.TypeLits
import Prelude
import Data.Text (Text)
import qualified Data.Text as T
import Data.Char (isSpace, isControl)
textIsWhitespace :: Text -> Bool
textIsWhitespace :: Text -> Bool
textIsWhitespace = (Char -> Bool) -> Text -> Bool
T.all Char -> Bool
isSpace
textHasNoMeaningfulContent :: Text -> Bool
textHasNoMeaningfulContent :: Text -> Bool
textHasNoMeaningfulContent = (Char -> Bool) -> Text -> Bool
T.all (\Char
c -> Char -> Bool
isSpace Char
c Bool -> Bool -> Bool
|| Char -> Bool
isControl Char
c)
usePositiveNat :: Integer -> a -> (forall n proxy. (KnownNat n, 1 <= n) => proxy n -> a) -> a
usePositiveNat :: forall a.
Integer
-> a
-> (forall (n :: Nat) (proxy :: Nat -> *).
(KnownNat n, 1 <= n) =>
proxy n -> a)
-> a
usePositiveNat Integer
n a
a forall (n :: Nat) (proxy :: Nat -> *).
(KnownNat n, 1 <= n) =>
proxy n -> a
f = case Integer -> Maybe SomeNat
someNatVal Integer
n of
Maybe SomeNat
Nothing -> a
a
Just (SomeNat Proxy n
p) -> case forall (a :: Nat) (b :: Nat) (proxy1 :: Nat -> *)
(proxy2 :: Nat -> *).
(KnownNat a, KnownNat b) =>
proxy1 a -> proxy2 b -> OrderingI a b
cmpNat (forall {k} (t :: k). Proxy t
Proxy @1) Proxy n
p of
OrderingI 1 n
EQI -> forall (n :: Nat) (proxy :: Nat -> *).
(KnownNat n, 1 <= n) =>
proxy n -> a
f Proxy n
p
OrderingI 1 n
LTI -> forall (n :: Nat) (proxy :: Nat -> *).
(KnownNat n, 1 <= n) =>
proxy n -> a
f Proxy n
p
OrderingI 1 n
GTI -> a
a
type IsCharWhitespace c
= If
(CharToNat c <=? 0x376)
(CharToNat c == 32 || CharToNat c - 0x9 <=? 4 || CharToNat c == 0xa0)
(IsUnicodeWhitespaceCodePoint (CharToNat c))
type IsUnicodeWhitespaceCodePoint n
= n == 0x1680
|| (0x2000 <=? n && n <=? 0x200A)
|| n == 0x2028 || n == 0x2029 || n == 0x202F || n == 0x205F || n == 0x3000
type family SymbolLength (length :: Nat) (s :: Maybe (Char, Symbol)) :: Nat where
SymbolLength length 'Nothing = length
SymbolLength length ('Just '(_, s)) = SymbolLength (length + 1) (UnconsSymbol s)
type family SymbolNonEmpty (s :: Symbol) :: Constraint where
SymbolNonEmpty "" = TypeError ('Text "Symbol is empty")
SymbolNonEmpty _ = ()
type family SymbolNoLeadingSpace (s :: Maybe (Char, Symbol)) :: Constraint where
SymbolNoLeadingSpace 'Nothing = ()
SymbolNoLeadingSpace ('Just '(c, _)) = If (IsCharWhitespace c) (TypeError ('Text "Symbol has leading whitespace")) (() :: Constraint)
type family SymbolNoTrailingSpace (s :: Maybe (Char, Symbol)) :: Constraint where
SymbolNoTrailingSpace 'Nothing = ()
SymbolNoTrailingSpace ('Just '(c, "")) = If (IsCharWhitespace c) (TypeError ('Text "Symbol has trailing whitespace")) (() :: Constraint)
SymbolNoTrailingSpace ('Just '(_, s)) = SymbolNoTrailingSpace (UnconsSymbol s)
type SymbolWithNoSpaceAround s = (SymbolNoLeadingSpace (UnconsSymbol s), SymbolNoTrailingSpace (UnconsSymbol s))
type family SymbolNoLongerThan (s :: Symbol) (n :: Nat) :: Constraint where
SymbolNoLongerThan s n = If (SymbolLength 0 (UnconsSymbol s) <=? n)
(() :: Constraint)
(TypeError ('Text "Invalid NonEmptyText. Needs to be <= " ':<>: 'ShowType n ':<>: 'Text " characters. Has " ':<>: 'ShowType (SymbolLength 0 (UnconsSymbol s)) ':<>: 'Text " characters."))