package opam-format
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Format library for opam 2.0
Install
dune-project
Dependency
Authors
-
VVincent Bernardoff <vb@luminar.eu.org>
-
RRaja Boujbel <raja.boujbel@ocamlpro.com>
-
RRoberto Di Cosmo <roberto@dicosmo.org>
-
TThomas Gazagnaire <thomas@gazagnaire.org>
-
LLouis Gesbert <louis.gesbert@ocamlpro.com>
-
FFabrice Le Fessant <Fabrice.Le_fessant@inria.fr>
-
AAnil Madhavapeddy <anil@recoil.org>
-
GGuillem Rieu <guillem.rieu@ocamlpro.com>
-
RRalf Treinen <ralf.treinen@pps.jussieu.fr>
-
FFrederic Tuong <tuong@users.gforge.inria.fr>
Maintainers
Sources
2.0.1.tar.gz
md5=1e55c234fa09e678e8115a31f3ec2a05
sha512=d71c362d70a6b6cb9fe54cc43bfbea8079cca05d4721a7dda951196f543a1ff5af81399a246e0cd68bc590c7bdca388d96c7127217ed637261957047ce725516
doc/src/opam-format/opamFormat.ml.html
Source file opamFormat.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(**************************************************************************) (* *) (* Copyright 2012-2015 OCamlPro *) (* Copyright 2012 INRIA *) (* *) (* All rights reserved. This file is distributed under the terms of the *) (* GNU Lesser General Public License version 2.1, with the special *) (* exception on linking described in the file LICENSE. *) (* *) (**************************************************************************) open OpamTypes open OpamTypesBase open OpamStd.Op open OpamPp open OpamPp.Op let item_pos = function | Section (pos,_) | Variable (pos,_,_) -> pos let value_pos = function | Bool (pos, _) | Int (pos, _) | String (pos, _) | Logop (pos, _, _, _) | Pfxop (pos, _, _) | Relop (pos, _, _, _) | Prefix_relop (pos, _, _) | Ident (pos, _) | List (pos, _) | Group (pos, _) | Option (pos, _, _) | Env_binding (pos, _, _, _) -> pos let values_pos = function | [] -> None | x::_ -> Some (value_pos x) (** low-level Pps for the Lines parser ([string list list]) *) type lines = string list list let lines_set ~empty ~add ~fold pp1 = pp ~name:(Printf.sprintf "(%s) lines" pp1.ppname) (fun ~pos:(file,_,_) lines -> List.fold_left (fun (i,acc) -> function | [] -> i + 1, acc | line -> i + 1, add (parse pp1 ~pos:(file,i,0) line) acc) (1, empty) lines |> snd) (fun x -> List.rev (fold (fun v acc -> print pp1 v::acc) x [])) let lines_map ~empty ~add ~fold pp1 = pp ~name:(Printf.sprintf "(%s) lines" pp1.ppname) (fun ~pos:(file,_,_) lines -> List.fold_left (fun (i,acc) -> function | [] -> i + 1, acc | line -> let k,v = parse pp1 ~pos:(file,i,0) line in i + 1, add k v acc) (1, empty) lines |> snd) (fun x -> List.rev (fold (fun k v acc -> print pp1 (k,v)::acc) x [])) (* let list2 pp1 pp2 = pp ~name:(Printf.sprintf "%s %s" pp1.ppname pp2.ppname) (function [a; b] -> parse pp1 a, parse pp2 b | _ -> unexpected ()) (fun (x,y) -> [print pp1 x; print pp2 y]) *) (** All Pps dealing with the [value] type *) module V = struct (** Low-level Pps *) let bool = pp ~name:"bool" (fun ~pos:_ -> function Bool (_,b) -> b | _ -> unexpected ()) (fun b -> Bool (pos_null,b)) let int = pp ~name:"int" (fun ~pos:_ -> function Int (_,i) -> i | _ -> unexpected ()) (fun i -> Int (pos_null,i)) let pos_int = int -| check ~name:"positive-int" (fun i -> i >= 0) let ident = pp ~name:"ident" (fun ~pos:_ -> function Ident (_,i) -> i | _ -> unexpected ()) (fun str -> Ident (pos_null,str)) let string = pp ~name:"string" (fun ~pos:_ -> function String (_,s) -> s | _ -> unexpected ()) (fun str -> String (pos_null,str)) let string_tr = string -| pp (fun ~pos:_ -> OpamStd.String.strip) (fun x -> x) let simple_arg = pp ~name:"ident-or-string" (fun ~pos:_ -> function | Ident (_,i) -> CIdent i | String (_,s) -> CString s | _ -> unexpected ()) (function | CIdent i -> Ident (pos_null, i) | CString s -> String (pos_null, s)) let variable_contents = pp ~name:"string-or-stringlist-or-bool" (fun ~pos:_ -> function | String (_,s) -> S s | Bool (_,b) -> B b | List (_,l) -> L (List.map (function String (_, s) -> s | _ -> unexpected ()) l) | _ -> unexpected ()) (function | S s -> String (pos_null, s) | B b -> Bool (pos_null, b) | L l -> List (pos_null, List.map (fun s -> String (pos_null, s)) l)) let list = pp ~name:"list" ~name_constr:(Printf.sprintf "[%s]") (fun ~pos:_ -> function | List (_,l) -> l | x -> [x]) (fun l -> List (pos_null, l)) let group = pp ~name:"group" ~name_constr:(Printf.sprintf "(%s)") (fun ~pos:_ -> function | Group (_,l) -> l | x -> [x]) (fun l -> Group (pos_null, l)) let option = pp ~name:"option" (fun ~pos:_ -> function | Option (_,k,l) -> k, l | k -> k, []) (function | (v, []) -> v | (v, l) -> Option (pos_null, v, l)) let option_strict = pp ~name:"option" (fun ~pos -> function | Option (_,k,l) -> k, l | _ -> bad_format ~pos "Expected an option") (function (v, l) -> Option (pos_null, v, l)) let map_group pp1 = group -| map_list ~posf:value_pos pp1 let list_depth expected_depth = let rec depth = function | List (_,[]) -> 1 | List (_,(v::_)) -> 1 + depth v | Option (_,v,_) -> depth v | _ -> 0 in let rec wrap n v = if n <= 0 then v else wrap (n-1) (List (pos_null, [v])) in let rec lift n v = if n <= 0 then v else match v with | List (_, [v]) -> lift (n-1) v | v -> v in pp (fun ~pos:_ v -> wrap (expected_depth - depth v) v) (fun v -> lift expected_depth v) let option_depth expected_depth = let rec depth = function | Option (_,v,_) -> 1 + depth v | _ -> 0 in let rec wrap n v = if n <= 0 then v else wrap (n-1) (Option (pos_null, v, [])) in let rec lift n v = if n <= 0 then v else match v with | Option (_, v, []) -> lift (n-1) v | v -> v in pp (fun ~pos:_ v -> wrap (expected_depth - depth v) v) (fun v -> lift expected_depth v) let map_list ?(depth=0) pp1 = list_depth depth -| pp ~name:(Printf.sprintf "[%s]" pp1.ppname) (fun ~pos:_ v -> match v with | List (_, l) -> List.rev @@ List.rev_map (fun v -> parse pp1 ~pos:(value_pos v) v) l | _ -> unexpected ()) (function | l -> List (pos_null, List.rev @@ List.rev_map (print pp1) l)) let map_option_contents pp1 pp2 = map_pair ~name:(Printf.sprintf "%s ?{%s}" pp1.ppname pp2.ppname) ~posf1:value_pos ~posf2:(fun v -> OpamStd.Option.default pos_null (values_pos v)) pp1 pp2 let map_option pp1 pp2 = option -| map_option_contents pp1 pp2 let map_options_2 pp1 pp2 pp3 = option_depth 2 -| option_strict -| map_option_contents (option_strict -| map_option_contents pp1 pp2) pp3 -| pp (fun ~pos:_ ((a,b),c) -> a,b,c) (fun (a,b,c) -> (a,b),c) let map_options_3 pp1 pp2 pp3 pp4 = option_depth 3 -| option_strict -| map_option_contents (option_strict -| map_option_contents (option_strict -| map_option_contents pp1 pp2) pp3) pp4 -| pp (fun ~pos:_ (((a,b),c),d) -> a,b,c,d) (fun (a,b,c,d) -> ((a,b),c),d) let map_pair pp1 pp2 = pp ~name:(Printf.sprintf "[%s %s]" pp1.ppname pp2.ppname) (fun ~pos:_ -> function | List (_,[a; b]) -> parse pp1 ~pos:(value_pos a) a, parse pp2 ~pos:(value_pos b) b | _ -> unexpected ()) (fun (a, b) -> List (pos_null, [pp1.print a; pp2.print b])) let map_triple pp1 pp2 pp3 = pp ~name:(Printf.sprintf "[%s %s %s]" pp1.ppname pp2.ppname pp3.ppname) (fun ~pos:_ -> function | List (_,[a; b; c]) -> parse pp1 ~pos:(value_pos a) a, parse pp2 ~pos:(value_pos b) b, parse pp3 ~pos:(value_pos c) c | _ -> unexpected ()) (fun (a, b, c) -> List (pos_null, [pp1.print a; pp2.print b; pp3.print c])) (** Pps for the [value] type to higher level types *) let url = string -| of_module "url" (module OpamUrl) let url_with_backend backend = string -| pp ~name:"url" (fun ~pos:_ -> OpamUrl.parse ~backend ~handle_suffix:false) (fun url -> OpamUrl.to_string url) (* a hack to allow "system" compiler as ident rather than string. For backwards-compat. Deprecated, for migration only *) let compiler_version = let system_compiler = "system" in let parse ~pos:_ = function | Ident (_, v) when v = system_compiler -> v | String (_, v) -> v | _ -> unexpected () in let print v = if v = system_compiler then print ident v else print string v in pp ~name:"compiler-version" parse print let filter_ident = ident -| pp ~name:"filter-ident" (fun ~pos:_ -> filter_ident_of_string) string_of_filter_ident let filter = let rec parse_filter ~pos l = let rec aux = function | Bool (_,b) -> FBool b | String (_,s) -> FString s | Int (_,i) -> FString (string_of_int i) | Ident (pos,_) as id -> FIdent (parse ~pos filter_ident id) | Group (pos,g) -> parse_filter ~pos g | Relop (_,op,e,f) -> FOp (aux e, op, aux f) | Pfxop (_,`Not,e) -> FNot (aux e) | Pfxop (_,`Defined,e) -> FDefined (aux e) | Logop(_,`And,e,f)-> FAnd (aux e, aux f) | Logop(_,`Or, e,f)-> FOr (aux e, aux f) | _ -> unexpected () in match l with | [] -> FBool true | [Group (_, ([] | _::_::_))] | _::_::_ -> bad_format ~pos "expected a single filter expression" | [Group(_,[f])] | [f] -> aux f in let print_filter f = let rec aux ?(context=`Or) f = let group_if ?(cond=false) f = if cond || OpamFormatConfig.(!r.all_parens) then Group (pos_null, [f]) else f in match f with | FString s -> print string s | FIdent fid -> print filter_ident fid | FBool b -> print bool b | FOp(e,s,f) -> group_if ~cond:(context <> `Or && context <> `And) (Relop (pos_null, s, aux ~context:`Relop e, aux ~context:`Relop f)) | FOr(e,f) -> group_if ~cond:(context <> `Or) (Logop (pos_null, `Or, aux ~context:`Or e, aux ~context:`Or f)) | FAnd(e,f) -> group_if ~cond:(context <> `Or && context <> `And) (Logop (pos_null, `And, aux ~context:`And e, aux ~context:`And f)) | FNot f -> group_if ~cond:(context = `Relop) (Pfxop (pos_null, `Not, aux ~context:`Not f)) | FDefined f -> group_if ~cond:(context = `Relop) (Pfxop (pos_null, `Defined, aux ~context:`Defined f)) | FUndef _ -> assert false in match f with | FBool true -> [] | f -> [aux f] in pp ~name:"filter-expression" parse_filter print_filter let arg = map_option simple_arg (opt filter) let command = map_option (map_list arg) (opt filter) let constraints version = let rec parse_constraints ~pos:_ l = let rec aux = function | Prefix_relop (pos, op, v) -> Atom (op, parse version ~pos v) | Logop (_, `And, l, r) -> And (aux l, aux r) | Logop (_, `Or, l, r) -> Or (aux l, aux r) | Pfxop (_,`Not,v) -> OpamFormula.neg (fun (op, s) -> (OpamFormula.neg_relop op, s)) (aux v) | Group (pos, g) -> Block (parse_constraints ~pos g) | v -> unexpected ~pos:(value_pos v) () in OpamFormula.ands (List.map aux l) in let rec print_constraints cs = let rec aux ?(in_and=false) cs = let group_if ?(cond=false) f = if cond || OpamFormatConfig.(!r.all_parens) then Group (pos_null, [f]) else f in match cs with | Empty -> assert false | Atom (r, v) -> group_if (Prefix_relop (pos_null, r, print version v)) | And (x, y) -> group_if (Logop (pos_null, `And, aux ~in_and:true x, aux ~in_and:true y)) | Or (x, y) -> group_if ~cond:in_and (Logop (pos_null, `Or, aux x, aux y)) | Block g -> Group (pos_null, print_constraints g) in match cs with | Empty -> [] | cs -> [aux cs] in pp ~name:(version.ppname ^ "-constraints") parse_constraints print_constraints let filtered_constraints version = let rec parse_cs ~pos:_ items = let rec aux_parse = function | Prefix_relop (pos, op, v) -> Atom (Constraint (op, parse version ~pos v)) | Logop (_, `And, a, b) -> OpamFormula.ands [aux_parse a; aux_parse b] | Logop (_, `Or, a, b) -> OpamFormula.ors [aux_parse a; aux_parse b] | Group (pos, g) -> OpamFormula.Block (parse_cs ~pos g) | Pfxop (pos, `Not, v) -> parse_cs ~pos [v] |> OpamFormula.neg (function | Constraint (op, v) -> Constraint (OpamFormula.neg_relop op, v) | Filter f -> Filter (FNot f)) | filt -> let f = filter.parse ~pos:(value_pos filt) [filt] in Atom (Filter f) in OpamFormula.ands (List.map aux_parse items) in let rec print_cs cs = let rec aux ?(in_and=false) cs = let group_if ?(cond=false) f = if cond || OpamFormatConfig.(!r.all_parens) then Group (pos_null, [f]) else f in match cs with | Empty -> assert false | And (x, y) -> group_if (Logop (pos_null, `And, aux ~in_and:true x, aux ~in_and:true y)) | Or (x, y) -> group_if ~cond:in_and (Logop (pos_null, `Or, aux x, aux y)) | Block g -> Group (pos_null, print_cs g) | Atom (Constraint (op,v)) -> group_if (Prefix_relop (pos_null, op, print version v)) | Atom (Filter flt) -> (match filter.print flt with | f1::fr -> group_if (List.fold_left (fun a b -> Logop (pos_null, `And, a, b)) f1 fr) | [] -> Group (pos_null, [])) in match cs with | Empty -> [] | cs -> [aux cs] in pp ~name:"filtered-constraints" parse_cs print_cs let version = string -| of_module "version" (module OpamPackage.Version) let ext_version = pp ~name:"version-expr" (fun ~pos:_ -> function | String (pos,s) -> let _ = try OpamPackage.Version.of_string (OpamFilter.expand_string (fun _ -> Some (S "-")) s) with Failure msg -> bad_format ~pos "Invalid version string %S: %s" s msg in FString s | Ident (_,s) -> FIdent (filter_ident_of_string s) | _ -> unexpected ()) (function | FString s -> String (pos_null, s) | FIdent id -> Ident (pos_null, string_of_filter_ident id) | _ -> assert false) let pkgname = string -| of_module "pkg-name" (module OpamPackage.Name) let package_atom constraints = map_option pkgname constraints (* These two functions are duplicated from [OpamFormula] but we need to have a it here because of a change on [Block] handling: to have a coherent printing, we must not always discard them *) let rec ands_to_list = function | Empty -> [] | And (e,f) -> List.rev_append (rev_ands_to_list e) (ands_to_list f) | x -> [x] and rev_ands_to_list = function | Empty -> [] | And (e,f) -> List.rev_append (ands_to_list f) (rev_ands_to_list e) | x -> [x] let rec ors_to_list = function | Empty -> [] | Or (e,f) | Block (Or (e,f)) -> List.rev_append (rev_ors_to_list e) (ors_to_list f) | x -> [x] and rev_ors_to_list = function | Empty -> [] | Or (e,f) | Block (Or (e,f)) -> List.rev_append (ors_to_list f) (rev_ors_to_list e) | x -> [x] let package_formula_items kind constraints = let split, join = match kind with | `Conj -> ands_to_list, OpamFormula.ands | `Disj -> ors_to_list, OpamFormula.ors in let rec parse_formula ~pos:_ l = let rec aux = function | String (pos,_) | Option (pos,_,_) as at -> Atom (parse (package_atom constraints) ~pos at) | Group (pos,g) -> Block (parse_formula ~pos g) | Logop (_, `Or, e1, e2) -> let left = aux e1 in Or (left, aux e2) | Logop (_, `And, e1, e2) -> let left = aux e1 in And (left, aux e2) | v -> unexpected ~pos:(value_pos v) () in join (List.map aux l) in let rec print_formula ?(inner=false) f = let rec aux ?(in_and=false) f = let group_if ?(cond=false) f = if cond || OpamFormatConfig.(!r.all_parens) then Group (pos_null, [f]) else f in match f with | Empty -> assert false | Block f -> Group (pos_null, print_formula ~inner:true f) | And (e,f) -> group_if (Logop (pos_null, `And, aux ~in_and:true e, aux ~in_and:true f)) | Or (e,f) -> group_if ~cond:in_and (Logop (pos_null, `Or, aux e, aux f)) | Atom at -> group_if (print (package_atom constraints) at) in let fl = if inner then [f] else split f in List.map (aux ~in_and:false) fl in pp ~name:"pkg-formula" parse_formula print_formula let package_formula kind constraints = list -| package_formula_items kind constraints let env_binding = let parse ~pos:_ = function | Relop (_, `Eq, Ident (_,i), String (_,s)) -> i, Eq, s, None | Env_binding (_, Ident (_,i), op, String (_,s)) -> i, op, s, None | _ -> unexpected () in let print (id, op, str, _) = Env_binding (pos_null, print ident id, op, print string str) in list -| singleton -| pp ~name:"env-binding" parse print (* Only used by the deprecated "os" field *) let os_constraint = let rec parse_osc ~pos:_ l = let rec aux = function | Group (pos,g) -> Block (parse_osc ~pos g) | String (_,os) -> Atom (true, os) | Logop (_,`And,l,r) -> And (aux l, aux r) | Logop (_,`Or,l,r) -> Or (aux l, aux r) | Pfxop (_,`Not,v) -> OpamFormula.neg (fun (b, s) -> (not b, s)) (aux v) | v -> unexpected ~pos:(value_pos v) () in OpamFormula.ors (List.map aux l) in let print_osc f = let rec aux = function | Empty -> assert false | Atom (true , os) -> print string os | Atom (false, os) -> Pfxop (pos_null, `Not, print string os) | Block g -> Group (pos_null, [aux g]) | And(e,f) -> Logop (pos_null, `And, aux e, aux f) | Or(e,f) -> Logop (pos_null, `Or, aux e, aux f) in match f with | Empty -> [] | f -> [aux f] in list -| pp ~name:"os-constraint" parse_osc print_osc end (** Parsers for item lists (standard opam file contents: list of field bindings). *) module I = struct let file = pp ~name:"opam-file" (fun ~pos:_ file -> OpamFilename.of_string file.file_name, file.file_contents) (fun (file_name, file_contents) -> { file_name = OpamFilename.to_string file_name; file_contents }) let map_file pp1 = file -| map_snd pp1 let item = pp ~name:"field-binding" (fun ~pos:_ -> function | Section (pos,sec) -> bad_format ~pos "Unexpected section %s" sec.section_kind | Variable (_,k,v) -> k,v) (fun (k,v) -> Variable (pos_null, k, v)) let items = map_list ~posf:item_pos item let anonymous_section pp1 = pp ~name:pp1.ppname (fun ~pos -> function | [None, contents] -> pp1.parse ~pos contents | [Some _, _] -> bad_format ~pos "Unexpected section title" | [] -> bad_format ~pos "Missing section" | _::_::_ -> bad_format ~pos "Duplicate section") (fun l -> [None, pp1.print l]) let section kind = pp ~name:"file-section" (fun ~pos:_ -> function | Section (_, ({section_kind; _} as s)) when section_kind = kind -> s.section_name, s.section_items | Section (pos,sec) -> bad_format ~pos "Unexpected section %s" sec.section_kind | Variable (pos,k,_) -> bad_format ~pos "Unexpected field %s" k) (fun (section_name, section_items) -> Section (pos_null, { section_kind=kind; section_name; section_items })) type ('a, 'value) fields_def = (string * ('a, 'value) field_parser) list let fields ?name ~empty ?(sections=[]) ?(mandatory_fields=[]) ppas = let parse ~pos items = (* For consistency, always read fields in ppa order, ignoring file order. Some parsers may depend on it. *) let module SEM = OpamStd.Map.Make(struct type t = string * string option let compare = compare let to_string (s,o) = s ^ OpamStd.Option.to_string ((^) "^") o let to_json (s,o) = `O (("kind", `String s) :: match o with None -> [] | Some s -> ["name", `String s]) end) in let errs, section_map, field_map = List.fold_left (fun (errs, section_map, field_map) -> function | Section (pos, {section_kind=k; section_name=n; section_items=v}) -> if List.mem_assoc k sections then try errs, SEM.safe_add (k,n) (pos,v) section_map, field_map with Failure _ -> (k,(Some pos,"Duplicate section "^k)) :: errs, section_map, field_map else (k,(Some pos,"Invalid section "^k)) :: errs, section_map, field_map | Variable (pos, k, v) -> if List.mem_assoc k ppas then try errs, section_map, OpamStd.String.Map.safe_add k (pos,v) field_map with Failure _ -> (k,(Some pos,"Duplicate field "^k)) :: errs, section_map, field_map else (k,(Some pos,"Invalid field "^k))::errs, section_map, field_map) ([], SEM.empty, OpamStd.String.Map.empty) items in let errs, r = List.fold_left (fun (errs,acc) (field,ppa) -> try let pos, v = OpamStd.String.Map.find field field_map in try errs, parse ppa ~pos (acc, Some v) with | Bad_format (pos, msg) -> (field, (pos, msg)) :: errs, acc with Not_found -> (if List.mem field mandatory_fields then (field, (Some pos, "Missing field "^field)) :: errs else errs), acc) (errs, empty) ppas in let errs, r = List.fold_left (fun (errs,acc) (section_kind, ppa) -> let secs = SEM.fold (fun (kind, name) (_, items) acc -> if kind = section_kind then (name, items) :: acc else acc) section_map [] |> List.rev in if secs = [] then errs, acc else try errs, parse ppa ~pos (acc, Some secs) with | Bad_format (pos, msg) -> (section_kind,(pos, msg)) :: errs, acc) (errs, r) sections in r, errs in let print (acc, _) = OpamStd.List.filter_map (fun (field,ppa) -> match snd (ppa.print acc) with | None | Some (List (_,[]) | Group (_,[])) -> None | Some value -> Some (Variable (pos_null, field, value))) ppas @ (List.flatten @@ List.map (fun (section_kind, ppa) -> OpamStd.Option.default [] (snd (ppa.print acc)) |> List.map (fun (section_name, section_items) -> Section (pos_null, { section_kind; section_name; section_items }))) sections) in pp ?name parse print let show_errors ?name ?(strict=OpamFormatConfig.(!r.strict)) ?(condition=fun _ -> true) () = let parse ~pos:(file,_,_) (t, errs) = if errs = [] then t else if strict then raise (Bad_format_list (List.rev_map snd errs)) else (if condition t then OpamConsole.warning "Errors in %s, some fields have been ignored:\n%s" file (OpamStd.Format.itemize (fun e -> OpamPp.string_of_bad_format (Bad_format e)) (List.rev_map snd errs)) else OpamConsole.log "FORMAT" "File errors in %s, ignored fields: %s" file (OpamStd.List.concat_map "; " (fun e -> OpamPp.string_of_bad_format (Bad_format e)) (List.rev_map snd errs)); t) in let print t = t, [] in pp ?name parse print let on_errors ?name f = let parse ~pos:_ (t, errs) = List.fold_left f t errs in let print t = (t, []) in pp ?name parse print let partition filter = pp (fun ~pos:_ -> List.partition filter) (fun (a,b) -> a @ b) let partition_fields filter = partition @@ function | Variable (_,k,_) -> filter k | _ -> false let field name parse = pp (fun ~pos items -> match OpamStd.List.filter_map (function | Variable (_,k,v) when k = name -> Some v | _ -> None) items with | [] -> None, items | _::_::_ -> bad_format ~pos "Duplicate '%s:' field" name | [v] -> Some (parse ~pos v), items) (fun (_,x) -> x) let extract_field name = partition_fields ((=) name) -| (map_fst @@ opt @@ singleton -| item -| pp ~name:(Printf.sprintf "'%s:' field" name) (fun ~pos:_ (_,v) -> v) (fun v -> name,v)) let check_opam_version ?(optional=false) ?(f=fun v -> OpamVersion.(compare current_nopatch (nopatch v) >= 0)) () = let name = "opam-version" in let opam_v = V.string -| of_module "opam-version" (module OpamVersion) in let f v = OpamFormatConfig.(!r.skip_version_checks) || match v with | Some v -> f v | None -> optional in field name (parse opam_v) -| map_fst (check ~name ~errmsg:"unsupported or missing file format version" f) -| pp (fun ~pos:_ (_,x) -> x) (fun x -> (* re-extract the field using parse when printing, to check *) parse ~pos:pos_null (field name (parse opam_v)) x) type signature = string * string * string let signature = V.list -| (V.string ^+ V.string ^+ last -| V.string) -| pp (fun ~pos:_ (a,(b,c)) -> a,b,c) (fun (a,b,c) -> a,(b,c)) exception Invalid_signature of pos * (string*string*string) list option let signed ~check = let pp_sig = V.map_list ~depth:2 signature in extract_field "signature" -| pp ~name:"signed-file" (fun ~pos -> function | Some sgs, items -> let sgs = parse ~pos pp_sig sgs in let str = OpamPrinter.Normalise.items items in if not (check sgs str) then raise (Invalid_signature (pos, Some sgs)) else (sgs, items) | None, _ -> raise (Invalid_signature (pos, None))) (fun (sgs, items) -> assert (check sgs (OpamPrinter.Normalise.items items)); Some (print pp_sig sgs), items) end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>