f0fb3067f06470ed02f4a82b052d96c6088661c8
[whenjobs.git] / lib / whenutils.mli
1 (* whenjobs
2  * Copyright (C) 2012 Red Hat Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program 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
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  *)
18
19 (** Types and utility functions. *)
20
21 module StringMap : sig
22   type key = String.t
23   type 'a t
24   val empty : 'a t
25   val is_empty : 'a t -> bool
26   val mem : key -> 'a t -> bool
27   val add : key -> 'a -> 'a t -> 'a t
28   (*val singleton : key -> 'a -> 'a t*)
29   val remove : key -> 'a t -> 'a t
30   (*val merge :
31     (key -> 'a option -> 'b option -> 'c option) -> 'a t -> 'b t -> 'c t*)
32   val compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int
33   val equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool
34   val iter : (key -> 'a -> unit) -> 'a t -> unit
35   val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
36   (*val for_all : (key -> 'a -> bool) -> 'a t -> bool
37   val exists : (key -> 'a -> bool) -> 'a t -> bool
38   val filter : (key -> 'a -> bool) -> 'a t -> 'a t
39   val partition : (key -> 'a -> bool) -> 'a t -> 'a t * 'a t
40   val cardinal : 'a t -> int
41   val bindings : 'a t -> (key * 'a) list
42   val min_binding : 'a t -> key * 'a
43   val max_binding : 'a t -> key * 'a
44   val choose : 'a t -> key * 'a
45   val split : key -> 'a t -> 'a t * 'a option * 'a t*)
46   val find : key -> 'a t -> 'a
47   val map : ('a -> 'b) -> 'a t -> 'b t
48   val mapi : (key -> 'a -> 'b) -> 'a t -> 'b t
49   val keys : 'a t -> key list
50   val values : 'a t -> 'a list
51 end
52 (** A map from string to any type. *)
53
54 module IntMap : sig
55   type key = int
56   type 'a t
57   val empty : 'a t
58   val is_empty : 'a t -> bool
59   val mem : key -> 'a t -> bool
60   val add : key -> 'a -> 'a t -> 'a t
61   (*val singleton : key -> 'a -> 'a t*)
62   val remove : key -> 'a t -> 'a t
63   (*val merge :
64     (key -> 'a option -> 'b option -> 'c option) -> 'a t -> 'b t -> 'c t*)
65   val compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int
66   val equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool
67   val iter : (key -> 'a -> unit) -> 'a t -> unit
68   val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
69   (*val for_all : (key -> 'a -> bool) -> 'a t -> bool
70   val exists : (key -> 'a -> bool) -> 'a t -> bool
71   val filter : (key -> 'a -> bool) -> 'a t -> 'a t
72   val partition : (key -> 'a -> bool) -> 'a t -> 'a t * 'a t
73   val cardinal : 'a t -> int
74   val bindings : 'a t -> (key * 'a) list
75   val min_binding : 'a t -> key * 'a
76   val max_binding : 'a t -> key * 'a
77   val choose : 'a t -> key * 'a
78   val split : key -> 'a t -> 'a t * 'a option * 'a t*)
79   val find : key -> 'a t -> 'a
80   val map : ('a -> 'b) -> 'a t -> 'b t
81   val mapi : (key -> 'a -> 'b) -> 'a t -> 'b t
82   val keys : 'a t -> key list
83   val values : 'a t -> 'a list
84 end
85 (** A map from int to any type. *)
86
87 module StringSet : sig
88   type elt = String.t
89   type t = Set.Make(String).t
90   val empty : t
91   val is_empty : t -> bool
92   val mem : elt -> t -> bool
93   val add : elt -> t -> t
94   val singleton : elt -> t
95   val remove : elt -> t -> t
96   val union : t -> t -> t
97   val inter : t -> t -> t
98   val diff : t -> t -> t
99   val compare : t -> t -> int
100   val equal : t -> t -> bool
101   val subset : t -> t -> bool
102   val iter : (elt -> unit) -> t -> unit
103   val fold : (elt -> 'a -> 'a) -> t -> 'a -> 'a
104   val for_all : (elt -> bool) -> t -> bool
105   val exists : (elt -> bool) -> t -> bool
106   val filter : (elt -> bool) -> t -> t
107   val partition : (elt -> bool) -> t -> t * t
108   val cardinal : t -> int
109   val elements : t -> elt list
110   val min_elt : t -> elt
111   val max_elt : t -> elt
112   val choose : t -> elt
113   val split : elt -> t -> t * bool * t
114 end
115 (** A set of strings. *)
116
117 val (//) : string -> string -> string
118 (** [dir // file] concatenates directory and file. *)
119
120 val filter_map : ('a -> 'b option) -> 'a list -> 'b list
121 (** Filter + map. *)
122
123 type whenexpr =
124   | Expr_bool of bool                   (** A boolean constant. *)
125   | Expr_str of string                  (** A string constant. *)
126   | Expr_int of Big_int.big_int         (** An integer constant. *)
127   | Expr_float of float                 (** A float constant. *)
128   | Expr_var of string                  (** A variable name. *)
129   | Expr_and of whenexpr * whenexpr     (** && *)
130   | Expr_or of whenexpr * whenexpr      (** || *)
131   | Expr_lt of whenexpr * whenexpr      (** < *)
132   | Expr_le of whenexpr * whenexpr      (** <= *)
133   | Expr_eq of whenexpr * whenexpr      (** == *)
134   | Expr_ge of whenexpr * whenexpr      (** >= *)
135   | Expr_gt of whenexpr * whenexpr      (** > *)
136   | Expr_not of whenexpr                (** boolean not *)
137   | Expr_add of whenexpr * whenexpr     (** arithmetic addition or string cat *)
138   | Expr_sub of whenexpr * whenexpr     (** arithmetic subtraction *)
139   | Expr_mul of whenexpr * whenexpr     (** arithmetic multiplication *)
140   | Expr_div of whenexpr * whenexpr     (** arithmetic division *)
141   | Expr_mod of whenexpr * whenexpr     (** arithmetic modulo *)
142   | Expr_changes of string              (** changes var *)
143   | Expr_increases of string            (** increases var *)
144   | Expr_decreases of string            (** decreases var *)
145   | Expr_prev of string                 (** prev var *)
146 (** Internal type used to represent 'when' expressions. *)
147
148 type periodexpr =
149   | Every_seconds of int
150   | Every_days of int
151   | Every_months of int
152   | Every_years of int
153 (** Internal type used to represent 'every' expressions. *)
154
155 type shell_script = {
156   sh_loc : Camlp4.PreCast.Loc.t;
157   sh_script : string;
158 }
159 (** A shell script. *)
160
161 type variable =
162   | T_bool of bool
163   | T_string of string
164   | T_int of Big_int.big_int
165   | T_float of float
166 (** Typed variable (see also [whenproto.x]) *)
167
168 val string_of_variable : variable -> string
169
170 val variable_of_rpc : Whenproto_aux.variable -> variable
171 val rpc_of_variable : variable -> Whenproto_aux.variable
172
173 type variables = variable StringMap.t
174 (** A set of variables. *)
175
176 type job_private
177 (** Private state associated with a job, used for evaluation. *)
178
179 val no_job_private : job_private
180 (* XXX any use of no_job_private is wrong XXX *)
181
182 type job_cond =
183   | When_job of whenexpr                (** when ... : << >> *)
184   | Every_job of periodexpr             (** every ... : << >> *)
185
186 type job = {
187   job_loc : Camlp4.PreCast.Loc.t;
188   job_name : string;
189   job_cond : job_cond;
190   job_script : shell_script;
191   job_private : job_private;
192 }
193 (** A job. *)
194
195 val expr_of_ast : Camlp4.PreCast.Ast.Loc.t -> Camlp4.PreCast.Ast.expr -> whenexpr
196 (** Convert OCaml AST to an expression.  Since OCaml ASTs are much
197     more general than the expressions we can use, this can raise
198     [Invalid_argument] in many different situations. *)
199
200 val string_of_whenexpr : whenexpr -> string
201 (** Pretty-print an expression to a string. *)
202
203 val string_of_periodexpr : periodexpr -> string
204 (** Pretty-print a period expression to a string. *)
205
206 val dependencies_of_whenexpr : whenexpr -> string list
207 (** Return list of variables that an expression depends on.  This is
208     used to work out when an expression needs to be reevaluated. *)
209
210 val dependencies_of_job : job -> string list
211 (** Which variables does this job depend on? *)
212
213 val job_evaluate : job -> variables -> bool * job
214 (** Evaluate [job]'s condition in the context of the [variables], and
215     return [true] iff it should be run now.  Note that this returns a
216     possibly-updated [job] structure.
217
218     This is a no-op for 'every' jobs. *)
219
220 val next_periodexpr : float -> periodexpr -> float
221 (** [next_periodexpr t period] returns the earliest event of [period]
222     strictly after time [t].
223
224     Visualising periods as repeated events on a timeline, this
225     returns [t']:
226
227     {v
228     events:  ---+---------+---------+---------+---------+---------+-----
229     times:          t     t'
230     }
231
232     Note that [periodexpr] events are not necessarily regular.
233     eg. The start of a month is not a fixed number of seconds
234     after the start of the previous month.  'Epoch' refers
235     to the Unix Epoch (ie. 1970-01-01 00:00:00 UTC).
236
237     If [period = Every_seconds i] then events are when
238     [t' mod i == 0] when t' is the number of seconds since
239     the Epoch.  This returns the next t' > t.
240
241     If [period = Every_days i] then events happen at
242     midnight UTC every [i] days since the Epoch.
243     This returns the next midnight > t.
244
245     If [period = Every_months i] then events happen at
246     midnight UTC on the 1st day of the month every [i] months
247     since the Epoch.  This returns midnight on the
248     1st day of the next month > t.
249
250     If [period = Every_years i] then events happen at
251     midnight UTC on the 1st day of the year when
252     [(y - 1970) mod i == 0].  This returns midnight on the
253     1st day of the next year > t. *)