fix bug in wrapping of long words
[diohsc.git] / TextGemini.hs
blobf42861b34b6a2691343e994e204abc00ff06fd58
1 -- This file is part of Diohsc
2 -- Copyright (C) 2020 Martin Bays <mbays@sdf.org>
3 --
4 -- This program is free software: you can redistribute it and/or modify
5 -- it under the terms of version 3 of the GNU General Public License as
6 -- published by the Free Software Foundation, or any later version.
7 --
8 -- You should have received a copy of the GNU General Public License
9 -- along with this program. If not, see http://www.gnu.org/licenses/.
11 {-# LANGUAGE CPP #-}
12 {-# LANGUAGE OverloadedStrings #-}
13 {-# LANGUAGE Safe #-}
15 module TextGemini where
17 import Control.Monad.State
18 import Data.Maybe (catMaybes, isJust, mapMaybe)
20 import ANSIColour
22 import qualified Data.Text.Lazy as T
23 import URI
25 data Link = Link { linkUri :: URIRef, linkDescription :: T.Text }
26 deriving (Eq,Ord,Show)
28 data GeminiLine
29 = TextLine T.Text
30 | LinkLine { linkLineIndex :: Int, linkLineLink :: Link }
31 | AltTextLine T.Text
32 | PreformatToggleLine
33 | PreformattedLine T.Text T.Text
34 | HeadingLine Int T.Text
35 | ItemLine T.Text
36 | QuoteLine T.Text
37 | ErrorLine T.Text
38 deriving (Eq,Ord,Show)
40 newtype GeminiDocument = GeminiDocument { geminiDocumentLines :: [GeminiLine] }
41 deriving (Eq,Ord,Show)
43 extractLinks :: GeminiDocument -> [Link]
44 extractLinks (GeminiDocument ls) = mapMaybe linkOfLine ls
45 where
46 linkOfLine (LinkLine _ link) = Just link
47 linkOfLine _ = Nothing
49 data PreOpt
50 = PreOptAlt
51 | PreOptPre
52 | PreOptBoth
53 deriving (Eq,Ord,Show)
55 showPreOpt :: PreOpt -> String
56 showPreOpt PreOptAlt = "alt"
57 showPreOpt PreOptPre = "pre"
58 showPreOpt PreOptBoth = "both"
60 data GemRenderOpts = GemRenderOpts
61 { grOptsAnsi :: Bool
62 , grOptsPre :: PreOpt
63 , grOptsWrapWidth :: Int
64 , grOptsLinkDescFirst :: Bool
65 } deriving (Eq,Ord,Show)
67 printGemDoc :: GemRenderOpts -> (URIRef -> T.Text) -> GeminiDocument -> [T.Text]
68 printGemDoc (GemRenderOpts ansi preOpt width linkDescFirst)
69 showUri (GeminiDocument doc) = concatMap printLine doc
70 where
71 printLine (TextLine line) = wrapWith "" False line
72 printLine (AltTextLine line)
73 | preOpt == PreOptPre || T.null line = []
74 | otherwise = (:[]) $ applyIf ansi withBoldStr "`` " <> line
76 printLine PreformatToggleLine = []
78 printLine (PreformattedLine alt line)
79 | preOpt == PreOptAlt && not (T.null alt) = []
80 | otherwise = (:[]) $ applyIf ansi ((resetCode <>) . withBoldStr) "` " <> line
81 printLine (HeadingLine level line) =
82 wrapWith (T.take (fromIntegral level) (T.repeat '#') <> " ") False
83 . applyIf ansi
84 ( applyIf (level /= 2) withUnderlineStr
85 . applyIf (level < 3) withBoldStr ) $ line
86 printLine (ItemLine line) = wrapWith "* " False line
87 printLine (QuoteLine line) = wrapWith "> " True line
88 printLine (ErrorLine line) = (:[]) $ applyIf ansi (withColourStr Red)
89 "! Formatting error in text/gemini: " <> line
90 printLine (LinkLine n (Link uri desc)) =
91 wrapWith (T.pack $ '[' : show (n+1) ++ if n+1 < 10 then "] " else "] ") False
92 $ (if T.null desc then id
93 else (if linkDescFirst then id else flip) (\a b -> a <> " " <> b)
94 $ applyIf ansi (withColourStr Cyan) desc)
95 (showUri uri)
97 wrapWith :: T.Text -> Bool -> T.Text -> [T.Text]
98 wrapWith pre onAll line =
99 concat . zipWith prependHeader lineHeaders $ wrap (width - n) line
100 where
101 n = visibleLength pre
102 lineHeaders = (pre:) . repeat $
103 if onAll then pre else T.replicate (fromIntegral n) " "
104 splitWordHeader = if n > 0 then "|" <> T.replicate (fromIntegral n - 1) " " else ""
105 prependHeader header (l:ls) = header <> l : ((splitWordHeader <>) <$> ls)
106 prependHeader _ [] = []
108 wrap :: Int -> T.Text -> [[T.Text]]
109 wrap wrapWidth line = wrap' "" 0 $ T.words line
110 where
111 maxWCWidth = 2
112 ww = max maxWCWidth wrapWidth
113 wrap' l n ws | n > ww =
114 chunkVisible l : wrap' "" 0 ws
115 where
116 chunkVisible s | T.null s = []
117 chunkVisible s = let (a,b) = splitAtVisible ww s in a : chunkVisible b
118 wrap' l _ []
119 | T.null l = []
120 | otherwise = [[l]]
121 wrap' l n (w:ws) =
122 let l' = if T.null l then w else l <> " " <> w
123 nw = visibleLength w
124 n' = n + nw + (if T.null l then 0 else 1)
125 in if n' > ww
126 then (if T.null l then id else ([l]:)) $ wrap' w nw ws
127 else wrap' l' n' ws
130 data GeminiParseState = GeminiParseState { numLinks :: Int, preformatted :: Maybe T.Text }
132 initialParseState :: GeminiParseState
133 initialParseState = GeminiParseState 0 Nothing
135 parseGemini :: T.Text -> GeminiDocument
136 parseGemini text = GeminiDocument . catMaybes $ evalState
137 (forM (T.lines text) (parseLine . stripTrailingCR)) initialParseState
138 where
139 stripTrailingCR = T.dropWhileEnd (== '\r')
140 parseLine :: T.Text -> State GeminiParseState (Maybe GeminiLine)
141 parseLine line = do
142 pre <- gets preformatted
143 case T.take 1 line of
144 "`" | T.take 3 line == "```", isJust pre -> do
145 modify $ \s -> s { preformatted = Nothing }
146 return $ case T.strip $ T.drop 3 line of
147 "" -> Nothing
148 _ -> Just . ErrorLine $ "Illegal non-empty text after closing '```'"
149 -- ^The spec says we MUST ignore any text on a "```" line closing a preformatted
150 -- block. This seems like a gaping extensibility hole to me, so I'm interpreting it
151 -- as not disallowing an error message.
152 "`" | T.take 3 line == "```" ->
153 let alt = T.strip $ T.drop 3 line in do
154 modify $ \s -> s { preformatted = Just alt }
155 return . Just . AltTextLine $ alt
156 _ | Just alt <- pre ->
157 return . Just $ PreformattedLine alt line
158 "=" | T.take 2 line == "=>" ->
159 case parseLink . T.dropWhile isGemWhitespace $ T.drop 2 line of
160 Nothing -> return . Just . ErrorLine $ "Unparseable link line: " <> line
161 Just link -> do
162 n <- gets numLinks
163 modify $ \s -> s { numLinks = n + 1 }
164 return . Just $ LinkLine n link
165 "#" | headers <- T.length . T.takeWhile (== '#') $ line,
166 headers > 0 && headers < 4 ->
167 return . Just . HeadingLine (fromIntegral headers) .
168 T.dropWhile isGemWhitespace . T.dropWhile (== '#') $ line
169 "*" | T.take 2 line == "* " ->
170 return . Just . ItemLine $ T.drop 2 line
171 ">" ->
172 return . Just . QuoteLine $ T.drop 1 line
173 _ ->
174 return . Just $ TextLine line
176 parseLink :: T.Text -> Maybe Link
177 parseLink linkInfo =
178 let uriText = T.takeWhile (not . isGemWhitespace) linkInfo
179 desc = T.dropWhile isGemWhitespace . T.dropWhile (not . isGemWhitespace) $ linkInfo
180 in (`Link` desc) <$> parseUriReference (
181 #ifdef IRILinks
182 escapeIRI $
183 #endif
184 T.unpack uriText)
186 isGemWhitespace :: Char -> Bool
187 isGemWhitespace = (`elem` (" \t"::String))