new release 1.1.4
[psensor-pkg-ubuntu.git] / src / notify_cmd.c
1 /*
2  * Copyright (C) 2010-2014 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19
20 #include <stdlib.h>
21 #include <string.h>
22
23 #include <notify_cmd.h>
24 #include <cfg.h>
25
26 void notify_cmd(struct psensor *s)
27 {
28         char *script, *v, *cmd;
29         int ret;
30
31         script = config_get_notif_script();
32
33         if (script) {
34                 v = psensor_current_value_to_str(s, 1);
35
36                 cmd = malloc(strlen(script)
37                              + 1
38                              + 1
39                              + strlen(s->id)
40                              + 1
41                              + 1
42                              + strlen(v)
43                              + 1);
44
45                 sprintf(cmd, "%s \"%s\" %s", script, s->id, v);
46
47                 log_fct("execute cmd: %s", cmd);
48
49                 ret = system(cmd);
50
51                 log_fct("cmd returns: %d", ret);
52
53                 free(cmd);
54                 free(v);
55                 free(script);
56         }
57 }
58