package unstrctrd

  1. Overview
  2. Docs
On This Page
  1. API
  2. Angstrom
Fast and compliant Unstructured parser according RFC 822

Install

dune-project
 Dependency

Authors

Maintainers

Sources

unstrctrd-0.5.tbz
sha256=42e5c1ac8d260503511b0e9a05312eb2f85a086578d759eba659dece1acf0b34
sha512=54c2d6749f38eb4f89c29107200d17f31313b12590b664c8017b46624079d2c48f41f19cb6a4b0005a3742b85010e62e46d0362665ede501fbb50d87ee13f057

doc/README.html

Unstrctrd

An header of an email has a formal format described by RFC5322. After mrmime, it reveals that the more general form for any values of fields (like a date, an email address, etc.) is the unstructured form.

This library wants to provide the first ground of how to parse an email header. From that, we want to post-process unstructured values to cast them to any expected values like email address.

The idea behind this library is to handle a common format which can be found into several standards, the folding-whitespace. For example, the *.deb* file uses this kind of format where it's possible that one field can be associated to a multiline value.

Description: my superb Debian
 package!

This library wants to fold the value and, by this way, delete insignificant folding-whitespace to be able to apply a post-process like: parse an email address (eg. emile for more examples).

To: my.valid.mail
 (comment) @x25519.net
API

unstrctrd comes with several post-processes like:

  • val fold_fws : t -> t
  • val without_comments : t -> (t, [> error ]) result
  • val split_at : index:int -> t -> t * t
  • val split_on : on:[ WSP | FWS | Uchar of Uchar.t | Char of char | LF | CR ] -> t -> (t * t) option

Of course, it provides processes to manipulate a string and to convert an unstructured value to an UTF-8 string. With that, we can imply that unstrctrd handles UTF-8 encoding (and only UTF-8 according RFC 6532).

The API gives you a way to craft an unstructured value and ensures that this value is correct (and invalid any unstructured values which produces CRLF terminating token)

Angstrom

unstrctrd.parser provides an angstrom parser which can be safely composed with others angstrom parsers. It requires the allocation of an internal buffer used by ocamllex and ensure the safety.