-
Notifications
You must be signed in to change notification settings - Fork 86
/
Stream.hs
563 lines (520 loc) · 18.1 KB
/
Stream.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE Safe #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeFamilies #-}
-- |
-- Module : Text.Megaparsec.Stream
-- Copyright : © 2015–present Megaparsec contributors
-- License : FreeBSD
--
-- Maintainer : Mark Karpov <markkarpov92@gmail.com>
-- Stability : experimental
-- Portability : portable
--
-- Megaparsec's input stream facilities.
--
-- You probably do not want to import this module directly because
-- "Text.Megaparsec" re-exports it anyway.
--
-- @since 6.0.0
module Text.Megaparsec.Stream
( Stream (..),
VisualStream (..),
TraversableStream (..),
)
where
import qualified Data.ByteString as B
import qualified Data.ByteString.Char8 as B8
import qualified Data.ByteString.Lazy as BL
import qualified Data.ByteString.Lazy.Char8 as BL8
import Data.Char (chr)
import Data.Foldable (foldl', toList)
import Data.Kind (Type)
import Data.List.NonEmpty (NonEmpty (..))
import qualified Data.List.NonEmpty as NE
import Data.Maybe (fromMaybe)
import Data.Proxy
import qualified Data.Sequence as S
import qualified Data.Text as T
import qualified Data.Text.Lazy as TL
import Data.Word (Word8)
import Text.Megaparsec.Pos
import Text.Megaparsec.State
-- | Type class for inputs that can be consumed by the library.
--
-- __Note__: before the version /9.0.0/ the class included the methods from
-- 'VisualStream' and 'TraversableStream'.
class (Ord (Token s), Ord (Tokens s)) => Stream s where
-- | Type of token in the stream.
type Token s :: Type
-- | Type of “chunk” of the stream.
type Tokens s :: Type
-- | Lift a single token to chunk of the stream. The default
-- implementation is:
--
-- > tokenToChunk pxy = tokensToChunk pxy . pure
--
-- However for some types of stream there may be a more efficient way to
-- lift.
tokenToChunk :: Proxy s -> Token s -> Tokens s
tokenToChunk pxy = tokensToChunk pxy . pure
-- | The first method that establishes isomorphism between list of tokens
-- and chunk of the stream. Valid implementation should satisfy:
--
-- > chunkToTokens pxy (tokensToChunk pxy ts) == ts
tokensToChunk :: Proxy s -> [Token s] -> Tokens s
-- | The second method that establishes isomorphism between list of tokens
-- and chunk of the stream. Valid implementation should satisfy:
--
-- > tokensToChunk pxy (chunkToTokens pxy chunk) == chunk
chunkToTokens :: Proxy s -> Tokens s -> [Token s]
-- | Return length of a chunk of the stream.
chunkLength :: Proxy s -> Tokens s -> Int
-- | Check if a chunk of the stream is empty. The default implementation
-- is in terms of the more general 'chunkLength':
--
-- > chunkEmpty pxy ts = chunkLength pxy ts <= 0
--
-- However for many streams there may be a more efficient implementation.
chunkEmpty :: Proxy s -> Tokens s -> Bool
chunkEmpty pxy ts = chunkLength pxy ts <= 0
-- | Extract a single token form the stream. Return 'Nothing' if the
-- stream is empty.
take1_ :: s -> Maybe (Token s, s)
-- | @'takeN_' n s@ should try to extract a chunk of length @n@, or if the
-- stream is too short, the rest of the stream. Valid implementation
-- should follow the rules:
--
-- * If the requested length @n@ is 0 (or less), 'Nothing' should
-- never be returned, instead @'Just' (\"\", s)@ should be returned,
-- where @\"\"@ stands for the empty chunk, and @s@ is the original
-- stream (second argument).
-- * If the requested length is greater than 0 and the stream is
-- empty, 'Nothing' should be returned indicating end of input.
-- * In other cases, take chunk of length @n@ (or shorter if the
-- stream is not long enough) from the input stream and return the
-- chunk along with the rest of the stream.
takeN_ :: Int -> s -> Maybe (Tokens s, s)
-- | Extract chunk of the stream taking tokens while the supplied
-- predicate returns 'True'. Return the chunk and the rest of the stream.
--
-- For many types of streams, the method allows for significant
-- performance improvements, although it is not strictly necessary from
-- conceptual point of view.
takeWhile_ :: (Token s -> Bool) -> s -> (Tokens s, s)
-- | @since 9.0.0
instance Ord a => Stream [a] where
type Token [a] = a
type Tokens [a] = [a]
tokenToChunk Proxy = pure
tokensToChunk Proxy = id
chunkToTokens Proxy = id
chunkLength Proxy = length
chunkEmpty Proxy = null
take1_ [] = Nothing
take1_ (t : ts) = Just (t, ts)
takeN_ n s
| n <= 0 = Just ([], s)
| null s = Nothing
| otherwise = Just (splitAt n s)
takeWhile_ = span
-- | @since 9.0.0
instance Ord a => Stream (S.Seq a) where
type Token (S.Seq a) = a
type Tokens (S.Seq a) = S.Seq a
tokenToChunk Proxy = pure
tokensToChunk Proxy = S.fromList
chunkToTokens Proxy = toList
chunkLength Proxy = length
chunkEmpty Proxy = null
take1_ S.Empty = Nothing
take1_ (t S.:<| ts) = Just (t, ts)
takeN_ n s
| n <= 0 = Just (S.empty, s)
| null s = Nothing
| otherwise = Just (S.splitAt n s)
takeWhile_ = S.spanl
instance Stream B.ByteString where
type Token B.ByteString = Word8
type Tokens B.ByteString = B.ByteString
tokenToChunk Proxy = B.singleton
tokensToChunk Proxy = B.pack
chunkToTokens Proxy = B.unpack
chunkLength Proxy = B.length
chunkEmpty Proxy = B.null
take1_ = B.uncons
takeN_ n s
| n <= 0 = Just (B.empty, s)
| B.null s = Nothing
| otherwise = Just (B.splitAt n s)
takeWhile_ = B.span
instance Stream BL.ByteString where
type Token BL.ByteString = Word8
type Tokens BL.ByteString = BL.ByteString
tokenToChunk Proxy = BL.singleton
tokensToChunk Proxy = BL.pack
chunkToTokens Proxy = BL.unpack
chunkLength Proxy = fromIntegral . BL.length
chunkEmpty Proxy = BL.null
take1_ = BL.uncons
takeN_ n s
| n <= 0 = Just (BL.empty, s)
| BL.null s = Nothing
| otherwise = Just (BL.splitAt (fromIntegral n) s)
takeWhile_ = BL.span
instance Stream T.Text where
type Token T.Text = Char
type Tokens T.Text = T.Text
tokenToChunk Proxy = T.singleton
tokensToChunk Proxy = T.pack
chunkToTokens Proxy = T.unpack
chunkLength Proxy = T.length
chunkEmpty Proxy = T.null
take1_ = T.uncons
takeN_ n s
| n <= 0 = Just (T.empty, s)
| T.null s = Nothing
| otherwise = Just (T.splitAt n s)
takeWhile_ = T.span
instance Stream TL.Text where
type Token TL.Text = Char
type Tokens TL.Text = TL.Text
tokenToChunk Proxy = TL.singleton
tokensToChunk Proxy = TL.pack
chunkToTokens Proxy = TL.unpack
chunkLength Proxy = fromIntegral . TL.length
chunkEmpty Proxy = TL.null
take1_ = TL.uncons
takeN_ n s
| n <= 0 = Just (TL.empty, s)
| TL.null s = Nothing
| otherwise = Just (TL.splitAt (fromIntegral n) s)
takeWhile_ = TL.span
-- | Type class for inputs that can also be used for debugging.
--
-- @since 9.0.0
class Stream s => VisualStream s where
-- | Pretty-print non-empty stream of tokens. This function is also used
-- to print single tokens (represented as singleton lists).
--
-- @since 7.0.0
showTokens :: Proxy s -> NonEmpty (Token s) -> String
-- | Return the number of characters that a non-empty stream of tokens
-- spans. The default implementation is sufficient if every token spans
-- exactly 1 character.
--
-- @since 8.0.0
tokensLength :: Proxy s -> NonEmpty (Token s) -> Int
tokensLength Proxy = NE.length
instance VisualStream String where
showTokens Proxy = stringPretty
instance VisualStream B.ByteString where
showTokens Proxy = stringPretty . fmap (chr . fromIntegral)
instance VisualStream BL.ByteString where
showTokens Proxy = stringPretty . fmap (chr . fromIntegral)
instance VisualStream T.Text where
showTokens Proxy = stringPretty
instance VisualStream TL.Text where
showTokens Proxy = stringPretty
-- | Type class for inputs that can also be used for error reporting.
--
-- @since 9.0.0
class Stream s => TraversableStream s where
{-# MINIMAL reachOffset | reachOffsetNoLine #-}
-- | Given an offset @o@ and initial 'PosState', adjust the state in such
-- a way that it starts at the offset.
--
-- Return two values (in order):
--
-- * 'Maybe' 'String' representing the line on which the given offset
-- @o@ is located. It can be omitted (i.e. 'Nothing'); in that case
-- error reporting functions will not show offending lines. If
-- returned, the line should satisfy a number of conditions that are
-- described below.
-- * The updated 'PosState' which can be in turn used to locate
-- another offset @o'@ given that @o' >= o@.
--
-- The 'String' representing the offending line in input stream should
-- satisfy the following:
--
-- * It should adequately represent location of token at the offset of
-- interest, that is, character at 'sourceColumn' of the returned
-- 'SourcePos' should correspond to the token at the offset @o@.
-- * It should not include the newline at the end.
-- * It should not be empty, if the line happens to be empty, it
-- should be replaced with the string @\"\<empty line\>\"@.
-- * Tab characters should be replaced by appropriate number of
-- spaces, which is determined by the 'pstateTabWidth' field of
-- 'PosState'.
--
-- __Note__: type signature of the function was changed in the version
-- /9.0.0/.
--
-- @since 7.0.0
reachOffset ::
-- | Offset to reach
Int ->
-- | Initial 'PosState' to use
PosState s ->
-- | See the description of the function
(Maybe String, PosState s)
reachOffset o pst =
(Nothing, reachOffsetNoLine o pst)
-- | A version of 'reachOffset' that may be faster because it doesn't need
-- to fetch the line at which the given offset in located.
--
-- The default implementation is this:
--
-- > reachOffsetNoLine o pst =
-- > snd (reachOffset o pst)
--
-- __Note__: type signature of the function was changed in the version
-- /8.0.0/.
--
-- @since 7.0.0
reachOffsetNoLine ::
-- | Offset to reach
Int ->
-- | Initial 'PosState' to use
PosState s ->
-- | Reached source position and updated state
PosState s
reachOffsetNoLine o pst =
snd (reachOffset o pst)
instance TraversableStream String where
-- NOTE Do not eta-reduce these (breaks inlining)
reachOffset o pst =
reachOffset' splitAt foldl' id id ('\n', '\t') o pst
reachOffsetNoLine o pst =
reachOffsetNoLine' splitAt foldl' ('\n', '\t') o pst
instance TraversableStream B.ByteString where
-- NOTE Do not eta-reduce these (breaks inlining)
reachOffset o pst =
reachOffset' B.splitAt B.foldl' B8.unpack (chr . fromIntegral) (10, 9) o pst
reachOffsetNoLine o pst =
reachOffsetNoLine' B.splitAt B.foldl' (10, 9) o pst
instance TraversableStream BL.ByteString where
-- NOTE Do not eta-reduce these (breaks inlining)
reachOffset o pst =
reachOffset' splitAtBL BL.foldl' BL8.unpack (chr . fromIntegral) (10, 9) o pst
reachOffsetNoLine o pst =
reachOffsetNoLine' splitAtBL BL.foldl' (10, 9) o pst
instance TraversableStream T.Text where
-- NOTE Do not eta-reduce (breaks inlining of reachOffset').
reachOffset o pst =
reachOffset' T.splitAt T.foldl' T.unpack id ('\n', '\t') o pst
reachOffsetNoLine o pst =
reachOffsetNoLine' T.splitAt T.foldl' ('\n', '\t') o pst
instance TraversableStream TL.Text where
-- NOTE Do not eta-reduce (breaks inlining of reachOffset').
reachOffset o pst =
reachOffset' splitAtTL TL.foldl' TL.unpack id ('\n', '\t') o pst
reachOffsetNoLine o pst =
reachOffsetNoLine' splitAtTL TL.foldl' ('\n', '\t') o pst
----------------------------------------------------------------------------
-- Helpers
-- | An internal helper state type combining a difference 'String' and an
-- unboxed 'SourcePos'.
data St = St SourcePos ShowS
-- | A helper definition to facilitate defining 'reachOffset' for various
-- stream types.
reachOffset' ::
forall s.
Stream s =>
-- | How to split input stream at given offset
(Int -> s -> (Tokens s, s)) ->
-- | How to fold over input stream
(forall b. (b -> Token s -> b) -> b -> Tokens s -> b) ->
-- | How to convert chunk of input stream into a 'String'
(Tokens s -> String) ->
-- | How to convert a token into a 'Char'
(Token s -> Char) ->
-- | Newline token and tab token
(Token s, Token s) ->
-- | Offset to reach
Int ->
-- | Initial 'PosState' to use
PosState s ->
-- | Line at which 'SourcePos' is located, updated 'PosState'
(Maybe String, PosState s)
reachOffset'
splitAt'
foldl''
fromToks
fromTok
(newlineTok, tabTok)
o
PosState {..} =
( Just $ case expandTab pstateTabWidth
. addPrefix
. f
. fromToks
. fst
$ takeWhile_ (/= newlineTok) post of
"" -> "<empty line>"
xs -> xs,
PosState
{ pstateInput = post,
pstateOffset = max pstateOffset o,
pstateSourcePos = spos,
pstateTabWidth = pstateTabWidth,
pstateLinePrefix =
if sameLine
then -- NOTE We don't use difference lists here because it's
-- desirable for 'PosState' to be an instance of 'Eq' and
-- 'Show'. So we just do appending here. Fortunately several
-- parse errors on the same line should be relatively rare.
pstateLinePrefix ++ f ""
else f ""
}
)
where
addPrefix xs =
if sameLine
then pstateLinePrefix ++ xs
else xs
sameLine = sourceLine spos == sourceLine pstateSourcePos
(pre, post) = splitAt' (o - pstateOffset) pstateInput
St spos f = foldl'' go (St pstateSourcePos id) pre
go (St apos g) ch =
let SourcePos n l c = apos
c' = unPos c
w = unPos pstateTabWidth
in if
| ch == newlineTok ->
St
(SourcePos n (l <> pos1) pos1)
id
| ch == tabTok ->
St
(SourcePos n l (mkPos $ c' + w - ((c' - 1) `rem` w)))
(g . (fromTok ch :))
| otherwise ->
St
(SourcePos n l (c <> pos1))
(g . (fromTok ch :))
{-# INLINE reachOffset' #-}
-- | Like 'reachOffset'' but for 'reachOffsetNoLine'.
reachOffsetNoLine' ::
forall s.
Stream s =>
-- | How to split input stream at given offset
(Int -> s -> (Tokens s, s)) ->
-- | How to fold over input stream
(forall b. (b -> Token s -> b) -> b -> Tokens s -> b) ->
-- | Newline token and tab token
(Token s, Token s) ->
-- | Offset to reach
Int ->
-- | Initial 'PosState' to use
PosState s ->
-- | Updated 'PosState'
PosState s
reachOffsetNoLine'
splitAt'
foldl''
(newlineTok, tabTok)
o
PosState {..} =
( PosState
{ pstateInput = post,
pstateOffset = max pstateOffset o,
pstateSourcePos = spos,
pstateTabWidth = pstateTabWidth,
pstateLinePrefix = pstateLinePrefix
}
)
where
spos = foldl'' go pstateSourcePos pre
(pre, post) = splitAt' (o - pstateOffset) pstateInput
go (SourcePos n l c) ch =
let c' = unPos c
w = unPos pstateTabWidth
in if
| ch == newlineTok ->
SourcePos n (l <> pos1) pos1
| ch == tabTok ->
SourcePos n l (mkPos $ c' + w - ((c' - 1) `rem` w))
| otherwise ->
SourcePos n l (c <> pos1)
{-# INLINE reachOffsetNoLine' #-}
-- | Like 'BL.splitAt' but accepts the index as an 'Int'.
splitAtBL :: Int -> BL.ByteString -> (BL.ByteString, BL.ByteString)
splitAtBL n = BL.splitAt (fromIntegral n)
{-# INLINE splitAtBL #-}
-- | Like 'TL.splitAt' but accepts the index as an 'Int'.
splitAtTL :: Int -> TL.Text -> (TL.Text, TL.Text)
splitAtTL n = TL.splitAt (fromIntegral n)
{-# INLINE splitAtTL #-}
-- | @stringPretty s@ returns pretty representation of string @s@. This is
-- used when printing string tokens in error messages.
stringPretty :: NonEmpty Char -> String
stringPretty (x :| []) = charPretty x
stringPretty ('\r' :| "\n") = "crlf newline"
stringPretty xs = "\"" <> concatMap f (NE.toList xs) <> "\""
where
f ch =
case charPretty' ch of
Nothing -> [ch]
Just pretty -> "<" <> pretty <> ">"
-- | @charPretty ch@ returns user-friendly string representation of given
-- character @ch@, suitable for using in error messages.
charPretty :: Char -> String
charPretty ' ' = "space"
charPretty ch = fromMaybe ("'" <> [ch] <> "'") (charPretty' ch)
-- | If the given character has a pretty representation, return that,
-- otherwise 'Nothing'. This is an internal helper.
charPretty' :: Char -> Maybe String
charPretty' = \case
'\NUL' -> Just "null"
'\SOH' -> Just "start of heading"
'\STX' -> Just "start of text"
'\ETX' -> Just "end of text"
'\EOT' -> Just "end of transmission"
'\ENQ' -> Just "enquiry"
'\ACK' -> Just "acknowledge"
'\BEL' -> Just "bell"
'\BS' -> Just "backspace"
'\t' -> Just "tab"
'\n' -> Just "newline"
'\v' -> Just "vertical tab"
'\f' -> Just "form feed"
'\r' -> Just "carriage return"
'\SO' -> Just "shift out"
'\SI' -> Just "shift in"
'\DLE' -> Just "data link escape"
'\DC1' -> Just "device control one"
'\DC2' -> Just "device control two"
'\DC3' -> Just "device control three"
'\DC4' -> Just "device control four"
'\NAK' -> Just "negative acknowledge"
'\SYN' -> Just "synchronous idle"
'\ETB' -> Just "end of transmission block"
'\CAN' -> Just "cancel"
'\EM' -> Just "end of medium"
'\SUB' -> Just "substitute"
'\ESC' -> Just "escape"
'\FS' -> Just "file separator"
'\GS' -> Just "group separator"
'\RS' -> Just "record separator"
'\US' -> Just "unit separator"
'\DEL' -> Just "delete"
'\160' -> Just "non-breaking space"
_ -> Nothing
-- | Replace tab characters with given number of spaces.
expandTab ::
Pos ->
String ->
String
expandTab w' = go 0
where
go 0 [] = []
go 0 ('\t' : xs) = go w xs
go 0 (x : xs) = x : go 0 xs
go n xs = ' ' : go (n - 1) xs
w = unPos w'