1 (* Augeas OCaml bindings
2 * Copyright (C) 2008 Red Hat Inc., Richard W.M. Jones
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 * $Id: augeas.ml,v 1.2 2008/05/06 10:48:20 rjones Exp $
33 | AugTraceModuleLoading
49 | AugErrUnknown of int
55 exception Error of error_code * string * string * string * string
61 external create : string -> string option -> flag list -> t
62 = "ocaml_augeas_create"
63 external close : t -> unit
64 = "ocaml_augeas_close"
65 external defnode : t -> string -> string -> string option -> int * bool
66 = "ocaml_augeas_defnode"
67 external defvar : t -> string -> string option -> int option
68 = "ocaml_augeas_defvar"
69 external get : t -> path -> value option
71 external exists : t -> path -> bool
72 = "ocaml_augeas_exists"
73 external insert : t -> ?before:bool -> path -> string -> unit
74 = "ocaml_augeas_insert"
75 external label : t -> path -> string option
76 = "ocaml_augeas_label"
77 external rm : t -> path -> int
79 external matches : t -> path -> path list
80 = "ocaml_augeas_match"
81 external count_matches : t -> path -> int
82 = "ocaml_augeas_count_matches"
83 external save : t -> unit
85 external load : t -> unit
87 external mv : t -> path -> path -> unit
89 external set : t -> path -> value option -> unit
91 external setm : t -> path -> string option -> value option -> int
93 external transform : t -> string -> string -> transform_mode -> unit
94 = "ocaml_augeas_transform"
95 external source : t -> path -> path option
96 = "ocaml_augeas_source"
99 Callback.register_exception "Augeas.Error" (Error (AugErrInternal, "", "", "", ""))