lib: Missing \ caused list of CMI files to be truncated.
[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 Whenexpr
20
21 open Big_int
22 open Printf
23
24 let set_variable name value =
25   check_valid_variable_name name;
26   Whenfile.set_variable name (T_string value)
27
28 let set_variable_bool name value =
29   check_valid_variable_name name;
30   Whenfile.set_variable name (T_bool value)
31
32 let set_variable_int name value =
33   check_valid_variable_name name;
34   Whenfile.set_variable name (T_int (big_int_of_int value))
35
36 let set_variable_string = set_variable
37
38 let set_variable_float name value =
39   check_valid_variable_name name;
40   Whenfile.set_variable name (T_float value)
41
42 type result = Whenexpr.result
43
44 let mailto ?(only_on_failure = false) ?from email result =
45   if result.res_code <> 0 || not only_on_failure then (
46     let subject =
47       sprintf "%s: %s (return code %d)"
48         result.res_job_name
49         (if result.res_code = 0 then "successful" else "FAILED")
50         result.res_code in
51
52     let cmd = sprintf "%s -s %s -a %s"
53       Config.mailx
54       (Filename.quote subject)
55       (Filename.quote result.res_output) in
56
57     let cmd =
58       match from with
59       | None -> cmd
60       | Some from -> sprintf "%s -r %s" cmd from in
61
62     let cmd =
63       sprintf "%s %s </dev/null" cmd (Filename.quote email) in
64
65     if Sys.command cmd <> 0 then
66       failwith "Whentools.mailto: mailx command failed";
67   )