mirror of
https://github.com/mrkkrp/megaparsec.git
synced 2024-12-19 22:31:34 +03:00
51 lines
1.7 KiB
Haskell
51 lines
1.7 KiB
Haskell
-----------------------------------------------------------------------------
|
|
-- |
|
|
-- Module : Text.Parsec.ByteString
|
|
-- Copyright : (c) Paolo Martini 2007
|
|
-- License : BSD-style (see the LICENSE file)
|
|
--
|
|
-- Maintainer : derek.a.elkins@gmail.com
|
|
-- Stability : provisional
|
|
-- Portability : portable
|
|
--
|
|
-- Make strict ByteStrings an instance of 'Stream' with 'Char' token type.
|
|
--
|
|
-----------------------------------------------------------------------------
|
|
|
|
{-# LANGUAGE FlexibleInstances #-}
|
|
|
|
module Text.Parsec.ByteString
|
|
( Parser, GenParser, parseFromFile
|
|
) where
|
|
|
|
import Text.Parsec.Error
|
|
import Text.Parsec.Prim
|
|
|
|
import qualified Data.ByteString.Unsafe as B
|
|
import qualified Data.ByteString.Char8 as C
|
|
|
|
instance (Monad m) => Stream C.ByteString m Char where
|
|
uncons s
|
|
| C.null s = return $ Nothing
|
|
| otherwise = return $ Just $
|
|
( toEnum $ fromEnum $ B.unsafeHead s
|
|
, B.unsafeTail s)
|
|
|
|
type Parser a = Parsec C.ByteString () a
|
|
type GenParser t st a = Parsec C.ByteString st a
|
|
|
|
-- | @parseFromFile p filePath@ runs a strict bytestring parser @p@ on the
|
|
-- input read from @filePath@ using 'ByteString.Char8.readFile'. Returns either a 'ParseError'
|
|
-- ('Left') or a value of type @a@ ('Right').
|
|
--
|
|
-- > main = do{ result <- parseFromFile numbers "digits.txt"
|
|
-- > ; case result of
|
|
-- > Left err -> print err
|
|
-- > Right xs -> print (sum xs)
|
|
-- > }
|
|
|
|
parseFromFile :: Parser a -> String -> IO (Either ParseError a)
|
|
parseFromFile p fname
|
|
= do input <- C.readFile fname
|
|
return (runP p () fname input)
|