84b12d501b87776afc14c9dd0c8d2eaee0d85bca
[psensor-pkg-debian.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;
29         char *v;
30         char *cmd;
31         int ret;
32
33         script = config_get_notif_script();
34
35         if (script) {
36                 v = psensor_current_value_to_str(s, 1);
37
38                 cmd = malloc(strlen(script)+1+1+strlen(s->id)+1+strlen(v)+1);
39                 sprintf(cmd, "%s \"%s\" %s", script, s->id, v);
40
41                 log_debug("execute cmd: %s", cmd);
42
43                 ret = system(cmd);
44
45                 log_debug("cmd returns: %d", ret);
46
47                 free(cmd);
48                 free(v);
49                 free(script);
50         }
51 }
52