{-| Module : Z.Data.Parser Description : Efficient deserialization/parse. Copyright : (c) Dong Han, 2017-2018 License : BSD Maintainer : winterland1989@gmail.com Stability : experimental Portability : non-portable This module provide a simple resumable 'Parser', which is suitable for binary protocol and simple textual protocol parsing. Both binary parsers ('decodePrim' ,etc) and textual parsers are provided, and they all work on 'V.Bytes'. You can use 'Alternative' instance to do backtracking, each branch will either succeed and may consume some input, or fail without consume anything. It's recommend to use 'peek' or 'peekMaybe' to avoid backtracking if possible to get high performance. Error message can be attached using '', which have very small overhead, so it's recommended to attach a message in front of a composed parser like @xPacket = "Foo.Bar.xPacket" do ...@, following is an example message when parsing an integer failed: @ >parse int "foo" ([102,111,111],Left ["Z.Data.Parser.Numeric.int","Std.Data.Parser.Base.takeWhile1: no satisfied byte"]) -- It's easy to see we're trying to match a leading sign or digit here @ Use to get combinators based on 'Applicative' or 'Monad' instance, such as @manyTill@, @sepBy@, etc. -} module Z.Data.Parser ( -- * Parser types Result(..) , ParseError , Parser , () -- * Running a parser , parse, parse_, parseChunk, parseChunks, finishParsing , runAndKeepTrack, match -- * Basic parsers , ensureN, endOfInput, atEnd -- * Primitive decoders , decodePrim, decodePrimLE, decodePrimBE -- * More parsers , scan, scanChunks, peekMaybe, peek, satisfy, satisfyWith , word8, char8, skipWord8, endOfLine, skip, skipWhile, skipSpaces , take, takeTill, takeWhile, takeWhile1, bytes, bytesCI , text -- * Numeric parsers -- ** Decimal , uint, int -- ** Hex , hex -- ** Fractional , rational , float, double , scientific , scientifically -- * Stricter fractional(rfc8259) , rational' , float', double' , scientific' , scientifically' -- * Misc , isSpace, isHexDigit, isDigit, fail' ) where import Z.Data.Parser.Base import Z.Data.Parser.Numeric import Prelude hiding (take, takeWhile)