predicate-typed-0.7.4.1: src/Predicate/Data/String.hs
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ConstraintKinds #-}
{-# LANGUAGE ViewPatterns #-}
{-# LANGUAGE NoStarIsType #-}
{-# LANGUAGE EmptyDataDeriving #-}
-- | promoted String functions
module Predicate.Data.String (
TrimBoth
, TrimL
, TrimR
, StripR
, StripL
, IsPrefixC
, IsInfixC
, IsSuffixC
, IsPrefixCI
, IsInfixCI
, IsSuffixCI
, ToString
, FromString
, FromString'
) where
import Predicate.Core
import Predicate.Misc
import Predicate.Util
import qualified GHC.TypeLits as GL
import Control.Lens
import Data.List (dropWhileEnd)
import qualified Data.Text.Lens as DTL
import Data.Proxy (Proxy(Proxy))
import Data.Kind (Type)
import Data.String (IsString(..))
import Data.Char (isSpace, toLower)
import Data.Function (on)
import qualified Data.ByteString.Char8 as BS8
import qualified Data.ByteString.Lazy.Char8 as BL8
import qualified Data.Text as T
import qualified Data.Text.Lazy as TL
import Control.Arrow (second)
-- $setup
-- >>> :set -XDataKinds
-- >>> :set -XTypeApplications
-- >>> :set -XTypeOperators
-- >>> :set -XOverloadedStrings
-- >>> import qualified Data.Text as T
-- >>> import Predicate.Prelude
-- >>> import qualified Data.Sequence as Seq
data TrimImpl (left :: Bool) (right :: Bool) deriving Show
instance ( FailUnlessT (OrT l r)
('GL.Text "TrimImpl: left and right cannot both be False")
, GetBool l
, GetBool r
, DTL.IsText x
) => P (TrimImpl l r) x where
type PP (TrimImpl l r) x = x
eval _ opts x =
let msg0 = "Trim" ++ (if l && r then "Both" else if l then "L" else "R")
l = getBool @l
r = getBool @r
p = view DTL.unpacked x
fl = if l then dropWhile isSpace else id
fr = if r then dropWhileEnd isSpace else id
b = (fl . fr) p
in pure $ mkNode opts (Val (b ^. DTL.packed)) (msg0 <> litL opts b <> litVerbose opts " | " p) []
-- | similar to 'T.stripStart'
--
-- >>> pz @(Snd >> TrimL) (20," abc ")
-- Val "abc "
--
data TrimL deriving Show
type TrimLT = TrimImpl 'True 'False
instance P TrimLT x => P TrimL x where
type PP TrimL x = PP TrimLT x
eval _ = eval (Proxy @TrimLT)
-- | similar to 'T.stripEnd'
--
-- >>> pz @(Snd >> TrimR) (20," abc ")
-- Val " abc"
--
-- >>> pz @(" abc " >> TrimR) ()
-- Val " abc"
--
-- >>> pz @("" >> TrimR) ()
-- Val ""
--
data TrimR deriving Show
type TrimRT = TrimImpl 'False 'True
instance P TrimRT x => P TrimR x where
type PP TrimR x = PP TrimRT x
eval _ = eval (Proxy @TrimRT)
-- | similar to 'T.strip'
--
-- >>> pz @(Snd >> TrimBoth) (20," abc ")
-- Val "abc"
--
-- >>> pz @(Snd >> TrimBoth) (20,T.pack " abc ")
-- Val "abc"
--
-- >>> pz @(" " >> TrimBoth) ()
-- Val ""
--
-- >>> pz @("" >> TrimBoth) ()
-- Val ""
--
data TrimBoth deriving Show
type TrimBothT = TrimImpl 'True 'True
instance P TrimBothT x => P TrimBoth x where
type PP TrimBoth x = PP TrimBothT x
eval _ = eval (Proxy @TrimBothT)
data StripImpl(left :: Bool) p q deriving Show
instance ( GetBool l
, PP p x ~ String
, P p x
, DTL.IsText (PP q x)
, P q x
) => P (StripImpl l p q) x where
type PP (StripImpl l p q) x = Maybe (PP q x)
eval _ opts x = do
let msg0 = "Strip" ++ if l then "L" else "R"
l = getBool @l
lr <- runPQ NoInline msg0 (Proxy @p) (Proxy @q) opts x []
pure $ case lr of
Left e -> e
Right (p,view DTL.unpacked -> q,pp,qq) ->
let b = if l then
let (before,after) = splitAt (length p) q
in if before == p then Just after else Nothing
else
let (before,after) = splitAt (length q - length p) q
in if after == p then Just before else Nothing
in mkNode opts (Val (fmap (view DTL.packed) b)) (msg0 <> showL opts b <> litVerbose opts " | p=" p <> litVerbose opts " | q=" q) [hh pp, hh qq]
-- | similar to 'T.stripLeft'
--
-- >>> pz @(StripL "xyz" Id) "xyzHello"
-- Val (Just "Hello")
--
-- >>> pz @(StripL "xyz" Id) (T.pack "xyzHello")
-- Val (Just "Hello")
--
-- >>> pz @(StripL "xyz" Id) "xywHello"
-- Val Nothing
--
data StripL p q deriving Show
type StripLT p q = StripImpl 'True p q
instance P (StripLT p q) x => P (StripL p q) x where
type PP (StripL p q) x = PP (StripLT p q) x
eval _ = eval (Proxy @(StripLT p q))
-- | similar to 'T.stripRight'
--
-- >>> pz @(StripR "xyz" Id) "Hello xyz"
-- Val (Just "Hello ")
--
-- >>> pz @(StripR "xyz" Id) "xyzHelloxyw"
-- Val Nothing
--
-- >>> pz @(StripR "xyz" Id) ""
-- Val Nothing
--
-- >>> pz @(StripR "xyz" "xyz") ()
-- Val (Just "")
--
data StripR p q deriving Show
type StripRT p q = StripImpl 'False p q
instance P (StripRT p q) x => P (StripR p q) x where
type PP (StripR p q) x = PP (StripRT p q) x
eval _ = eval (Proxy @(StripRT p q))
data IsFixImplC (cmp :: Ordering) (ignore :: Bool) p q deriving Show
instance ( GetBool ignore
, P p x
, P q x
, PP p x ~ String
, PP q x ~ String
, GetOrdering cmp
) => P (IsFixImplC cmp ignore p q) x where
type PP (IsFixImplC cmp ignore p q) x = Bool
eval _ opts x = do
let cmp = getOrdering @cmp
ignore = getBool @ignore
lwr = if ignore then map toLower else id
(ff,msg0) = second (<>"C") $ cmpOf cmp
lr <- runPQ NoInline msg0 (Proxy @p) (Proxy @q) opts x []
pure $ case lr of
Left e -> e
Right (p,q,pp,qq) ->
let msg1 = msg0 <> (if ignore then "I" else "") <> " | " <> p
in mkNodeB opts (on ff lwr p q) (msg1 <> " " <> litL opts q) [hh pp, hh qq]
-- | similar to 'isPrefixOf' for strings
--
-- >>> pl @(IsPrefixC "xy" Id) "xyzabw"
-- True (IsPrefixC | xy xyzabw)
-- Val True
--
-- >>> pl @(IsPrefixC "ab" Id) "xyzbaw"
-- False (IsPrefixC | ab xyzbaw)
-- Val False
--
-- >>> pz @(IsPrefixC "abc" "aBcbCd") ()
-- Val False
--
data IsPrefixC p q deriving Show
type IsPrefixCT p q = IsFixImplC 'LT 'False p q
instance P (IsPrefixCT p q) x => P (IsPrefixC p q) x where
type PP (IsPrefixC p q) x = PP (IsPrefixCT p q) x
eval _ = evalBool (Proxy @(IsPrefixCT p q))
-- | similar to 'isInfixOf' for strings
--
-- >>> pl @(IsInfixC "ab" Id) "xyzabw"
-- True (IsInfixC | ab xyzabw)
-- Val True
--
-- >>> pl @(IsInfixC "aB" Id) "xyzAbw"
-- False (IsInfixC | aB xyzAbw)
-- Val False
--
-- >>> pl @(IsInfixC "ab" Id) "xyzbaw"
-- False (IsInfixC | ab xyzbaw)
-- Val False
--
-- >>> pl @(IsInfixC Fst Snd) ("ab","xyzabw")
-- True (IsInfixC | ab xyzabw)
-- Val True
--
data IsInfixC p q deriving Show
type IsInfixCT p q = IsFixImplC 'EQ 'False p q
instance P (IsInfixCT p q) x => P (IsInfixC p q) x where
type PP (IsInfixC p q) x = PP (IsInfixCT p q) x
eval _ = evalBool (Proxy @(IsInfixCT p q))
-- | similar to 'isSuffixOf' for strings
--
-- >>> pl @(IsSuffixC "bw" Id) "xyzabw"
-- True (IsSuffixC | bw xyzabw)
-- Val True
--
-- >>> pl @(IsSuffixC "bw" Id) "xyzbaw"
-- False (IsSuffixC | bw xyzbaw)
-- Val False
--
-- >>> pz @(IsSuffixC "bCd" "aBcbCd") ()
-- Val True
--
data IsSuffixC p q deriving Show
type IsSuffixCT p q = IsFixImplC 'GT 'False p q
instance P (IsSuffixCT p q) x => P (IsSuffixC p q) x where
type PP (IsSuffixC p q) x = PP (IsSuffixCT p q) x
eval _ = evalBool (Proxy @(IsSuffixCT p q))
-- | similar to case insensitive 'isPrefixOf' for strings
--
-- >>> pz @(IsPrefixCI "abc" "aBcbCd") ()
-- Val True
--
data IsPrefixCI p q deriving Show
type IsPrefixCIT p q = IsFixImplC 'LT 'True p q
instance P (IsPrefixCIT p q) x => P (IsPrefixCI p q) x where
type PP (IsPrefixCI p q) x = PP (IsPrefixCIT p q) x
eval _ = evalBool (Proxy @(IsPrefixCIT p q))
-- | similar to case insensitive 'isInfixOf' for strings
--
-- >>> pl @(IsInfixCI "aB" Id) "xyzAbw"
-- True (IsInfixCI | aB xyzAbw)
-- Val True
--
-- >>> pz @(IsInfixCI "abc" "axAbCd") ()
-- Val True
--
data IsInfixCI p q deriving Show
type IsInfixCIT p q = IsFixImplC 'EQ 'True p q
instance P (IsInfixCIT p q) x => P (IsInfixCI p q) x where
type PP (IsInfixCI p q) x = PP (IsInfixCIT p q) x
eval _ = evalBool (Proxy @(IsInfixCIT p q))
-- | similar to case insensitive 'isSuffixOf' for strings
--
data IsSuffixCI p q deriving Show
type IsSuffixCIT p q = IsFixImplC 'GT 'True p q
instance P (IsSuffixCIT p q) x => P (IsSuffixCI p q) x where
type PP (IsSuffixCI p q) x = PP (IsSuffixCIT p q) x
eval _ = evalBool (Proxy @(IsSuffixCIT p q))
-- | very simple conversion to a string
data ToString deriving Show
instance ToStringC x => P ToString x where
type PP ToString x = String
eval _ opts x = pure $ mkNode opts (Val (toStringC x)) "ToString" []
class ToStringC a where
toStringC :: a -> String
instance ToStringC String where
toStringC = id
instance ToStringC T.Text where
toStringC = T.unpack
instance ToStringC TL.Text where
toStringC = TL.unpack
instance ToStringC BL8.ByteString where
toStringC = BL8.unpack
instance ToStringC BS8.ByteString where
toStringC = BS8.unpack
-- | 'fromString' function where you need to provide a reference to the type @t@ of the result
data FromString' t p deriving Show
instance ( P p a
, PP p a ~ String
, Show (PP t a)
, IsString (PP t a)
) => P (FromString' t p) a where
type PP (FromString' t p) a = PP t a
eval _ opts a = do
let msg0 = "FromString"
pp <- eval (Proxy @p) opts a
pure $ case getValueLR NoInline opts msg0 pp [] of
Left e -> e
Right p ->
let b = fromString @(PP t a) p
in mkNode opts (Val b) (msg0 <> " " <> showL opts b) [hh pp]
-- | 'fromString' function where you need to provide the type @t@ of the result
--
-- >>> pz @(FromString (Identity _) Id) "abc"
-- Val (Identity "abc")
--
-- >>> pz @(FromString (Seq.Seq Char) Id) "abc"
-- Val (fromList "abc")
--
data FromString (t :: Type) p deriving Show
type FromStringPT (t :: Type) p = FromString' (Hole t) p
instance P (FromStringPT t p) x => P (FromString t p) x where
type PP (FromString t p) x = PP (FromStringPT t p) x
eval _ = eval (Proxy @(FromStringPT t p))