module Text.Trifecta.Render
( Render(..)
, Renderable(..)
, Source(..)
, surface
, addCaret
, addSpan
, addFixit
, draw
, ifNear
, (.#)
, drawCaret
, drawFixit
, drawSpan
, caretEffects, fixitEffects, spanEffects, outOfRangeEffects
) where
import Data.ByteString hiding (groupBy, empty, any)
import qualified Data.ByteString.UTF8 as UTF8
import Data.List (groupBy)
import Data.Function (on)
import Text.Trifecta.Delta
import Data.Semigroup
import Data.Array
import Text.Trifecta.Bytes
import Text.PrettyPrint.Leijen.Extras hiding (column)
import System.Console.Terminfo.Color
import System.Console.Terminfo.PrettyPrint
import Control.Monad.State
import Prelude as P
caretEffects, fixitEffects, spanEffects, sourceEffects :: [ScopedEffect]
caretEffects = [soft (Foreground Green), soft Bold]
fixitEffects = [soft (Foreground Blue)]
spanEffects = [soft (Foreground Green)]
sourceEffects = []
outOfRangeEffects :: [ScopedEffect] -> [ScopedEffect]
outOfRangeEffects xs = soft Bold : xs
type Lines = Array (Int,Int) ([ScopedEffect], Char)
(///) :: Ix i => Array i e -> [(i, e)] -> Array i e
a /// xs = a // P.filter (inRange (bounds a) . fst) xs
grow :: Int -> Lines -> Lines
grow y a
| inRange (t,b) y = a
| otherwise = array new [ (i, if inRange old i then a ! i else ([],' ')) | i <- range new ]
where old@((t,lo),(b,hi)) = bounds a
new = ((min t y,lo),(max b y,hi))
draw :: [ScopedEffect] -> Int -> Int -> String -> Lines -> Lines
draw e y n xs a0 = gt $ lt (a /// out) where
a = grow y a0
((_,lo),(_,hi)) = bounds a
out = P.zipWith (\i c -> ((y,i),(e,c))) [n..] xs
lt | any (\el -> snd (fst el) < lo) out = (// [((y,lo),(outOfRangeEffects e,'<'))])
| otherwise = id
gt | any (\el -> snd (fst el) > hi) out = (// [((y,hi),(outOfRangeEffects e,'>'))])
| otherwise = id
data Render = Render
{ rDelta :: !Delta
, rLineLen :: !Int
, rLine :: Lines -> Lines
, rDraw :: Delta -> Lines -> Lines
}
instance Semigroup Render where
Render del len doc f <> Render _ _ _ g = Render del len doc $ \d l -> f d (g d l)
ifNear :: Delta -> (Lines -> Lines) -> Delta -> Lines -> Lines
ifNear d f d' l | near d d' = f l
| otherwise = l
instance HasDelta Render where
delta = rDelta
class Renderable t where
render :: t -> Render
instance Renderable Render where
render = id
class Source t where
source :: t -> (Int, Lines -> Lines)
instance Source String where
source s = (P.length s', draw sourceEffects 0 0 s') where
s' = go 0 s
go n ('\t':xs) = let t = 8 mod n 8 in P.replicate t ' ' ++ go (n + t) xs
go _ ('\n':_) = []
go n (x:xs) = x : go (n + 1) xs
go _ [] = []
instance Source ByteString where
source = source . UTF8.toString
surface :: Source s => Delta -> s -> Render
surface del s = case source s of
(len, doc) -> Render del len doc (\_ l -> l)
drawCaret :: Delta -> Delta -> Lines -> Lines
drawCaret p = ifNear p $ draw caretEffects 1 (column p) "^"
(.#) :: (Delta -> Lines -> Lines) -> Render -> Render
f .# Render d ll s g = Render d ll s $ \e l -> f e $ g e l
addCaret :: Delta -> Render -> Render
addCaret p r = drawCaret p .# r
drawSpan :: Delta -> Delta -> Delta -> Lines -> Lines
drawSpan s e d a
| nl && nh = draw spanEffects 1 (column l) (P.replicate (max (column h column l + 1) 0) '~') a
| nl = draw spanEffects 1 (column l) (P.replicate (max (snd (snd (bounds a)) column l + 2) 0) '~') a
| nh = draw spanEffects 1 (1) (P.replicate (max (column h + 1) 0) '~') a
| otherwise = a
where
l = argmin bytes s e
h = argmax bytes s e
nl = near l d
nh = near h d
addSpan :: Delta -> Delta -> Render -> Render
addSpan s e r = drawSpan s e .# r
drawFixit :: Delta -> Delta -> String -> Delta -> Lines -> Lines
drawFixit s e rpl d a = ifNear l (draw fixitEffects 2 (column l) rpl) d $ drawSpan s e d a
where l = argmin bytes s e
addFixit :: Delta -> Delta -> String -> Render -> Render
addFixit s e rpl r = drawFixit s e rpl .# r
instance Pretty Render where
pretty r = prettyTerm r >>= const empty
instance Show Render where
showsPrec _ = displayS . renderPretty 0.9 100 . prettyTerm
instance PrettyTerm Render where
prettyTerm (Render d ll l f) = nesting $ \k -> columns $ \n -> go (n k) where
go cols = align (vsep (P.map ln [t..b])) <> linebreak where
(lo, hi) = window (column d) ll (cols 2)
a = f d $ l $ array ((0,lo),(1,hi)) []
((t,_),(b,_)) = bounds a
ln y = hcat
$ P.map (\g -> P.foldr with (string (P.map snd g)) (fst (P.head g)))
$ groupBy ((==) `on` fst)
[ a ! (y,i) | i <- [lo..hi] ]
window :: Int -> Int -> Int -> (Int, Int)
window c l w
| c <= w2 = (0, min w l)
| c + w2 >= l = if l > w then (lw, l) else (0, w)
| otherwise = (cw2,c + w2)
where w2 = div w 2
argmin :: Ord b => (a -> b) -> a -> a -> a
argmin f a b
| f a <= f b = a
| otherwise = b
argmax :: Ord b => (a -> b) -> a -> a -> a
argmax f a b
| f a > f b = a
| otherwise = b