package archetype
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Archetype language compiler
Install
dune-project
Dependency
Authors
Maintainers
Sources
0.1.8.tar.gz
md5=261a8693f78966153f4ffc4b2ef13fb2
sha512=0a17bab3fb14b092a5cdbd3767db008fca9199140fb81ed330d595696b54a4d93fa3b8cdb58f13b6d127e96b18d3ba6de85e5dc1a9e64a6ae7bd1a0173651382
doc/src/archetype/printer_model_ocaml.ml.html
Source file printer_model_ocaml.ml
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 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341open Location open Tools open Model open Printer_tools exception Anomaly of string type error_desc = | UnsupportedBreak | UnsupportedDeclVar | UnsupportedTerm of string [@@deriving show {with_path = false}] let emit_error (desc : error_desc) = let str = Format.asprintf "%a@." pp_error_desc desc in raise (Anomaly str) type operator = | Equal | Nequal | Lt | Le | Gt | Ge | Plus | Minus | Mult | Div | Modulo type position = | Lhs | Rhs let pp_cast (pos : position) (ltype : type_) (rtype : type_) (pp : 'a -> mterm -> unit) (fmt : Format.formatter) = match pos, ltype, rtype with | Lhs, Tbuiltin Brole, Tbuiltin Baddress -> Format.fprintf fmt "(%a : address)" pp | Rhs, Tbuiltin Baddress, Tbuiltin Brole -> Format.fprintf fmt "(%a : address)" pp | _ -> pp fmt let pp_str fmt str = Format.fprintf fmt "%s" str let to_lident = dumloc let pp_nothing (fmt : Format.formatter) = () let pp_model fmt (model : model) = let remove_shallow (model : model) : model = let rec aux (ctx : ctx_model) (mt : mterm) : mterm = match mt.node with | Mshallow (_, x) | Munshallow (_, x) -> aux ctx x | _ -> map_mterm (aux ctx) mt in map_mterm_model aux model in let model = remove_shallow model in let pp_model_name (fmt : Format.formatter) _ = Format.fprintf fmt "(* contract: %a *)" pp_id model.name in let pp_prelude fmt _ = Format.fprintf fmt "type operation = unit@\n\ @\n\ type address = string@\n\ type timestamp = int@\n\ type tez = int@\n\ type rational = float@\n\ type duration = int@\n\ @\n\ exception Exception of string@\n\ @\n\ module Current : sig@\n \ val sender : unit -> address@\n \ val amount : unit -> tez@\n \ val time : unit -> timestamp@\n \ val failwith : string -> unit@\n\ end = struct@\n \ let sender _ = \"\"@\n \ let amount _ = 0@\n \ let time _ = 0@\n \ let failwith s = failwith s@\n\ end@\n" in let pp_btyp fmt = function | Bbool -> Format.fprintf fmt "bool" | Bint -> Format.fprintf fmt "int" | Brational -> Format.fprintf fmt "rational" | Bdate -> Format.fprintf fmt "timestamp" | Bduration -> Format.fprintf fmt "duration" | Bstring -> Format.fprintf fmt "string" | Baddress -> Format.fprintf fmt "address" | Brole -> Format.fprintf fmt "address" | Bcurrency -> Format.fprintf fmt "tez" | Bkey -> Format.fprintf fmt "key" in let pp_container fmt = function | Collection -> Format.fprintf fmt "list" | Partition -> Format.fprintf fmt "list" | List -> Format.fprintf fmt "list" in let rec pp_type fmt t = match t with | Tasset an -> Format.fprintf fmt "%a" pp_id an | Tenum en -> Format.fprintf fmt "%a" pp_id en | Tcontract cn -> Format.fprintf fmt "%a" pp_id cn | Tbuiltin b -> pp_btyp fmt b | Tcontainer (t, c) -> Format.fprintf fmt "%a %a" pp_type t pp_container c | Toption t -> Format.fprintf fmt "%a option" pp_type t | Ttuple ts -> Format.fprintf fmt "%a" (pp_list " * " pp_type) ts | Tassoc (k, v) -> Format.fprintf fmt "(%a * %a) list" pp_btyp k pp_type v | Tunit -> Format.fprintf fmt "unit" | Tstorage -> Format.fprintf fmt "storage" | Toperation -> Format.fprintf fmt "operation" | Tentry -> Format.fprintf fmt "entry" | Tprog _ | Tvset _ | Ttrace _ -> Format.fprintf fmt "todo" in let pp_storage_const fmt = function | Get an -> let _, t = Utils.get_asset_key model (to_lident an) in Format.fprintf fmt "let get_%s (s, key : storage * %a) : %s =@\n \ match List.assoc_opt key s.%s_assets with@\n \ | Some v -> v@\n \ | _ -> failwith \"not_found\"@\n" an pp_btyp t an an | Set an -> let _, t = Utils.get_asset_key model (to_lident an) in Format.fprintf fmt "let set_%s (s, key, asset : storage * %a * %s) : storage =@\n \ { s with@\n \ %s_assets = put_map key asset s.%s_assets; }@\n" an pp_btyp t an an an | Add an -> let k, t = Utils.get_asset_key model (to_lident an) in Format.fprintf fmt "let add_%s (s, asset : storage * %s) : storage =@\n \ let key = asset.%s in@\n \ { s with@\n \ %s_keys = add_list key s.%s_keys;@\n \ %s_assets = put_map key asset s.%s_assets; }@\n" an an k an an an an | Remove an -> let _, t = Utils.get_asset_key model (to_lident an) in Format.fprintf fmt "let remove_%s (s, key : storage * %a) : storage =@\n \ { s with@\n \ %s_keys = remove_list key s.%s_keys;@\n \ %s_assets = remove_map key s.%s_assets; }@\n" an pp_btyp t an an an an | Clear an -> Format.fprintf fmt "let clear_%s (s : storage) : storage =@\n \ { s with@\n \ %s_keys = [];@\n \ %s_assets = []; }@\n" an an an | Reverse an -> Format.fprintf fmt "let reverse_%s (s : storage) : storage =@\n \ { s with@\n \ %s_keys = List.rev s.%s_keys;@\n \ %s_assets = List.rev s.%s_assets; }@\n" an an an an an | UpdateAdd (an, fn) -> let k, t = Utils.get_asset_key model (to_lident an) in let ft, c = Utils.get_field_container model an fn in let kk, _ = Utils.get_asset_key model (to_lident ft) in Format.fprintf fmt "let add_%s_%s (s, a, b : storage * %s * %s) : storage =@\n \ let asset = { a with %s = add_list b.%a a.%s; } in@\n \ { s with %s_assets = put_map a.%a asset s.%s_assets }@\n" an fn an ft fn pp_str kk fn an pp_str k an | UpdateRemove (an, fn) -> let k, t = Utils.get_asset_key model (to_lident an) in let ft, c = Utils.get_field_container model an fn in let kk, tt = Utils.get_asset_key model (to_lident ft) in Format.fprintf fmt "let remove_%s_%s (s, a, key : storage * %s * %a) : storage =@\n \ let asset = { a with %s = remove_list key a.%s } in@\n \ { s with %s_assets = put_map a.%a asset s.%s_assets }@\n" an fn an pp_btyp tt fn fn an pp_str k an | UpdateClear (an, fn) -> let k, t = Utils.get_asset_key model (to_lident an) in Format.fprintf fmt "let clear_%s_%s (s, a : storage * %s) : storage =@\n \ let key = a.%s in@\n \ let asset = get_%s (s, key) in@\n \ let asset = { asset with %s = [] } in@\n \ { s with %s_assets = put_map a.%s asset s.%s_assets }@\n" an fn an k an fn an k an | UpdateReverse (an, fn) -> let k, t = Utils.get_asset_key model (to_lident an) in Format.fprintf fmt "let reverse_%s_%s (s, a : storage * %s) : storage =@\n \ let key = a.%s in@\n \ let asset = get_%s (s, key) in@\n \ let asset = { asset with %s = List.rev asset.%s } in@\n \ { s with %s_assets = put_map a.%s asset s.%s_assets }@\n" an fn an k an fn fn an k an | ToKeys an -> Format.fprintf fmt "let to_keys_%s (s : storage) : storage =@\n \ s (*TODO*)@\n" an in let pp_container_const fmt = function | AddItem t-> Format.fprintf fmt "add\t %a" pp_type t | RemoveItem t -> Format.fprintf fmt "remove\t %a" pp_type t | ClearItem t -> Format.fprintf fmt "clear\t %a" pp_type t | ReverseItem t -> Format.fprintf fmt "reverse %a" pp_type t in let show_zero = function | _ -> "0" in let pp_function_const fmt = function | Select (an, _) -> let k, t = Utils.get_asset_key model (to_lident an) in Format.fprintf fmt "let select_%s (s, l, p : storage * %a list * (%s -> bool)) : %a list =@\n \ List.fold_left (fun accu x ->@\n \ let a = get_%s (s, x) in@\n \ if p a@\n \ then add_list a.%s accu@\n \ else accu@\n \ ) [] l@\n" an pp_btyp t an pp_btyp t an k | Sort (an, fn) -> Format.fprintf fmt "let sort_%s_%s (s : storage) : unit =@\n \ () (*TODO*)@\n" an fn | Contains an -> let _, t = Utils.get_asset_key model (to_lident an) in Format.fprintf fmt "let contains_%s (l, key : %a list * %a) : bool =@\n \ List.fold_right (fun x accu ->@\n \ accu || x = key@\n \ ) l false@\n" an pp_btyp t pp_btyp t | Nth an -> let _, t = Utils.get_asset_key model (to_lident an) in Format.fprintf fmt "let[@inline] nth_%s (s, l, idx : storage * %a list * int) : %s =@\n \ match l with@\n \ | [] -> failwith \"empty list\"@\n \ | _ ->@\n \ begin@\n \ let cpt = idx in@\n \ let _, res =@\n \ List.fold (fun (x, accu) ->@\n \ let cpt, res = accu in@\n \ if cpt = 0@\n \ then (cpt - 1, Some x)@\n \ else (cpt - 1, res)@\n \ ) l (cpt, None) in@\n \ match res with@\n \ | None -> failwith \"index out of bounds\"@\n \ | Some k -> get_%s (s, k)@\n \ end@\n" an pp_btyp t an an | Count an -> let _, t = Utils.get_asset_key model (to_lident an) in Format.fprintf fmt "let count_%s (l : %a list) : int =@\n \ List.length l@\n" an pp_btyp t | Sum (an, fn) -> let _, tk = Utils.get_asset_key model (to_lident an) in let _, t, _ = Utils.get_asset_field model (dumloc an, fn) in Format.fprintf fmt "let sum_%s_%s (s, l : storage * %a list) : %a =@\n \ List.fold_right (fun k accu ->@\n \ let x =@\n \ match List.assoc_opt k s.%s_assets with@\n \ | Some v -> v@\n \ | _ -> failwith \"not_found\"@\n \ in@\n \ accu + x.%s@\n \ ) l %s@\n" an fn pp_btyp tk pp_type t an fn (show_zero t) | Min (an, fn) -> let _, tk = Utils.get_asset_key model (to_lident an) in let _, t, _ = Utils.get_asset_field model (dumloc an, fn) in Format.fprintf fmt "let min_%s_%s (s, l : storage * %a list) : %a =@\n \ match l with@\n \ | [] -> failwith \"empty list\"@\n \ | e::t ->@\n \ let x = @\n \ match List.assoc_opt e s.%s_assets with@\n \ | Some v -> v@\n \ | _ -> failwith \"not_found\" @\n \ in@\n \ let init = x.%s in@\n \ List.fold_right (fun k accu ->@\n \ let x = @\n \ match List.assoc_opt k s.%s_assets with@\n \ | Some v -> v@\n \ | _ -> failwith \"not_found\" @\n \ in@\n \ if accu > x.%s@\n \ then x.%s@\n \ else accu@\n \ ) t init@\n" an fn pp_btyp tk pp_type t an fn an fn fn | Max (an, fn) -> let _, tk = Utils.get_asset_key model (to_lident an) in let _, t, _ = Utils.get_asset_field model (dumloc an, fn) in Format.fprintf fmt "let max_%s_%s (s, l : storage * %a list) : %a =@\n \ match l with@\n \ | [] -> failwith \"empty list\"@\n \ | e::t ->@\n \ let x = @\n \ match List.assoc_opt e s.%s_assets with@\n \ | Some v -> v@\n \ | _ -> failwith \"not_found\" @\n \ in@\n \ let init = x.%s in@\n \ List.fold_right (fun k accu ->@\n \ let x = @\n \ match List.assoc_opt k s.%s_assets with@\n \ | Some v -> v@\n \ | _ -> failwith \"not_found\" @\n \ in@\n \ if accu < x.%s@\n \ then x.%s@\n \ else accu@\n \ ) t init@\n" an fn pp_btyp tk pp_type t an fn an fn fn | Shallow _ -> () | Unshallow _ -> () | Listtocoll _ -> () | Head an -> let _, t = Utils.get_asset_key model (to_lident an) in Format.fprintf fmt "let head_%s (l : %a list) : %a list =@\n \ List.fold (fun (_, accu) ->@\n \ accu@\n \ ) l []@\n" an pp_btyp t pp_btyp t | Tail an -> let _, t = Utils.get_asset_key model (to_lident an) in Format.fprintf fmt "let tail_%s (l : %a list) : %a list =@\n \ List.fold (fun (_, accu) ->@\n \ accu@\n \ ) l []@\n" an pp_btyp t pp_btyp t in let pp_builtin_const fmt = function | MinBuiltin t-> Format.fprintf fmt "min on %a" pp_type t | MaxBuiltin t-> Format.fprintf fmt "max on %a" pp_type t in let pp_api_item_node fmt = function | APIStorage v -> pp_storage_const fmt v | APIContainer v -> pp_container_const fmt v | APIFunction v -> pp_function_const fmt v | APIBuiltin v -> pp_builtin_const fmt v in let pp_utils fmt l = let pp_util_add fmt _ = Format.fprintf fmt "@\nlet add_list elt l = List.rev (elt::(List.rev l))@\n" in let pp_util_remove fmt _ = Format.fprintf fmt "@\nlet remove_list elt l =@\n \ List.fold_right (fun x accu ->@\n \ if x = elt@\n \ then accu@\n \ else elt::accu@\n \ ) l []@\n" in let pp_util_put_map fmt _ = Format.fprintf fmt "@\nlet put_map (k : 'a) (v : 'b) (map : ('a * 'b) list) : ('a * 'b) list = (k, v)::map@\n" in let pp_util_remove_map fmt _ = Format.fprintf fmt "@\nlet remove_map (k : 'a) (map : ('a * 'b) list) : ('a * 'b) list = map@\n" in let ga, gr = List.fold_left (fun (ga, gr) (x : api_item) -> match x.node_item with | APIStorage (Get _) -> (ga, gr) | APIStorage (Set _) -> (ga, gr) | APIStorage (Add _) -> (true, gr) | APIStorage (Remove _) -> (true, true) | APIStorage (Clear _) -> (ga, gr) | APIStorage (Reverse _) -> (ga, gr) | APIStorage (UpdateAdd _) -> (true, gr) | APIStorage (UpdateRemove _) -> (true, true) | APIStorage (UpdateClear _) -> (ga, gr) | APIStorage (UpdateReverse _) -> (ga, gr) | APIStorage (ToKeys _) -> (ga, gr) | APIFunction (Select _) -> (ga, gr) | APIFunction (Sort _) -> (ga, gr) | APIFunction (Contains _) -> (ga, gr) | APIFunction (Nth _) -> (ga, gr) | APIFunction (Count _) -> (ga, gr) | APIFunction (Sum _) -> (ga, gr) | APIFunction (Min _) -> (ga, gr) | APIFunction (Max _) -> (ga, gr) | APIContainer (AddItem _) -> (ga, gr) | APIContainer (RemoveItem _) -> (ga, gr) | APIContainer (ClearItem _) -> (ga, gr) | APIContainer (ReverseItem _) -> (ga, gr) | APIBuiltin (MinBuiltin _) -> (ga, gr) | APIBuiltin (MaxBuiltin _) -> (ga, gr) | APIFunction (Shallow _) -> (ga, gr) | APIFunction (Unshallow _) -> (ga, gr) | APIFunction (Listtocoll _) -> (ga, gr) | APIFunction (Head _) -> (ga, gr) | APIFunction (Tail _) -> (ga, gr) ) (false, false) l in if ga || gr then Format.fprintf fmt "(* Utils *)@\n%a%a%a%a@\n" pp_util_add () (pp_do_if gr pp_util_remove) () pp_util_put_map () pp_util_remove_map () in let pp_api_item fmt (api_item : api_item) = pp_api_item_node fmt api_item.node_item in let pp_api_items fmt l = let filter_api_items l : api_item list = let contains_select_asset_name a_name l : bool = List.fold_left (fun accu x -> match x.node_item with | APIFunction (Select (an, _)) -> accu || String.equal an a_name | _ -> accu ) false l in List.fold_right (fun (x : api_item) accu -> if x.only_formula then accu else match x.node_item with | APIFunction (Select (an, p)) when contains_select_asset_name an accu -> accu | _ -> x::accu ) l [] in let l : api_item list = filter_api_items l in if List.is_empty l then pp_nothing fmt else Format.fprintf fmt "(* API function *)@\n%a@\n" (pp_list "@\n" pp_api_item) l in let pp_operator fmt op = let to_str = function | ValueAssign -> ":=" | PlusAssign -> "+=" | MinusAssign -> "-=" | MultAssign -> "*=" | DivAssign -> "/=" | AndAssign -> "&=" | OrAssign -> "|=" in pp_str fmt (to_str op) in let rec pp_qualid fmt (q : qualid) = match q.node with | Qdot (q, i) -> Format.fprintf fmt "%a.%a" pp_qualid q pp_id i | Qident i -> pp_id fmt i in let pp_pattern fmt (p : pattern) = match p.node with | Pconst i -> pp_id fmt i | Pwild -> pp_str fmt "_" in let pp_mterm fmt (mt : mterm) = let rec f fmt (mtt : mterm) = match mtt.node with | Mif (c, t, None) -> Format.fprintf fmt "@[if %a@ then %a@]" f c f t | Mif (c, t, Some e) -> Format.fprintf fmt "@[if %a then @\n @[%a @]@\nelse @\n @[%a @]@]" f c f t f e | Mmatchwith (e, l) -> let pp fmt (e, l) = Format.fprintf fmt "match %a with@\n@[<v 2>%a@]" f e (pp_list "@\n" (fun fmt (p, x) -> Format.fprintf fmt "| %a -> %a" pp_pattern p f x )) l in pp fmt (e, l) | Mapp (e, args) -> let pp fmt (e, args) = Format.fprintf fmt "%a (%a)" pp_id e (pp_list ", " f) args in pp fmt (e, args) | Maddshallow (e, args) -> let pp fmt (e, args) = Format.fprintf fmt "add_shallow_%a (%a)" pp_str e (pp_list ", " f) args in pp fmt (e, args) | Mexternal (_, _, c, args) -> let pp fmt (c, args) = Format.fprintf fmt "%a (%a)" f c (pp_list ", " f) args in pp fmt (c, args) | Mget (c, k) -> let pp fmt (c, k) = Format.fprintf fmt "get_%a (_s, %a)" pp_str c f k in pp fmt (c, k) | Mset (c, l, k, v) -> let pp fmt (c, k, v) = Format.fprintf fmt "set_%a (_s, %a, %a)" pp_str c f k f v in pp fmt (c, k, v) | Maddasset (an, i) -> let pp fmt (an, i) = Format.fprintf fmt "add_%a (_s, %a)" pp_str an f i in pp fmt (an, i) | Maddfield (an, fn, c, i) -> let pp fmt (an, fn, c, i) = Format.fprintf fmt "add_%a_%a (_s, %a, %a)" pp_str an pp_str fn f c f i in pp fmt (an, fn, c, i) | Maddlocal (c, i) -> let pp fmt (c, i) = Format.fprintf fmt "add (%a, %a)" f c f i in pp fmt (c, i) | Mremoveasset (an, i) -> let cond, str = (match i.type_ with | Tasset an -> let k, _ = Utils.get_asset_key model an in true, "." ^ k | _ -> false, "" ) in let pp fmt (an, i) = Format.fprintf fmt "remove_%a (_s, %a%a)" pp_str an f i (pp_do_if cond pp_str) str in pp fmt (an, i) | Mremovefield (an, fn, c, i) -> let cond, str = (match i.type_ with | Tasset an -> let k, _ = Utils.get_asset_key model an in true, "." ^ k | _ -> false, "" ) in let pp fmt (an, fn, c, i) = Format.fprintf fmt "remove_%a_%a (_s, %a, %a%a)" pp_str an pp_str fn f c f i (pp_do_if cond pp_str) str in pp fmt (an, fn, c, i) | Mremovelocal (c, i) -> let pp fmt (c, i) = Format.fprintf fmt "remove (%a, %a)" f c f i in pp fmt (c, i) | Mclearasset (an) -> let pp fmt (an) = Format.fprintf fmt "clear_%a (_s)" pp_str an in pp fmt (an) | Mclearfield (an, fn, i) -> let pp fmt (an, fn, i) = Format.fprintf fmt "clear_%a_%a (_s, %a)" pp_str an pp_str fn f i in pp fmt (an, fn, i) | Mclearlocal (i) -> let pp fmt (i) = Format.fprintf fmt "clear (%a)" f i in pp fmt (i) | Mreverseasset (an) -> let pp fmt (an) = Format.fprintf fmt "reverse_%a (_s)" pp_str an in pp fmt (an) | Mreversefield (an, fn, i) -> let pp fmt (an, fn, i) = Format.fprintf fmt "reverse_%a_%a (_s, %a)" pp_str an pp_str fn f i in pp fmt (an, fn, i) | Mreverselocal (i) -> let pp fmt (i) = Format.fprintf fmt "reverse (%a)" f i in pp fmt (i) | Mselect (an, c, p) -> let pp fmt (an, c, p) = Format.fprintf fmt "select_%a (_s, %a, fun the -> %a)" pp_str an f c f p in pp fmt (an, c, p) | Msort (an, c, fn, k) -> let pp fmt (an, c, fn, k) = Format.fprintf fmt "sort_%a_%a (%a)" pp_str an pp_str fn f c (* pp_sort_kind k *) (* TODO: asc / desc *) in pp fmt (an, c, fn, k) | Mcontains (an, c, i) -> let pp fmt (an, c, i) = Format.fprintf fmt "contains_%a (%a, %a)" pp_str an f c f i in pp fmt (an, c, i) | Mmem (an, c, i) -> let pp fmt (an, c, i) = Format.fprintf fmt "mem_%a (%a, %a)" pp_str an f c f i in pp fmt (an, c, i) | Msubsetof (an, c, i) -> let pp fmt (an, c, i) = Format.fprintf fmt "subset_%a (%a, %a)" pp_str an f c f i in pp fmt (an, c, i) | Mnth (an, c, i) -> let pp fmt (an, c, i) = Format.fprintf fmt "nth_%a (%a, %a)" pp_str an f c f i in pp fmt (an, c, i) | Mcount (an, c) -> let pp fmt (an, c) = Format.fprintf fmt "count_%a (%a)" pp_str an f c in pp fmt (an, c) | Msum (an, fd, c) -> let pp fmt (an, fd, c) = Format.fprintf fmt "sum_%a_%a (_s, %a)" pp_str an pp_id fd f c in pp fmt (an, fd, c) | Mmin (an, fd, c) -> let pp fmt (an, fd, c) = Format.fprintf fmt "min_%a_%a (_s, %a)" pp_str an pp_id fd f c in pp fmt (an, fd, c) | Mmax (an, fd, c) -> let pp fmt (an, fd, c) = Format.fprintf fmt "max_%a_%a (_s, %a)" pp_str an pp_id fd f c in pp fmt (an, fd, c) | Mfail ft -> let pp_fail_type fmt = function | Invalid e -> f fmt e | InvalidCaller -> Format.fprintf fmt "invalid caller" | InvalidCondition c -> Format.fprintf fmt "require %afailed" (pp_option (pp_postfix " " pp_str)) c | NoTransfer -> Format.fprintf fmt "no transfer" | InvalidState -> Format.fprintf fmt "invalid state" in Format.fprintf fmt "failwith \"%a\"" pp_fail_type ft | Mmathmin (l, r) -> Format.fprintf fmt "min (%a, %a)" f l f r | Mmathmax (l, r) -> Format.fprintf fmt "max (%a, %a)" f l f r | Mhead (an, c, i) -> Format.fprintf fmt "head_%a (%a, %a)" pp_str an f c f i | Mtail (an, c, i) -> Format.fprintf fmt "tail_%a (%a, %a)" pp_str an f c f i | Mand (l, r) -> let pp fmt (l, r) = Format.fprintf fmt "%a and %a" f l f r in pp fmt (l, r) | Mor (l, r) -> let pp fmt (l, r) = Format.fprintf fmt "%a or %a" f l f r in pp fmt (l, r) | Mimply (l, r) -> let pp fmt (l, r) = Format.fprintf fmt "%a -> %a" f l f r in pp fmt (l, r) | Mequiv (l, r) -> let pp fmt (l, r) = Format.fprintf fmt "%a <-> %a" f l f r in pp fmt (l, r) | Misempty (l, r) -> let pp fmt (l, r) = Format.fprintf fmt "isempty_%a <-> %a" pp_str l f r in pp fmt (l, r) | Mnot e -> let pp fmt e = Format.fprintf fmt "not (%a)" f e in pp fmt e | Mmulticomp (e, l) -> assert false | Mequal (l, r) -> let pp fmt (l, r : mterm * mterm) = Format.fprintf fmt "%a = %a" (pp_cast Lhs l.type_ r.type_ f) l (pp_cast Rhs l.type_ r.type_ f) r in pp fmt (l, r) | Mnequal (l, r) -> let pp fmt (l, r : mterm * mterm) = Format.fprintf fmt "%a <> %a" (pp_cast Lhs l.type_ r.type_ f) l (pp_cast Rhs l.type_ r.type_ f) r in pp fmt (l, r) | Mgt (l, r) -> let pp fmt (l, r : mterm * mterm) = Format.fprintf fmt "%a > %a" (pp_cast Lhs l.type_ r.type_ f) l (pp_cast Rhs l.type_ r.type_ f) r in pp fmt (l, r) | Mge (l, r) -> let pp fmt (l, r : mterm * mterm) = Format.fprintf fmt "%a >= %a" (pp_cast Lhs l.type_ r.type_ f) l (pp_cast Rhs l.type_ r.type_ f) r in pp fmt (l, r) | Mlt (l, r) -> let pp fmt (l, r : mterm * mterm) = Format.fprintf fmt "%a < %a" (pp_cast Lhs l.type_ r.type_ f) l (pp_cast Rhs l.type_ r.type_ f) r in pp fmt (l, r) | Mle (l, r) -> let pp fmt (l, r : mterm * mterm) = Format.fprintf fmt "%a <= %a" (pp_cast Lhs l.type_ r.type_ f) l (pp_cast Rhs l.type_ r.type_ f) r in pp fmt (l, r) | Mplus (l, r) -> let pp fmt (l, r : mterm * mterm) = Format.fprintf fmt "%a + %a" (pp_cast Lhs l.type_ r.type_ f) l (pp_cast Rhs l.type_ r.type_ f) r in pp fmt (l, r) | Mminus (l, r) -> let pp fmt (l, r : mterm * mterm) = Format.fprintf fmt "%a - %a" (pp_cast Lhs l.type_ r.type_ f) l (pp_cast Rhs l.type_ r.type_ f) r in pp fmt (l, r) | Mmult (l, r) -> let pp fmt (l, r : mterm * mterm) = Format.fprintf fmt "%a * %a" (pp_cast Lhs l.type_ r.type_ f) l (pp_cast Rhs l.type_ r.type_ f) r in pp fmt (l, r) | Mdiv (l, r) -> let pp fmt (l, r : mterm * mterm) = Format.fprintf fmt "%a / %a" (pp_cast Lhs l.type_ r.type_ f) l (pp_cast Rhs l.type_ r.type_ f) r in pp fmt (l, r) | Mmodulo (l, r) -> let pp fmt (l, r : mterm * mterm) = Format.fprintf fmt "%a %% %a" (pp_cast Lhs l.type_ r.type_ f) l (pp_cast Rhs l.type_ r.type_ f) r in pp fmt (l, r) | Muplus e -> let pp fmt e = Format.fprintf fmt "+%a" f e in pp fmt e | Muminus e -> let pp fmt e = Format.fprintf fmt "-%a" f e in pp fmt e | Mrecord l -> let asset_name = match mtt.type_ with | Tasset asset_name -> asset_name | _ -> assert false in let a = Utils.get_info_asset model asset_name in let ll = List.map (fun (i,_,_) -> dumloc i) a.values in let lll = List.map2 (fun x y -> (x, y)) ll l in Format.fprintf fmt "{ %a }" (pp_list "; " (fun fmt (a, b)-> Format.fprintf fmt "%a = %a" pp_id a f b)) lll | Mletin (ids, ({node = Mseq l} as a), t, b) -> Format.fprintf fmt "let %a%a =@\n @[%a@]in@\n@[%a@]" (pp_if (List.length ids > 1) (pp_paren (pp_list ", " pp_id)) (pp_list ", " pp_id)) ids (pp_option (fun fmt -> Format.fprintf fmt " : %a" pp_type)) t f a f b | Mletin (ids, a, t, b) -> Format.fprintf fmt "let %a%a = %a in@\n@[%a@]" (pp_if (List.length ids > 1) (pp_paren (pp_list ", " pp_id)) (pp_list ", " pp_id)) ids (pp_option (fun fmt -> Format.fprintf fmt " : %a" pp_type)) t f a f b | Mdeclvar (ids, t, v) -> emit_error UnsupportedDeclVar | Mvarstorevar v -> Format.fprintf fmt "_s.%a" pp_id v | Mvarstorecol v -> Format.fprintf fmt "_s.%a" pp_id v | Mvarenumval v -> pp_id fmt v | Mvarfield v -> pp_id fmt v | Mvarlocal v -> pp_id fmt v | Mvarparam v -> pp_id fmt v | Mvarthe -> pp_str fmt "the" | Mstate -> pp_str fmt "state" | Mnow -> pp_str fmt "Current.time()" | Mtransferred -> pp_str fmt "Current.amount()" | Mcaller -> pp_str fmt "Current.sender()" | Mbalance -> pp_str fmt "Current.balance()" | Mnone -> pp_str fmt "None" | Msome v -> Format.fprintf fmt "Some (%a)" f v | Marray l -> begin match mtt.type_ with | Tassoc (k , v) -> begin match l with | [] -> Format.fprintf fmt "[]" | _ -> Format.fprintf fmt "[%a]" (pp_list "; " f) l end | _ -> Format.fprintf fmt "[%a]" (pp_list "; " f) l end | Mint v -> pp_big_int fmt v | Muint v -> pp_big_int fmt v | Mbool b -> pp_str fmt (if b then "true" else "false") | Menum v -> pp_str fmt v | Mrational (n, d) -> Format.fprintf fmt "(%a. /. %a.)" pp_big_int n pp_big_int d | Mdate v -> Format.fprintf fmt "\"%a\"" pp_str v | Mstring v -> Format.fprintf fmt "\"%a\"" pp_str v | Mcurrency (v, c) -> let b : Big_int.big_int = begin match c with | Tz -> Big_int.mult_int_big_int 1000000 v | Mtz -> v end in Format.fprintf fmt "%a" pp_big_int b | Maddress v -> Format.fprintf fmt "\"%a\"" pp_str v | Mduration v -> Core.pp_duration_in_seconds fmt v | Mdotasset (e, i) | Mdotcontract (e, i) -> Format.fprintf fmt "%a.%a" f e pp_id i | Mtuple l -> Format.fprintf fmt "(%a)" (pp_list ", " f) l | Massoc (k, v) -> Format.fprintf fmt "(%a : %a)" f k f v | Mfor (i, c, b, _) -> Format.fprintf fmt "for (%a in %a) (@\n @[%a@])@\n" pp_id i f c f b | Miter (i, a, b, c, _) -> Format.fprintf fmt "TODO: iter@\n" | Mfold (i, is, c, b) -> Format.fprintf fmt "List.fold_left (fun (%a) %a ->@\n \ @[%a@]) (%a) %a@\n" (pp_list ", " pp_id) is pp_id i f b (pp_list ", " pp_id) is f c | Mseq is -> Format.fprintf fmt "@[%a@]" (pp_list ";@\n" f) is | Massign (op, l, r) -> Format.fprintf fmt "%a %a %a" pp_id l pp_operator op f r | Massignfield (op, a, field , r) -> Format.fprintf fmt "%a.%a %a %a" pp_id a pp_id field pp_operator op f r | Mtransfer (x, b, q) -> Format.fprintf fmt "transfer%s %a%a" (if b then " back" else "") f x (pp_option (fun fmt -> Format.fprintf fmt " to %a" pp_qualid)) q | Mbreak -> emit_error UnsupportedBreak | Massert x -> Format.fprintf fmt "assert %a" f x | Mreturn x -> Format.fprintf fmt "return %a" f x | Mlabel i -> () | Mshallow (i, x) -> Format.fprintf fmt "shallow_%a %a" pp_str i f x | Munshallow (i, x) -> Format.fprintf fmt "unshallow_%a %a" pp_str i f x | Mtokeys (an, x) -> Format.fprintf fmt "%s.to_keys (%a)" an f x | Mlisttocoll (_, x) -> f fmt x | Mforall _ -> emit_error (UnsupportedTerm ("forall")) | Mexists _ -> emit_error (UnsupportedTerm ("exists")) | Msetbefore _ -> emit_error (UnsupportedTerm ("setbefore")) | Msetunmoved _ -> emit_error (UnsupportedTerm ("setunmoved")) | Msetadded _ -> emit_error (UnsupportedTerm ("setadded")) | Msetremoved _ -> emit_error (UnsupportedTerm ("setremoved")) | Msetiterated _ -> emit_error (UnsupportedTerm ("setiterated")) | Msettoiterate _ -> emit_error (UnsupportedTerm ("settoiterate")) | Mremoveif _ -> emit_error (UnsupportedTerm ("removeif")) in f fmt mt in let pp_enum_item fmt (enum_item : enum_item) = Format.fprintf fmt "| %a" pp_id enum_item.name in let pp_enum fmt (enum : enum) = Format.fprintf fmt "type %a =@\n @[%a@]@\n" pp_id enum.name (pp_list "@\n" pp_enum_item) enum.values in let pp_record_item fmt (item : record_item) = let pp_typ fmt t = match t with | Tcontainer (Tasset an, _) -> let _, t = Utils.get_asset_key model an in Format.fprintf fmt "%a list" pp_btyp t | _ -> pp_type fmt t in Format.fprintf fmt "%a : %a;" pp_id item.name pp_typ item.type_ (* (pp_option (fun fmt -> Format.fprintf fmt " := %a" pp_mterm)) item.default *) in let pp_record fmt (record : record) = Format.fprintf fmt "type %a = {@\n @[%a@]@\n}@\n" pp_id record.name (pp_list "@\n" pp_record_item) record.values in let pp_decl fmt = function | Denum e -> pp_enum fmt e | Drecord r -> pp_record fmt r | _ -> () in let pp_storage_item fmt (si : storage_item) = Format.fprintf fmt "%a : %a;" pp_id si.name pp_type si.typ in let pp_storage fmt (s : storage) = match s with | [] -> pp_str fmt "type storage = unit@\n" | [i] -> Format.fprintf fmt "type storage = %a@\n" pp_type i.typ | _ -> Format.fprintf fmt "type storage = {@\n @[%a@]@\n}@\n" (pp_list "@\n" pp_storage_item) s in let pp_init_function fmt (s : storage) = let pp_storage_item fmt (si : storage_item) = Format.fprintf fmt "%a = %a;" pp_id si.name (pp_cast Rhs si.typ si.default.type_ pp_mterm) si.default in match s with | [] -> pp_str fmt "let initialize _ = ()@\n" | [i] -> Format.fprintf fmt "let initialize _ = %a@\n" (pp_cast Rhs i.typ i.default.type_ pp_mterm) i.default | _ -> Format.fprintf fmt "let initialize _ = {@\n @[%a@]@\n}@\n" (pp_list "@\n" pp_storage_item) s in let pp_args fmt args = match args with | [] -> Format.fprintf fmt "()" | [(id, t, _)] -> Format.fprintf fmt "(%a : %a)" pp_id id pp_type t | _ -> Format.fprintf fmt "(%a : %a)" (pp_list ", " (fun fmt (id, _, _) -> pp_id fmt id)) args (pp_list " * " (fun fmt (_ , t, _) -> pp_type fmt t)) args in let pp_function fmt f = let k, fs, ret, extra_arg = match f.node with | Entry f -> "let", f, Some (Ttuple [Tcontainer (Toperation, Collection); Tstorage]), " (_s : storage)" | Function (f, a) -> "let", f, Some a, "" in Format.fprintf fmt "%a %a %a%s%a =@\n@[<v 2> %a@]@\n" pp_str k pp_id fs.name pp_args fs.args extra_arg (pp_option (fun fmt -> Format.fprintf fmt " : %a" pp_type)) ret pp_mterm fs.body in Format.fprintf fmt "(* OCaml output generated by archetype *)@\n\ @\n%a@\n\ @\n%a\ @\n%a\ @\n%a\ @\n%a\ @\n%a\ @\n%a\ @\n%a\ @." pp_model_name () pp_prelude () (pp_list "@\n" pp_decl) model.decls pp_storage model.storage pp_init_function model.storage pp_utils model.api_items pp_api_items model.api_items (pp_list "@\n" pp_function) model.functions (* -------------------------------------------------------------------------- *) let string_of__of_pp pp x = Format.asprintf "%a@." pp x let show_model (x : model) = string_of__of_pp pp_model x
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>