purescript-parsing-dataview/README.md

106 lines
3.4 KiB
Markdown
Raw Normal View History

2020-02-26 05:30:28 +03:00
# purescript-parsing-dataview
2022-12-03 10:18:45 +03:00
[![CI](https://github.com/rowtype-yoga/purescript-parsing-dataview/workflows/CI/badge.svg?branch=master)](https://github.com/rowtype-yoga/purescript-parsing-dataview/actions)
2020-02-26 05:01:10 +03:00
[![Pursuit](http://pursuit.purescript.org/packages/purescript-parsing-dataview/badge)](http://pursuit.purescript.org/packages/purescript-parsing-dataview/)
2022-12-03 10:18:45 +03:00
[![Maintainer: jamesdbrock](https://img.shields.io/badge/maintainer-jamesdbrock-teal.svg)](https://github.com/jamesdbrock)
2022-05-07 09:56:31 +03:00
Primitive parsers for
`DataView`s on JavaScript `ArrayBuffer`s with the package
2022-05-11 16:00:58 +03:00
[__parsing__](https://pursuit.purescript.org/packages/purescript-parsing/).
2022-05-11 16:00:58 +03:00
With this package, the input stream support of __parsing__
2022-05-07 09:56:31 +03:00
is similar to the built-in stream support of [__Megaparsec__](https://hackage.haskell.org/package/megaparsec):
2022-05-11 16:00:58 +03:00
| Stream type | parsing | Megaparsec |
2020-02-26 05:01:10 +03:00
|----|-----|----|
2022-05-07 09:56:31 +03:00
| UTF-16 strings | String | Text < v2.0|
2022-12-03 10:18:45 +03:00
| UTF-8 strings | __DataView__ | Text ≥ v2.0 |
2020-02-26 05:01:10 +03:00
| Listy strings | Token | String |
2020-07-28 14:10:03 +03:00
| Binary blobs | __DataView__ | ByteString |
2020-07-27 16:28:59 +03:00
## Usage examples
2020-07-27 16:28:59 +03:00
Parse values out of a `dataview :: Data.ArrayBuffer.Types.DataView`. All
`DataView` parsing must be done in an `Effect` context. The `result` will be
`Either` a parse error or the parsed value.
### Parse two numbers
2022-05-07 09:56:31 +03:00
Parse two big-endian IEEE 754 double-precision `Number`s.
2020-07-27 16:28:59 +03:00
```purescript
2022-12-03 10:18:45 +03:00
import Parsing (runParserT)
import Parsing.DataView (anyFloat64be)
2021-07-21 14:28:10 +03:00
2020-07-27 16:28:59 +03:00
do
2022-05-07 09:56:31 +03:00
result <- runParserT dataview do
2020-07-27 16:28:59 +03:00
float1 <- anyFloat64be
float2 <- anyFloat64be
pure $ Tuple float1 float2
2020-02-26 05:54:03 +03:00
```
2020-07-27 16:28:59 +03:00
### Parse an array
2022-05-07 09:56:31 +03:00
Parse an array of `n` 32-bit big-endian signed `Int`s.
2020-07-27 16:28:59 +03:00
```purescript
2022-12-03 10:18:45 +03:00
import Parsing (runParserT)
import Parsing.DataView (anyUint32be)
2021-07-21 14:28:10 +03:00
import Data.Unfoldable (replicateA)
2020-07-27 16:28:59 +03:00
do
2021-07-21 14:28:10 +03:00
result <- runParserT dataview $ replicateA n anyInt32be
2020-07-27 16:28:59 +03:00
```
2022-05-09 04:39:29 +03:00
### Parse UTF-8
2020-07-27 16:28:59 +03:00
2022-05-07 09:56:31 +03:00
Parse a UTF-8 `String` with a length prefix.
2020-07-27 16:51:03 +03:00
2020-07-27 16:28:59 +03:00
We give this as an example, rather than supporting it in the library, because
it depends on
2022-12-01 04:40:14 +03:00
[__web-encoding__](https://pursuit.purescript.org/packages/purescript-web-encoding) for UTF-8.
2020-07-27 16:28:59 +03:00
```purescript
2022-12-01 04:40:14 +03:00
import Control.Monad.Except (ExceptT)
import Data.ArrayBuffer.Cast (toUint8Array)
import Effect.Exception (catchException, message)
import Parsing (runParserT, liftExceptT)
2022-12-02 13:13:39 +03:00
import Parsing.DataView (anyInt32be, takeN)
2022-12-01 04:40:14 +03:00
import Web.Encoding.TextDecoder as TextDecoder
import Web.Encoding.UtfLabel as UtfLabel
2020-07-28 09:25:22 +03:00
2020-07-27 16:28:59 +03:00
do
2022-12-01 04:40:14 +03:00
textDecoder <- TextDecoder.new UtfLabel.utf8
2022-12-02 13:13:39 +03:00
result <- runParserT dataview do
-- First parse a 32-bit big-endian length prefix for the length
2022-05-07 09:56:31 +03:00
-- of the UTF-8 string in bytes.
2022-12-02 13:13:39 +03:00
length <- anyInt32be
stringview <- takeN length
2022-12-01 04:40:14 +03:00
stringarray <- lift $ liftEffect $ toUint8Array stringview
2022-12-02 13:13:39 +03:00
liftExceptT $ ExceptT $ catchException (pure <<< Left <<< message) do
Right <$> TextDecoder.decode stringarray textDecoder
2020-02-26 05:54:03 +03:00
```
2020-07-27 17:45:05 +03:00
## Serialization
2020-07-27 17:45:05 +03:00
This package is for reading (`DataView`s on) `ArrayBuffer`s, not writing
them. See the package
2021-07-21 14:28:10 +03:00
[__arraybuffer-builder__](https://pursuit.purescript.org/packages/purescript-arraybuffer-builder/)
2020-07-27 17:45:05 +03:00
for a way to
serialize and build `ArrayBuffer`s.
## References
* [MDN `ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer)
2020-07-29 02:58:20 +03:00
* [MDN `DataView`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView)
2022-05-07 08:59:47 +03:00
## Development
Run the tests with the development `spago` file:
```
spago -x spago-dev.dhall test
```