summaryrefslogtreecommitdiff
path: root/src/config_tree.mli
blob: 4da734eff8936ad1738a4a3c24351d02f633527e (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
type value_behaviour = AddValue | ReplaceValue

exception Duplicate_value
exception Node_has_no_value

type config_node_data = {
  values : string list;
  comment : string option;
  inactive : bool;
  ephemeral : bool;
} [@@deriving yojson]

type t = config_node_data Vytree.t [@@deriving yojson]

val default_data : config_node_data

val make : string -> t

val set : t -> string list -> string option -> value_behaviour -> t

val delete : t -> string list -> string option -> t

val get_values : t -> string list -> string list

val get_value : t -> string list -> string

val set_comment : t -> string list -> string option -> t

val get_comment : t -> string list -> string option

val set_inactive : t -> string list -> bool -> t

val is_inactive : t -> string list -> bool

val set_ephemeral : t -> string list -> bool -> t

val is_ephemeral : t -> string list -> bool