Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
type_core.ml1 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(* * Copyright (c) 2016-2017 Thomas Gazagnaire <thomas@gazagnaire.org> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. *) include Type_core_intf include Type_core_intf.Types open Staging module Json = struct type decoder = json_decoder let decoder ?encoding src = { lexemes = []; d = Jsonm.decoder ?encoding src } let decoder_of_lexemes lexemes = { lexemes; d = Jsonm.decoder (`String "") } let rewind e l = e.lexemes <- l :: e.lexemes let decode e = match e.lexemes with | h :: t -> e.lexemes <- t; `Lexeme h | [] -> Jsonm.decode e.d let decoder_and_lexemes t = (t.d, t.lexemes) end module Encode_json = Attribute.Make1 (struct type 'a t = Jsonm.encoder -> 'a -> unit let name = "encode_json" end) module Decode_json = Attribute.Make1 (struct type 'a t = json_decoder -> ('a, [ `Msg of string ]) result let name = "decode_json" end) let annotate t ~add ~data = match t with | Attributes t -> Attributes { t with attrs = add data t.attrs } | t -> Attributes { attrs = add data Attribute.Map.empty; attr_type = t } let unimplemented_size_of = let f _ = failwith "`size_of` not implemented" in Size.Sizer.{ of_value = Dynamic f; of_encoding = Dynamic f } let partial ?(pp = fun _ -> failwith "`pp` not implemented") ?(of_string = fun _ -> failwith "`of_string` not implemented") ?(encode_json = fun _ -> failwith "`encode_json` not implemented") ?(decode_json = fun _ -> failwith "`decode_json` not implemented") ?(short_hash = fun ?seed:_ _ -> failwith "`short_hash` not implemented") ?(pre_hash = fun _ -> failwith "`pre_hash` not implemented") ?(compare = fun _ -> failwith "`compare` not implemented") ?(equal = fun _ -> failwith "`equal` not implemented") ?(encode_bin = fun _ -> failwith "`encode_bin` not implemented") ?(decode_bin = fun _ -> failwith "`decode_bin` not implemented") ?(size_of = unimplemented_size_of) ?(unboxed_encode_bin = fun _ -> failwith "`unboxed_encode_bin` not implemented") ?(unboxed_decode_bin = fun _ -> failwith "`unboxed_decode_bin` not implemented") ?(unboxed_size_of = unimplemented_size_of) () = Custom { cwit = `Witness (Witness.make ()); pp; of_string; short_hash; pre_hash; compare; equal; encode_bin; decode_bin; size_of; unboxed_encode_bin; unboxed_decode_bin; unboxed_size_of; } |> annotate ~add:Encode_json.add ~data:encode_json |> annotate ~add:Decode_json.add ~data:decode_json let rec fields_aux : type a b. (a, b) fields -> a a_field list = function | F0 -> [] | F1 (h, t) -> Field h :: fields_aux t let fields r = match r.rfields with Fields (f, _) -> fields_aux f module Dispatch = struct type 'a t = | Base : 'a staged -> 'a t | Arrow : { arg_wit : 'b Witness.t; f : ('b -> 'a) staged } -> 'a t end module Fields_folder (Acc : sig type ('a, 'b) t end) = struct type 'a t = { nil : ('a, 'a) Acc.t; cons : 'b 'c. ('a, 'b) field -> ('a, 'c) Acc.t -> ('a, 'b -> 'c) Acc.t; } let rec fold : type a c. a t -> (a, c) fields -> (a, c) Acc.t = fun folder -> function | F0 -> folder.nil | F1 (f, fs) -> folder.cons f (fold folder fs) end let fold_variant : type a f. (a, f) Case_folder.t -> a variant -> (a -> f) staged = fun folder v_typ -> let cases = Array.map (function | C0 c0 -> Dispatch.Base (folder.c0 c0) | C1 c1 -> Dispatch.Arrow { arg_wit = c1.cwit1; f = folder.c1 c1 }) v_typ.vcases in stage (fun v -> match v_typ.vget v with | CV0 { ctag0; _ } -> ( match cases.(ctag0) with | Dispatch.Base x -> unstage x | _ -> assert false) | CV1 ({ ctag1; cwit1; _ }, v) -> ( match cases.(ctag1) with | Dispatch.Arrow { f; arg_wit } -> let v = Witness.cast_exn cwit1 arg_wit v in unstage f v | _ -> assert false))