mte/unikernel/duniverse/mimic/lib/hmap.ml

212 lines
6.4 KiB
OCaml
Raw Normal View History

2025-11-11 02:07:51 +01:00
(*---------------------------------------------------------------------------
Copyright (c) 2016 Daniel C. Bünzli. All rights reserved.
Distributed under the ISC license, see terms at the end of the file.
mimic 0.0.9
---------------------------------------------------------------------------*)
(* Type identifiers.
See http://alan.petitepomme.net/cwn/2015.03.24.html#1 *)
module Tid = struct type _ t = .. end
module type Tid = sig
type t type _ Tid.t += Tid : t Tid.t
end
type 'a tid = (module Tid with type t = 'a)
let tid () (type s) =
let module M = struct type t = s type _ Tid.t += Tid : t Tid.t end in
(module M : Tid with type t = s)
type ('a, 'b) teq = Teq : ('a, 'a) teq
let eq : type r s. r tid -> s tid -> (r, s) teq option =
fun r s ->
let module R = (val r : Tid with type t = r) in
let module S = (val s : Tid with type t = s) in
match R.Tid with S.Tid -> Some Teq | _ -> None
(* Heterogeneous maps *)
module type KEY_INFO = sig
type 'a t
end
module type VALUE_INFO = sig
type 'a t
end
module type S = sig
type 'a key
module Key : sig
type 'a info
val create : 'a info -> 'a key
val info : 'a key -> 'a info
type t
val hide_type : 'a key -> t
val equal : t -> t -> bool
val compare : t -> t -> int
val proof : 'a key -> 'b key -> ('a, 'b) teq option
end
module Make (Value_info : VALUE_INFO) : sig
type 'a value = 'a Value_info.t
type t
val empty : t
val is_empty : t -> bool
val mem : 'a key -> t -> bool
val add : 'a key -> 'a value -> t -> t
val singleton : 'a key -> 'a value -> t
val rem : 'a key -> t -> t
val find : 'a key -> t -> 'a value option
val get : 'a key -> t -> 'a value
type binding = B : 'a key * 'a value -> binding
val iter : (binding -> unit) -> t -> unit
val fold : (binding -> 'a -> 'a) -> t -> 'a -> 'a
val for_all : (binding -> bool) -> t -> bool
val exists : (binding -> bool) -> t -> bool
val filter : (binding -> bool) -> t -> t
val cardinal : t -> int
val any_binding : t -> binding option
val get_any_binding : t -> binding
val bindings : t -> binding list
type merge = {
f : 'a. 'a key -> 'a value option -> 'a value option -> 'a value option;
}
val merge : merge -> t -> t -> t
end
end
module Make (Key_info : KEY_INFO) : S with type 'a Key.info = 'a Key_info.t =
struct
(* Keys *)
module Key = struct
type 'a info = 'a Key_info.t
type 'a key = { uid : int; tid : 'a tid; info : 'a Key_info.t }
let uid =
let id = ref (-1) in
fun () ->
incr id;
!id
let create info =
let uid = uid () in
let tid = tid () in
{ uid; tid; info }
let info k = k.info
type t = V : 'a key -> t
let hide_type k = V k
let equal (V k0) (V k1) = (compare : int -> int -> int) k0.uid k1.uid = 0
let compare (V k0) (V k1) = (compare : int -> int -> int) k0.uid k1.uid
let proof k0 k1 = eq k0.tid k1.tid
end
type 'a key = 'a Key.key
module Make (Value_info : VALUE_INFO) = struct
type 'a value = 'a Value_info.t
(* Maps *)
module M = Map.Make (Key)
type binding = B : 'a key * 'a value -> binding
type t = binding M.t
let empty = M.empty
let is_empty = M.is_empty
let mem k m = M.mem (Key.V k) m
let add k v m = M.add (Key.V k) (B (k, v)) m
let singleton k v = M.singleton (Key.V k) (B (k, v))
let rem k m = M.remove (Key.V k) m
let find : type a. a key -> t -> a value option =
fun k s ->
try
match M.find (Key.V k) s with
| B (k', v) -> (
match eq k.Key.tid k'.Key.tid with
| None -> None
| Some Teq -> Some v)
with Not_found -> None
let get k s =
match find k s with
| None -> invalid_arg "key not found in map"
| Some v -> v
let iter f m = M.iter (fun _ b -> f b) m
let fold f m acc = M.fold (fun _ b acc -> f b acc) m acc
let for_all p m = M.for_all (fun _ b -> p b) m
let exists p m = M.exists (fun _ b -> p b) m
let filter p m = M.filter (fun _ b -> p b) m
let cardinal m = M.cardinal m
let any_binding m = try Some (snd (M.choose m)) with Not_found -> None
type merge = {
f : 'a. 'a key -> 'a value option -> 'a value option -> 'a value option;
}
let merge : merge -> t -> t -> t =
fun { f } t0 t1 ->
let f (Key.V k) a b =
match a, b with
| Some (B (k0, v)), None -> (
match Key.proof k k0 with
| Some Teq -> Option.map (fun v -> B (k, v)) (f k (Some v) None)
| None -> Option.map (fun v -> B (k, v)) (f k None None))
| None, Some (B (k0, v)) -> (
match Key.proof k k0 with
| Some Teq -> Option.map (fun v -> B (k, v)) (f k None (Some v))
| None -> Option.map (fun v -> B (k, v)) (f k None None))
| Some (B (k0, v0)), Some (B (k1, v1)) -> (
match Key.proof k k0, Key.proof k k1 with
| Some Teq, Some Teq ->
Option.map (fun v -> B (k, v)) (f k (Some v0) (Some v1))
| Some Teq, None ->
Option.map (fun v -> B (k, v)) (f k (Some v0) None)
| None, Some Teq ->
Option.map (fun v -> B (k, v)) (f k None (Some v1))
| None, None -> Option.map (fun v -> B (k, v)) (f k None None))
| None, None -> Option.map (fun v -> B (k, v)) (f k None None)
in
M.merge f t0 t1
let get_any_binding m =
try snd (M.choose m) with Not_found -> invalid_arg "empty map"
let bindings m = List.map snd (M.bindings m)
end
end
(*---------------------------------------------------------------------------
Copyright (c) 2016 Daniel C. Bünzli
Permission to use, copy, modify, and/or 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.
---------------------------------------------------------------------------*)