979124f7aa243efd085f96878e3503788c2cee14
[whenjobs.git] / lib / whentools.ml
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 open Big_int
20 open Whenexpr
21
22 let set_variable name value =
23   check_valid_variable_name name;
24   Whenfile.set_variable name (T_string value)
25
26 let set_variable_bool name value =
27   check_valid_variable_name name;
28   Whenfile.set_variable name (T_bool value)
29
30 let set_variable_int name value =
31   check_valid_variable_name name;
32   Whenfile.set_variable name (T_int (big_int_of_int value))
33
34 let set_variable_string = set_variable
35
36 let set_variable_float name value =
37   check_valid_variable_name name;
38   Whenfile.set_variable name (T_float value)