package ppx_sexp_message

  1. Overview
  2. Docs
A ppx rewriter for easy construction of s-expressions

Install

Dune Dependency

Authors

Maintainers

Sources

ppx_sexp_message-v0.9.0.tar.gz
md5=989b9ccd6efb8255f7f04a122647956c

Description

Part of the Jane Street's PPX rewriters collection.

Published: 22 Mar 2017

README

title: ppx_sexp_message - Easy construction of s-expressions parent: ../README.md

Overview

The aim of ppx_sexp_message is to ease the creation of s-expressions in OCaml. This is mainly motivated by writing error and debugging messages, where one needs to construct a s-expression based on various element of the context such as function arguments. For instance:

open Core

let rename ~src ~dst =
  try Unix.rename ~src:tmpfile ~dst
  with Unix.Unix_Error (error, _, _) ->
    raise_s
      [%message
        "Error while renaming file"
          ~source:(tmpfile : string)
          ~dest:  (dst     : string)
                  (error   : Unix.Error.t)
      ]

would produce the following s-expression:

("Error while renaming file"
 (source tmp/XYZ)
 (dest   blah)
 (error  ENOENT))

Syntax

Ppx_sexp_message expands the [%message ...] extension point into an expression that evaluates to an s-expression. The grammar of the payload is a small DSL that specifies what the generated s-expression looks like.

Basic syntax

Ppx_sexp_message recognizes the form [%message expr1 expr2 ...], and maps it pointwise to an s-expression that looks like ((<optional_tag_1> <value_1>) ... (<optional_tag_n> <value_n>)). A single expression also works (but it can't syntactically be an application).

Every expr is mapped to an an optional tag and value as follows.

The tag is determined by the following rules:

  • no tag if the labelled expression has the label _

  • the tag is the label when the label is not _

  • when the expression is not labelled

    • the tag is expr if the expression has the form (expr : typ)

    • otherwise there is no tag

Here are examples of each of these rules:

  • [%message "error" ~_:(msg : string)] becomes (error "value of msg")

  • [%message "error" ~tag:(msg : string)] becomes (error (tag "value of msg"))

  • [%message "error" (msg : string)] becomes (error (msg "value of msg"))

  • [%message "error" "value of msg"] becomes (error "value of msg")

Having the tag derived from the expression is by far the most common case, since it is convenient to not have to come up with a descriptive name. This is especially valuable for debugging messages.

The rest of this section describe how each expression is converted to a value in the s-expression.

Conversion of expressions

Literals of base types (constant strings, integers, floats, ...) are converted to their natural sexp representation.

When an expression is annotated with a type, the type is used to convert the value exactly like ppx_sexp_conv does.

Otherwise, expressions are assumed to be valid ocaml expressions of type string and the resulting string ends up directly in the s-expression.

For instance:

  • "foo" becomes foo

  • (Map.keys m : string list) becomes ("Map.keys m" (".bashrc" ".emacs"))

  • (sprintf "expected %s of type" ast_type) becomes "expected a pattern of type"

Optionally displayed expression

When an expression is annotated with a type, if the type has the syntax a sexp_option for some a, then:

  • when the value is None, the tag and expression are omitted

  • when the value is Some x, then the tag and x are displayed

Special case of the empty string

An exception to the previous rules is the treatment of the empty string. An empty string will be treated as if it did not appear in the source code. It it useful to work around syntactic limitations:

  • the inability to put a label on the first expression

  • the inability to tell the difference between an application and a single expression which is an application

For instance:

`[%message "" ~problem:(error : Error.t)]
`[%message "" (sprintf "invalid %s" name)]
Misc

For convenience and continuity of the syntax [%message] becomes ().

Difference with ppx_sexp_value

Ppx_sexp_message is similar to ppx_sexp_value in the sense that it makes the creation of s-expression nicer. The main difference is that ppx_sexp_value is a more general rewriter that build a s-expression based closely on what the user wrote. On the other hand ppx_sexp_message tries to focus on having a DSL that is as light as possible for building error messages.

Dependencies (9)

  1. ocaml-migrate-parsetree >= "0.4" & < "2.0.0"
  2. sexplib >= "v0.9" & < "v0.10"
  3. ppx_sexp_conv >= "v0.9" & < "v0.10"
  4. ppx_metaquot >= "v0.9" & < "v0.10"
  5. ppx_here >= "v0.9" & < "v0.10"
  6. ppx_driver >= "v0.9" & < "v0.10"
  7. ppx_core >= "v0.9" & < "v0.10"
  8. jbuilder >= "1.0+beta4"
  9. ocaml >= "4.03.0"

Dev Dependencies

None

Used by (3)

  1. core_kernel >= "v0.9.0" & < "v0.10.0"
  2. ppx_jane = "v0.9.0"
  3. travesty < "0.6.0"

Conflicts

None