Not much to add to this, I just wanted to emphasize that the point Gabriel makes is especially relevant in web programming or database interaction, because in those area ocaml is not often the first option that comes to mind. So being able to quote json, sql, html etc in an ocaml source without unplugging the type checker is real feature. Of course, there are cases when you build those "foreign" values programmatically, in that case I concur you're better off without the syntax extension (maybe not always, if the guest language has some real nice support than cannot be rendered concisely with ocaml), but there are many times when the antiquotation part is really small compared to the "constant" fragments. In that case, it may be desirable to have non-ocaml-programmers work directly on the ml source.<br>

<br><div class="gmail_quote">2013/1/31 Gabriel Scherer <span dir="ltr"><<a href="mailto:gabriel.scherer@gmail.com" target="_blank">gabriel.scherer@gmail.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

> From all the uses of Camlp4 I've seen listed since the beginning of this<br>
> discussion, I can imagine using at some point almost each of them, except<br>
> those which are basically "just" about quoting fragments of external<br>
> languages in their native syntax.  I just don't see the real benefits.<br>
><br>
> It would be useful to get feedback from users: do people actually use<br>
> pa_tyxml, pa_json, etc, and do they consider this is really better than<br>
> proposed alternatives?<br>
><br>
><br>
> Alain<br>
<br>
The point of quoting foreign languages is to translate them into a<br>
form that exercize the OCaml type-checker to produce rich typing<br>
information. With (parse_json "...") you have no static typing<br>
information on the parsed value, while with a quotation you can expect<br>
to get, say, a (< streetAdress : string > Json.t) expression.<br>
Supporting antiquotations there allows you to write those foreign<br>
values in a composable way, eg. using <:json< { streetAddress: $addr$<br>
} >> with (addr : string Json.t).<br>
<br>
This is essentially a nice concrete syntax on top of the typed<br>
combinators (point 1. in your message quoted below); indeed, good<br>
extensions should embed as few domain knowledge as possible and defer<br>
that to the pure-ocaml library providing the combinators. That is not<br>
always possible, however, when you want to express rich binding<br>
structures in a typed way (for example the support of GROUP BY in a<br>
finely-typed way in Macaque relies on clever Camlp4 expansion<br>
strategies.<br>
<br>
Furthermore, the bare approach of using combinators directly is not<br>
always desirable in situations where you want the code to be used by<br>
non-domain-experts. "Templates" in web programming are an entire<br>
cottage industry made of preprocessing HTML-looking quasiquotations,<br>
to help the role separation between designers and programmers. More<br>
generally, if there is a widely accepted domain-specific notation,<br>
your domain-specific library should have a way to support it (so that<br>
you can, for example, call over SQL tuning experts to comment on the<br>
performance optimization of the database queries embedded in your<br>
OCaml code).<br>
<br>
This is maybe less visible for non-programmable data description<br>
languages such as JSON, but I suspect this still holds. For example,<br>
if you distribute a protocol library built on top of JSON and bridging<br>
over many programming languages, you want the same maintainer to be<br>
able to quickly reflect changes to the protocol schema over all<br>
implements. This is vastly easier if they respect the domain-specific<br>
syntax instead of each having an embedding following the concrete<br>
syntax of the corresponding language.<br>
<br>
On Thu, Jan 31, 2013 at 1:28 PM, Alain Frisch <<a href="mailto:alain@frisch.fr">alain@frisch.fr</a>> wrote:<br>
> On 01/31/2013 12:48 PM, Leo White wrote:<br>
>>><br>
>>> >> and << are really not keywords of OCaml, and I wouldn't be<br>
>>> surprised they are actually used as operators.  I prefer breaking<br>
>>> compatibility with camlp4 than with OCaml.<br>
>><br>
>><br>
>> Thinking about it "<:" is not entirely unproblematic. Since "[<" is a<br>
>> single token, [<:foo< .. >>] would be awkward for the lexer.<br>
>><br>
>> Even if we abandon the camlp4 syntax for quotations<br>
><br>
><br>
> Hurrah :-)<br>
><br>
><br>
>> , I still think that<br>
>> {:lid {x{ string }x}} is too heavy and inflexible for traditional<br>
>> quotations. For example, a JSON quotation would look like:<br>
>><br>
>> {:json {<{ {"streetAddress": "21 2nd Street"} }>}}<br>
><br>
><br>
> I would write this:<br>
><br>
> (:json {{ {"streetAddress": "21 2nd Street"} }})<br>
><br>
> And if we keep the "end marker" in the AST, this could be:<br>
><br>
> {json{ {"streetAddress": "21 2nd Street"} }json}<br>
><br>
><br>
> But maybe we should take a step back, and really ask ourselves why we should<br>
> use concrete JSON syntax here.  Other possibilities:<br>
><br>
><br>
> 1. Write the JSON AST directly as regular OCaml code:<br>
><br>
>  Json.(M["streetAdress", S "21 2snd Street"])<br>
><br>
>  (assuming module Json export constructors M and S.)<br>
><br>
> 2. Use "parsed" OCaml syntax, with some -ppx filter mapping it to JSON AST:<br>
><br>
>  (:json { streetAddress: "21 2snd Street" })<br>
><br>
> (which would expand to the version above)<br>
><br>
><br>
> 3. Use a JSON parser (if we don't need "anti-quotations"):<br>
><br>
>   parse_json "{\"streetAddress\": \"21 2nd Street\"}"<br>
><br>
>   or:<br>
><br>
>   parse_json {{ {"streetAddress: "21 2nd Street"} }}<br>
><br>
><br>
> From all the uses of Camlp4 I've seen listed since the beginning of this<br>
> discussion, I can imagine using at some point almost each of them, except<br>
> those which are basically "just" about quoting fragments of external<br>
> languages in their native syntax.  I just don't see the real benefits.<br>
><br>
> It would be useful to get feedback from users: do people actually use<br>
> pa_tyxml, pa_json, etc, and do they consider this is really better than<br>
> proposed alternatives?<br>
><br>
><br>
> Alain<br>
><br>
> _______________________________________________<br>
> wg-camlp4 mailing list<br>
> <a href="mailto:wg-camlp4@lists.ocaml.org">wg-camlp4@lists.ocaml.org</a><br>
> <a href="http://lists.ocaml.org/listinfo/wg-camlp4" target="_blank">http://lists.ocaml.org/listinfo/wg-camlp4</a><br>
_______________________________________________<br>
wg-camlp4 mailing list<br>
<a href="mailto:wg-camlp4@lists.ocaml.org">wg-camlp4@lists.ocaml.org</a><br>
<a href="http://lists.ocaml.org/listinfo/wg-camlp4" target="_blank">http://lists.ocaml.org/listinfo/wg-camlp4</a><br>
</blockquote></div><br>