aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ocaml/xenstored/trie.mli
blob: 25db9d05f35d2d6ff351d015772ed67005543a28 (plain)
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
(*
 * Copyright (C) 2008-2009 Citrix Ltd.
 * Author Thomas Gazagnaire <thomas.gazagnaire@eu.citrix.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation; version 2.1 only. with the special
 * exception on linking described in file LICENSE.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *)

(** Basic Implementation of polymorphic tries (ie. prefix trees) *)

type ('a, 'b) t
(** The type of tries. ['a list] is the type of keys, ['b] the type of values.
	Internally, a trie is represented as a labeled tree, where node contains values
	of type ['a * 'b option]. *)

val create : unit -> ('a,'b) t
(** Creates an empty trie. *)

val mem : ('a,'b) t -> 'a list -> bool
(** [mem t k] returns true if a value is associated with the key [k] in the trie [t]. 
	Otherwise, it returns false. *)

val find : ('a, 'b) t -> 'a list -> 'b
(** [find t k] returns the value associated with the key [k] in the trie [t].
	Returns [Not_found] if no values are associated with [k] in [t]. *)

val set : ('a, 'b) t -> 'a list -> 'b -> ('a, 'b) t
(** [set t k v] associates the value [v] with the key [k] in the trie [t]. *)

val unset : ('a, 'b) t -> 'a list -> ('a, 'b) t
(** [unset k v] removes the association of value [v] with the key [k] in the trie [t]. 
	Moreover, it automatically clean the trie, ie. it removes recursively 
	every nodes of [t] containing no values and having no chil. *)

val iter : ('a -> 'b option -> unit) -> ('a, 'b) t -> unit
(** [iter f t] applies the function [f] to every node of the trie [t]. 
	As nodes of the trie [t] do not necessary contains a value, the second argument of
	[f] is an option type. *)

val iter_path : ('a -> 'b option -> unit) -> ('a, 'b) t -> 'a list -> unit
(** [iter_path f t p] iterates [f] over nodes associated with the path [p] in the trie [t]. 
	If [p] is not a valid path of [t], it iterates on the longest valid prefix of [p]. *)

val fold : ('a -> 'b option -> 'c -> 'c) -> ('a, 'b) t -> 'c -> 'c 
(** [fold f t x] fold [f] over every nodes of [t], with [x] as initial value. *)

val map : ('b -> 'c option) -> ('a,'b) t -> ('a,'c) t
(** [map f t] maps [f] over every values stored in [t]. The return value of [f] is of type 'c option
	as one may wants to remove value associated to a key. This function is not tail-recursive. *)

val sub : ('a, 'b) t -> 'a list -> ('a,'b) t
(** [sub t p] returns the sub-trie associated with the path [p] in the trie [t].
	If [p] is not a valid path of [t], it returns an empty trie. *)