{-# LANGUAGE TemplateHaskellQuotes #-}

{-|
Module      : GHCup.Utils.String.QQ
Description : String quasi quoters
Copyright   : (c) Audrey Tang <audreyt@audreyt.org> 2019, Julian Ospald <hasufell@posteo.de> 2020
License     : LGPL-3.0
Maintainer  : hasufell@hasufell.de
Stability   : experimental
Portability : portable

QuasiQuoter for non-interpolated strings, texts and bytestrings.

The "s" quoter contains a multi-line string with no interpolation at all,
except that the leading newline is trimmed and carriage returns stripped.

@
{-\# LANGUAGE QuasiQuotes #-}
import Data.Text (Text)
import Data.String.QQ
foo :: Text -- "String", "ByteString" etc also works
foo = [s|
Well here is a
    multi-line string!
|]
@

Any instance of the IsString type is permitted.

(For GHC versions 6, write "[$s||]" instead of "[s||]".)

-}
module GHCup.Utils.String.QQ
  ( s
  )
where


import           Data.Char
import           GHC.Exts                       ( IsString(..) )
import           Language.Haskell.TH.Quote

-- | QuasiQuoter for a non-interpolating ASCII IsString literal.
-- The pattern portion is undefined.
s :: QuasiQuoter
s :: QuasiQuoter
s = (String -> Q Exp)
-> (String -> Q Pat)
-> (String -> Q Type)
-> (String -> Q [Dec])
-> QuasiQuoter
QuasiQuoter
  (\String
s' -> case (Char -> Bool) -> String -> Bool
forall (t :: * -> *) a. Foldable t => (a -> Bool) -> t a -> Bool
all Char -> Bool
isAscii String
s' of
    Bool
True  -> (\String
a -> [|fromString a|]) (String -> Q Exp) -> (String -> String) -> String -> Q Exp
forall b c a. (b -> c) -> (a -> b) -> a -> c
. String -> String
trimLeadingNewline (String -> String) -> (String -> String) -> String -> String
forall b c a. (b -> c) -> (a -> b) -> a -> c
. String -> String
removeCRs (String -> Q Exp) -> String -> Q Exp
forall a b. (a -> b) -> a -> b
$ String
s'
    Bool
False -> String -> Q Exp
forall (m :: * -> *) a. MonadFail m => String -> m a
fail String
"Not ascii"
  )
  (String -> String -> Q Pat
forall a. HasCallStack => String -> a
error String
"Cannot use s as a pattern")
  (String -> String -> Q Type
forall a. HasCallStack => String -> a
error String
"Cannot use s as a type")
  (String -> String -> Q [Dec]
forall a. HasCallStack => String -> a
error String
"Cannot use s as a dec")
 where
  removeCRs :: String -> String
removeCRs = (Char -> Bool) -> String -> String
forall a. (a -> Bool) -> [a] -> [a]
filter (Char -> Char -> Bool
forall a. Eq a => a -> a -> Bool
/= Char
'\r')
  trimLeadingNewline :: String -> String
trimLeadingNewline (Char
'\n' : String
xs) = String
xs
  trimLeadingNewline String
xs          = String
xs