1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
|
(*
Conversion between OCaml types and JSON types as provided by the json-wheel
library.
Author: Martin Jambon <martin_jambon@emailuser.net>
Copyright (c) 2007 Burnham Institute for Medical Research
Copyright (c) 2008 Martin Jambon
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*)
(* This version was tested successfully with camlp4 3.10.0+beta.
The upgrade from 3.09 to 3.10+beta was performed with the help
of Nicolas Pouillard.
Command that compiles this program:
ocamlc -c -pp camlp4orf -I +camlp4 \
pa_json_static_3100beta.ml
Before 3.10, it used to be:
ocamlc -c -pp 'camlp4o q_MLast.cmo pa_extend.cmo' -I +camlp4 \
pa_json_static.ml
Command that works for using this syntax extension when it is present
in the current directory (not installed, no ocamlfind). It preprocesses
a file that uses the json-static syntax and pretty-prints it to
standard OCaml syntax:
camlp4o -parser ./pa_json_static_3100beta.cmo -printer o example.ml
Before 3.10, it used to be:
camlp4o ./pa_json_static.cmo pr_o.cmo example.ml
It passes the "make test" stage of the json-static package!
*)
open Camlp4.PreCast
open Printf
let check_unique f l =
let tbl = Hashtbl.create 50 in
List.iter
(fun x ->
let (_loc, id) = f x in
if Hashtbl.mem tbl id then
Loc.raise _loc
(Failure "this tag or label is not unique")
else Hashtbl.add tbl id ())
l
let unopt default = function
None -> default
| Some x -> x
let rec optmap f = function
[] -> []
| hd :: tl ->
match f hd with
None -> optmap f tl
| Some x -> x :: optmap f tl
type field = { field_caml_name : string;
field_json_name : string;
field_type : t;
field_caml_loc : Loc.t;
field_json_loc : Loc.t;
optional : bool;
default : Ast.expr option;
is_mutable : bool }
and constructor = { cons_caml_name : string;
cons_json_name : string;
cons_args : t list;
cons_caml_loc : Loc.t;
cons_json_loc : Loc.t }
and type_expr =
List of t
| Array of t
| Option of t
| Object of field list
| Record of field list
| Hashtbl of t
| Assoc of t
| Tuple of t list
| Variant of constructor list
| Poly of constructor list
| Name of string
| String
| Bool
| Int
| Float
| Number
| Raw
| Custom of string
and t = Loc.t * type_expr
and type_def = { def : t;
is_predefined : bool;
is_private : bool (* unused at the moment *) }
module StringMap = Map.Make (String)
let make_typedef _loc names l =
let rec convert (_loc, def) =
match def with
List x -> <:ctyp< list $convert x$ >>
| Array x -> <:ctyp< array $convert x$ >>
| Option x -> <:ctyp< option $convert x$ >>
| Object l ->
(* (* Development version post-3.10.0+beta *)
let ml =
List.fold_right
(fun x acc ->
<:ctyp< $lid:x.field_caml_name$ : $convert x.field_type$ ;
$acc$ >>)
l <:ctyp<>> in
<:ctyp< < $ml$ > >> in
*)
let ml =
List.fold_right
(fun x acc ->
let field =
<:ctyp< $lid:x.field_caml_name$ :
$convert x.field_type$ >> in
<:ctyp< $field$ ; $acc$ >>)
l <:ctyp<>> in
<:ctyp< < $ml$ > >>
| Record r ->
let l =
List.fold_right begin fun x acc ->
let _loc = x.field_caml_loc in
let t = convert x.field_type in
let t = if x.is_mutable then <:ctyp< mutable $t$ >> else t in
(* (* Development version post-3.10.0+beta: *)
<:ctyp< $lid:x.field_caml_name$ : $t$; $acc$ >> *)
let field = <:ctyp< $lid:x.field_caml_name$ : $t$ >> in
<:ctyp< $field$; $acc$ >>
end r <:ctyp<>> in
<:ctyp< { $l$ } >>
| Hashtbl x -> <:ctyp< Hashtbl.t string $convert x$ >>
| Assoc x -> <:ctyp< list (string * $convert x$) >>
| Tuple l ->
(* (* Development version post-3.10.0+beta: *)
let tl = List.map convert l in
<:ctyp< ( $tup:Ast.tySta_of_list tl$ ) >> *)
let t =
List.fold_right
(fun x tup -> <:ctyp< $convert x$ * $tup$ >>)
l <:ctyp< >> in
<:ctyp< ( $tup:t$ ) >>
| Poly l ->
let rfl =
List.fold_right (fun c acc ->
let name = c.cons_caml_name in
match c.cons_args with
[] -> <:ctyp< `$name$ | $acc$ >>
| [x] ->
(* (* Development version post-3.10.0+beta: *)
<:ctyp< `$name$ of $convert x$ | $acc$ >> *)
let case = <:ctyp< `$name$ of $convert x$ >> in
<:ctyp< $case$ | $acc$ >>
| _ -> assert false)
l <:ctyp<>> in
<:ctyp< [ = $rfl$ ] >>
| Variant v ->
let l =
List.fold_right
(fun x acc ->
let cal = List.map convert x.cons_args in
let _loc = x.cons_caml_loc in
(* (* Development version post-3.10.0+beta: *)
<:ctyp< $uid:x.cons_caml_name$ of $list:cal$ | $acc$ >> *)
let case = <:ctyp< $uid:x.cons_caml_name$ of $list:cal$ >> in
<:ctyp< $case$ | $acc$ >>)
v <:ctyp<>> in
<:ctyp< [ $l$ ] >>
| Name x ->
if StringMap.mem x names then <:ctyp< $lid:x$ >>
else
Loc.raise _loc
(Failure ("type name " ^ x ^
" is undefined or not defined in the same \
'type ... and ...' block"))
| String -> <:ctyp< string >>
| Bool -> <:ctyp< bool >>
| Int -> <:ctyp< int >>
| Float -> <:ctyp< float >>
| Number -> <:ctyp< float >>
| Raw -> <:ctyp< Json_type.t >>
| Custom s -> <:ctyp< $uid:s$ . t >> in
let l = List.filter (fun (_, x) -> not x.is_predefined) l in
match l with
[] -> <:str_item< >>
| ((_loc, name), x) :: l ->
let tdl =
let dcl = Ast.TyDcl (_loc, name, [], convert x.def, []) in
List.fold_right (
fun ((_loc, name), x) acc ->
let dcl = Ast.TyDcl (_loc, name, [], convert x.def, []) in
<:ctyp< $dcl$ and $acc$ >>
) l dcl in
<:str_item< type $tdl$ >>
let numbered_list l =
Array.to_list
(Array.mapi
(fun i x -> (x, "x" ^ string_of_int i))
(Array.of_list l))
let eta_expand = function
<:expr< fun [ $_$ ] >> as f -> f
| e -> let _loc = Ast.loc_of_expr e in <:expr< fun x -> $e$ x >>
let make_ofjson _loc l =
let browse _loc f = <:expr< Json_type.Browse.$lid:f$ >> in
let rec convert (_loc, def) =
match def with
List x -> <:expr< $browse _loc "list"$ $convert x$ >>
| Array x ->
<:expr< fun x ->
Array.of_list (($browse _loc "list"$ $convert x$) x) >>
| Option x ->
<:expr< $browse _loc "optional"$ $convert x$ >>
| Object l -> convert_object _loc l
| Record r -> convert_record _loc r
| Hashtbl x ->
<:expr<
fun x ->
let l = $browse _loc "objekt"$ x in
let tbl = Hashtbl.create (List.length l) in
do { List.iter (fun (s, x) ->
Hashtbl.add tbl s ($convert x$ x)) l;
tbl } >>
| Assoc x ->
<:expr< fun x ->
List.map (fun (key, data) -> (key, $convert x$ data))
($browse _loc "objekt"$ x) >>
| Tuple l ->
let nl = numbered_list l in
let pl =
List.fold_right
(fun ((_loc, _), name) tl -> <:patt< [ $lid:name$ :: $tl$ ] >>)
nl <:patt< [] >> in
let el =
List.fold_right (fun ((_loc, _) as x, name) acc ->
<:expr< $convert x$ $lid:name$, $acc$ >>)
nl <:expr<>> in
<:expr< fun [ Json_type.Array $pl$ -> ( $tup:el$ )
| Json_type.Array _ as x ->
__json_static_error x
"wrong number of elements in JSON array"
| x ->
__json_static_error x
"not a JSON array" ] >>
| Poly l ->
convert_variants (fun _loc name -> <:expr< ` $name$ >>) _loc l
| Variant l ->
convert_variants (fun _loc name -> <:expr< $uid:name$ >>) _loc l
| Name x -> <:expr< $lid: x ^ "_of_json"$ >>
| String -> browse _loc "string"
| Bool -> browse _loc "bool"
| Int -> browse _loc "int"
| Float -> browse _loc "float"
| Number -> browse _loc "number"
| Raw -> <:expr< fun x -> x >>
| Custom modul -> <:expr< $uid:modul$ . of_json >>
and convert_object _loc l =
let pel = convert_object_field_list _loc l in
let methods =
List.fold_right
(fun x acc ->
let name = x.field_caml_name in
<:class_str_item< method $name$ = $lid:name$ ; $acc$ >>)
l <:class_str_item<>> in
eval_with_tbl _loc <:expr< let $list:pel$ in object $methods$ end >>
and convert_record _loc r =
let pel = convert_record_field_list _loc r in
eval_with_tbl _loc <:expr< { $list:pel$ } >>
and convert_field_list _loc l =
List.map
(fun { field_caml_name = name;
field_json_name = json_name;
field_type = x;
optional = optional;
default = default } ->
let e1 =
let f = if optional then "fieldx" else "field" in
<:expr< Json_type.Browse.$lid:f$ tbl $str:json_name$ >> in
let e2 =
match default with
Some e ->
(<:expr<
match $e1$ with
[ Json_type.Null -> $e$
| x -> $convert x$ x ] >>)
| None -> <:expr< $convert x$ $e1$ >> in
(name, e2))
l
and convert_record_field_list _loc l =
List.map (fun (name, e) -> <:rec_binding< $lid:name$ = $e$ >>)
(convert_field_list _loc l)
and convert_object_field_list _loc l =
List.map (fun (name, e) -> <:binding< $lid:name$ = $e$ >>)
(convert_field_list _loc l)
and convert_variants make_cons _loc l =
let l0, l1 =
List.partition (fun x -> x.cons_args = []) l in
let pwel0 =
List.fold_right
(fun { cons_caml_name = name;
cons_json_name = json_name } acc ->
<:match_case< $str:json_name$ -> $make_cons _loc name$ | $acc$ >>)
l0 <:match_case<>> in
let pwel1 =
List.fold_right
(fun { cons_caml_name = name;
cons_json_name = json_name;
cons_args = args } acc ->
let argnames = numbered_list args in
let list_patt =
List.fold_right
(fun (_, s) l ->
<:patt< [ $lid:s$ :: $l$ ] >>)
argnames <:patt< [] >> in
let e =
List.fold_left
(fun cons (arg, s) ->
<:expr< $cons$ ($convert arg$ $lid:s$) >>)
(make_cons _loc name) argnames in
<:match_case< ($str:json_name$, $list_patt$) -> $e$ | $acc$ >>)
l1 <:match_case<>> in
let default_case =
<:match_case< _ -> __json_static_error x
"invalid variant name or \
wrong number of arguments" >>
in
(<:expr<
fun
[ Json_type.String s as x ->
match s with [ $pwel0$ | $default_case$ ]
| Json_type.Array
[ Json_type.String s :: ([ _ :: _ ] as args) ] as x ->
match (s, args) with [ $pwel1$ | $default_case$ ]
| x -> __json_static_error x
"not able to read this as \
a variant" ]
>>)
and eval_with_tbl _loc e =
(<:expr<
fun x ->
let tbl =
Json_type.Browse.make_table (Json_type.Browse.objekt x) in
$e$ >>)
in
let error =
<:str_item<
value __json_static_error obj msg =
let m = 400 in
let s = Json_io.string_of_json obj in
let obj_string =
if String.length s > m then String.sub s 0 (m - 4) ^ " ..."
else s in
Json_type.json_error (msg ^ ":\n" ^ obj_string) >> in
let defs =
List.fold_right
(fun ((_loc, name), x) acc ->
(*if x.is_private then acc
else*)
let fname = name ^ "_of_json" in
<:binding< ( $lid:fname$ : Json_type.t -> $lid:name$ ) =
$eta_expand (convert x.def)$ and $acc$ >>)
l <:binding<>>
in
<:str_item< $error$; value rec $defs$ >>
let make_tojson _loc l =
let build _loc s = <:expr< Json_type.Build. $lid:s$ >> in
let rec convert (_loc, def) =
match def with
List x -> <:expr< Json_type.Build.list $convert x$ >>
| Array x ->
<:expr< fun x ->
Json_type.Build.list $convert x$ (Array.to_list x) >>
| Option x -> <:expr< Json_type.Build.optional $convert x$ >>
| Object l ->
convert_field_list (fun name -> <:expr< x#$lid:name$ >>)
_loc l
| Record r ->
convert_field_list (fun name -> <:expr< x.$lid:name$ >>)
_loc r
| Hashtbl x ->
<:expr< fun tbl ->
Json_type.Object
(Hashtbl.fold (fun key data tl ->
[ (key, $convert x$ data) :: tl ])
tbl []) >>
| Assoc x ->
<:expr<
fun x ->
Json_type.Object
((List.map (fun (key, data) -> (key, $convert x$ data))) x) >>
| Tuple l ->
let nl = numbered_list l in
let pl = List.fold_right
(fun (_, name) acc -> <:patt< $lid:name$, $acc$ >>)
nl <:patt<>> in
let a = List.fold_right
(fun (x, name) tl ->
<:expr< [ $convert x$ $lid:name$ :: $tl$ ] >>)
nl <:expr< [] >> in
<:expr< fun [ ( $tup:pl$ ) -> Json_type.Array $a$ ] >>
| Poly l ->
let match_cases =
List.map
(fun { cons_caml_name = name;
cons_json_name = json_name;
cons_args = args } ->
match args with
[] ->
<:match_case<
`$name$ -> Json_type.String $str:json_name$ >>
| [x] ->
<:match_case<
`$name$ arg ->
Json_type.Array
[ Json_type.String $str:json_name$;
$convert x$ arg ] >>
| _ -> assert false)
l in
<:expr< fun [ $list:match_cases$ ] >>
| Variant v ->
let match_cases =
List.map
(fun { cons_caml_name = name;
cons_json_name = json_name;
cons_args = args } ->
match args with
[] ->
<:match_case<
$uid:name$ -> Json_type.String $str:json_name$ >>
| l ->
let args = numbered_list l in
let p =
List.fold_left
(fun cons (_, s) -> <:patt< $cons$ $lid:s$ >>)
<:patt< $uid:name$ >> args in
let e =
List.fold_right
(fun (x, s) l ->
<:expr< [ $convert x$ $lid:s$ :: $l$ ] >>)
args <:expr< [] >> in
<:match_case< $p$ ->
Json_type.Array
[ Json_type.String $str:json_name$ :: $e$ ] >>)
v in
<:expr< fun [ $list:match_cases$ ] >>
| Name x -> <:expr< $lid: "json_of_" ^ x$ >>
| String -> build _loc "string"
| Bool -> build _loc "bool"
| Int -> build _loc "int"
| Float -> build _loc "float"
| Number -> build _loc "float"
| Raw -> <:expr< fun x -> x >>
| Custom modul -> <:expr< $uid:modul$ . to_json >>
and convert_field_list access _loc l =
let pairs =
List.fold_right
(fun { field_caml_name = name;
field_json_name = json_name;
field_type = x } tl ->
<:expr< [ ( $str:json_name$, $convert x$ $access name$ )
:: $tl$ ] >>)
l <:expr< [] >> in
<:expr< fun x -> Json_type.Object $pairs$ >>
in
let defs =
List.fold_right
(fun ((_loc, name), x) acc ->
let fname = "json_of_" ^ name in
<:binding< ( $lid:fname$ : $lid:name$ -> Json_type.t ) =
$eta_expand (convert x.def)$ and $acc$ >>)
l <:binding<>> in
<:str_item< value rec $defs$ >>
let expand_typedefs _loc l =
check_unique (fun (name, _) -> name) l;
let names =
List.fold_left
(fun m (((_loc, name), _) as data) -> StringMap.add name data m)
StringMap.empty l in
let typedef = make_typedef _loc names l in
let ofjson = make_ofjson _loc l in
let tojson = make_tojson _loc l in
<:str_item< $typedef$; $ofjson$; $tojson$ >>
let o2b = function None -> false | _ -> true
let is_reserved =
let l = [ "json"; "json_type";
"string"; "bool"; "int"; "float";
"number"; "assoc" ] in
let tbl = Hashtbl.create 20 in
List.iter (fun s -> Hashtbl.add tbl s ()) l;
Hashtbl.mem tbl
let list_of_opt = function None -> [] | Some x -> [x]
let list_of_optlist = function None -> [] | Some x -> x
let check_methods l =
List.iter (fun x ->
if x.is_mutable then
Loc.raise x.field_caml_loc
(Failure "object fields cannot be made mutable")) l
let string_assoc _loc = function
(_loc, Tuple [ (_, String); (_, x) ]) -> (_loc, x)
| (_, _) ->
Loc.raise _loc
(Failure "must be of the form (string * ...) assoc")
open Syntax
let eval_string s = Camlp4.Struct.Token.Eval.string ~strict:() s
EXTEND Gram
GLOBAL: str_item;
str_item: LEVEL "top" [
[ "type"; LIDENT "json";
l = LIST1 type_binding SEP "and" -> expand_typedefs _loc l ]
];
type_binding: [
[ name = [ s = LIDENT ->
if is_reserved s then
Loc.raise _loc
(Failure ("you can't use '" ^ s ^ "' as a type name"))
else (_loc, s) ];
"=";
p = OPT [ LIDENT "predefined" (* ;
priv = OPT "private"*) -> (* priv <> None *) false ];
t = [ t = type_expr -> (t : t)
| r = record -> (_loc, Record r)
| v = variants -> (_loc, Variant v) ] ->
let type_def =
match p with
None -> { is_predefined = false;
is_private = false;
def = t }
| Some is_private ->
{ is_predefined = true;
is_private = is_private;
def = t } in
(name, type_def) ]
];
record: [
[ "{"; l = methods; "}" -> l ]
];
variants: [
[ l =
LIST1 [ id = [ id = UIDENT -> (_loc, id) ];
label = OPT [ s = STRING ->
(_loc, eval_string s) ];
typ = OPT [ "of";
x = LIST1 type_expr LEVEL "simple"
SEP "*" -> x ] ->
let id' = unopt id label in
{ cons_caml_loc = fst id;
cons_caml_name = snd id;
cons_json_loc = fst id';
cons_json_name = snd id';
cons_args = list_of_optlist typ } ]
SEP "|" ->
check_unique (fun x -> (x.cons_caml_loc, x.cons_caml_name)) l;
check_unique (fun x -> (x.cons_json_loc, x.cons_json_name)) l;
l ]
];
type_expr: [
"top" [
x = type_expr; "*"; l = LIST1 type_expr LEVEL "simple" SEP "*" ->
(_loc, Tuple (x :: l))
]
| "simple" [
x = type_expr; LIDENT "list" -> (_loc, List x)
| x = type_expr; LIDENT "array" -> (_loc, Array x)
| x = type_expr; LIDENT "option" -> (_loc, Option x)
| x = type_expr; LIDENT "assoc" -> (_loc, Assoc (string_assoc _loc x))
| "<"; l = methods; ">" -> check_methods l; (_loc, Object l)
| "["; l = polymorphic_variants; "]" -> (_loc, Poly l)
| "("; x = type_expr; ")" -> x
| "("; LIDENT "string"; ","; x = type_expr; ")";
UIDENT "Hashtbl"; "."; LIDENT "t" ->
(_loc, Hashtbl x)
| LIDENT "string" -> (_loc, String)
| LIDENT "bool" -> (_loc, Bool)
| LIDENT "int" -> (_loc, Int)
| LIDENT "float" -> (_loc, Float)
| LIDENT "number" -> (_loc, Number)
| [ UIDENT "Json_type"; "."; LIDENT "json_type"
| LIDENT "json_type" ] -> (_loc, Raw)
| name = LIDENT -> (_loc, Name name)
| module_name = UIDENT; "."; LIDENT "t" ->
if module_name = "Json_type" then (_loc, Raw)
else (_loc, Custom module_name) ]
];
polymorphic_variants: [
[ l =
LIST1 [ "`"; id = [ `(LIDENT id | UIDENT id) -> (_loc, id) ];
label = OPT [ s = STRING ->
(_loc, eval_string s) ];
typ = OPT [ "of"; x = type_expr -> x ] ->
let id' = unopt id label in
{ cons_caml_loc = fst id;
cons_caml_name = snd id;
cons_json_loc = fst id';
cons_json_name = snd id';
cons_args = list_of_opt typ } ]
SEP "|" ->
check_unique (fun x -> (x.cons_caml_loc, x.cons_caml_name)) l;
check_unique (fun x -> (x.cons_json_loc, x.cons_json_name)) l;
l ]
];
methods: [
[ l = LIST0
[ mut = OPT "mutable";
lab = method_label; x = type_expr;
default = OPT [ "="; e = expr LEVEL "apply" -> e ] ->
let ((id, optional), label) = lab in
let id' = unopt id label in
{ field_caml_loc = fst id;
field_caml_name = snd id;
field_json_loc = fst id';
field_json_name = snd id';
field_type = x;
optional = optional;
default = default;
is_mutable = (mut <> None) } ]
SEP ";" ->
check_unique (fun x -> (x.field_caml_loc, x.field_caml_name)) l;
check_unique (fun x -> (x.field_json_loc, x.field_json_name)) l;
l ]
];
method_label: [
[ id_opt = [ id = LIDENT -> ((_loc, id), false)
| "?"; id = LIDENT -> ((_loc, id), true) ];
label = OPT [ s = STRING ->
(_loc, eval_string s) ];
":" -> (id_opt, label)
| id = OPTLABEL -> (((_loc, id), true), None) ]
];
END
|