import v0.1
[project/mountd.git] / led.c
1 /*
2  *   This program is free software; you can redistribute it and/or modify
3  *   it under the terms of the GNU General Public License as published by
4  *   the Free Software Foundation; either version 2 of the License, or
5  *   (at your option) any later version.
6  *
7  *   This program is distributed in the hope that it will be useful,
8  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *   GNU General Public License for more details.
11  *
12  *   You should have received a copy of the GNU General Public License
13  *   along with this program; if not, write to the Free Software
14  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
15  *
16  *   Provided by fon.com
17  *   Copyright (C) 2009 John Crispin <blogic@openwrt.org> 
18  */
19
20
21 #include <stdio.h>
22 #include <string.h>
23 #include <syslog.h>
24 #include <unistd.h>
25 #include "include/ucix.h"
26 #include "include/log.h"
27 #include "include/timer.h"
28
29 char usbled[16];
30
31 void led_ping(void)
32 {
33         FILE *fp;
34         static int last = 0;
35         static struct uci_context *ctx;
36         int mounted, count;
37         int led = 1;
38         char path[256];
39         ctx = ucix_init("mountd");
40         mounted = ucix_get_option_int(ctx, "mountd", "mountd", "mounted", 0);
41         count = ucix_get_option_int(ctx, "mountd", "mountd", "count", 0);
42         ucix_cleanup(ctx);
43         if(!count)
44                 led = 0;
45         if(count && !mounted)
46                 led = 1;
47         if(count && mounted)
48                 last = led = (last + 1) % 2;
49         snprintf(path, 256, "/sys/class/leds/%s/brightness", usbled);
50         fp = fopen(path, "w");
51         if(fp)
52         {
53                 fprintf(fp, "%d", led);
54                 fclose(fp);
55         }
56 }
57
58 void led_init(char *led)
59 {
60         if(led)
61         {
62                 strncpy(usbled, led, 16);
63                 timer_add(led_ping, 1);
64         }
65 }