Add Augeas.label
[ocaml-augeas.git] / augeas.mli
1 (** Augeas OCaml bindings *)
2 (* Copyright (C) 2008 Red Hat Inc., Richard W.M. Jones
3  *
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.
8  *
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.
13  *
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
17  *
18  * $Id: augeas.mli,v 1.2 2008/05/06 10:48:20 rjones Exp $
19  *)
20
21 type t
22   (** Augeas library handle. *)
23
24 type flag =
25   | AugSaveBackup                       (** Rename original with .augsave *)
26   | AugSaveNewFile                      (** Save changes to .augnew *)
27   | AugTypeCheck                        (** Type-check lenses *)
28   | AugNoStdinc
29   | AugSaveNoop
30   | AugNoLoad
31   | AugNoModlAutoload
32   | AugEnableSpan
33   | AugNoErrClose
34   | AugTraceModuleLoading
35   (** Flags passed to the {!create} function. *)
36
37 type error_code =
38   | AugErrInternal              (** Internal error (bug) *)
39   | AugErrPathX                 (** Invalid path expression *)
40   | AugErrNoMatch               (** No match for path expression *)
41   | AugErrMMatch                (** Too many matches for path expression *)
42   | AugErrSyntax                (** Syntax error in lens file *)
43   | AugErrNoLens                (** Lens lookup failed *)
44   | AugErrMXfm                  (** Multiple transforms *)
45   | AugErrNoSpan                (** No span for this node *)
46   | AugErrMvDesc                (** Cannot move node into its descendant *)
47   | AugErrCmdRun                (** Failed to execute command *)
48   | AugErrBadArg                (** Invalid argument in funcion call *)
49   | AugErrLabel                 (** Invalid label *)
50   | AugErrCpDesc                (** Cannot copy node into its descendant *)
51   | AugErrUnknown of int
52   (** Possible error codes. *)
53
54 type transform_mode =
55   | Include
56   | Exclude
57   (** The operation mode for the {!transform} function. *)
58
59 exception Error of error_code * string * string * string
60   (** This exception is thrown when the underlying Augeas library
61       returns an error.  The tuple represents:
62       - the Augeas error code
63       - the ocaml-augeas error string
64       - the human-readable explanation of the Augeas error, if available
65       - a string with details of the Augeas error
66    *)
67
68 type path = string
69   (** A path expression.
70
71       Note in future we may replace this with a type-safe path constructor. *)
72
73 type value = string
74   (** A value. *)
75
76 val create : string -> string option -> flag list -> t
77   (** [create root loadpath flags] creates an Augeas handle.
78
79       [root] is a file system path describing the location
80       of the configuration files.
81
82       [loadpath] is an optional colon-separated list of directories
83       which are searched for schema definitions.
84
85       [flags] is a list of flags. *)
86
87 val close : t -> unit
88   (** [close handle] closes the handle.
89
90       You don't need to close handles explicitly with this function:
91       they will be finalized eventually by the garbage collector.
92       However calling this function frees up any resources used by the
93       underlying Augeas library immediately.
94
95       Do not use the handle after closing it. *)
96
97 val defnode : t -> string -> string -> string option -> int * bool
98   (** [defnode t name expr value] defines [name] whose value is the
99       result of evaluating [expr], which is a nodeset. *)
100
101 val defvar : t -> string -> string option -> int option
102   (** [defvar t name expr] defines [name] whose value is the result
103       of evaluating [expr], replacing the old value if existing.
104       [None] as [expr] removes the variable [name]. *)
105
106 val get : t -> path -> value option
107   (** [get t path] returns the value at [path], or [None] if there
108       is no value. *)
109
110 val exists : t -> path -> bool
111   (** [exists t path] returns true iff there is a value at [path]. *)
112
113 val insert : t -> ?before:bool -> path -> string -> unit
114   (** [insert t ?before path label] inserts [label] as a sibling
115       of [path].  By default it is inserted after [path], unless
116       [~before:true] is specified. *)
117
118 val label : t -> path -> string option
119   (** [label t path] gets the label of [path].
120
121       Returns [Some value] when [path] matches only one node, and
122       that has an associated label. *)
123
124 val rm : t -> path -> int
125   (** [rm t path] removes all nodes matching [path].
126
127       Returns the number of nodes removed (which may be 0). *)
128
129 val matches : t -> path -> path list
130   (** [matches t path] returns a list of path expressions
131       of all nodes matching [path]. *)
132
133 val mv : t -> path -> path -> unit
134   (** [mv t src dest] moves a node. *)
135
136 val count_matches : t -> path -> int
137   (** [count_matches t path] counts the number of nodes matching
138       [path] but does not return them (see {!matches}). *)
139
140 val save : t -> unit
141   (** [save t] saves all pending changes to disk. *)
142
143 val load : t -> unit
144   (** [load t] loads files into the tree. *)
145
146 val set : t -> path -> value option -> unit
147   (** [set t path] sets [value] as new value at [path]. *)
148
149 val setm : t -> path -> string option -> value option -> int
150   (** [setm t base sub value] sets [value] as new value for all the
151       nodes under [base] that match [sub] (or all, if [sub] is
152       [None]).
153
154       Returns the number of nodes modified. *)
155
156 val transform : t -> string -> string -> transform_mode -> unit
157   (** [transform t lens file mode] adds or removes (depending on
158       [mode]) the transformation of the specified [lens] for [file]. *)
159
160 val source : t -> path -> path option
161   (** [source t path] returns the path to the node representing the
162       file to which [path] belongs, or [None] if [path] does not
163       represent any file. *)