#include "config.h" #include #include #include #include #include #include #include #include #include /* local subsystem functions */ static int _bl_write_file(const char *file, int val) { char buf[256]; int fd = open(file, O_WRONLY); if (fd < 0) { perror("open"); return -1; } snprintf(buf, sizeof(buf), "%d", val); if (write(fd, buf, strlen(buf)) != (int)strlen(buf)) { perror("write"); close(fd); return -1; } close(fd); return 0; } /* externally accessible functions */ int main(int argc, char **argv) { int i, level, devok = 0; const char *f, *dev = NULL, *str; int maxlevel = 0, curlevel = -1; Eina_List *devs, *l; char buf[4096] = ""; for (i = 1; i < argc; i++) { if ((!strcmp(argv[i], "-h")) || (!strcmp(argv[i], "-help")) || (!strcmp(argv[i], "--help"))) { printf("This is an internal tool for Enlightenment.\n" "do not use it.\n"); exit(0); } } if (argc == 3) { level = atoi(argv[1]); dev = argv[2]; } else exit(1); if (!dev) return -1; if (setuid(0) != 0) { printf("ERROR: UNABLE TO ASSUME ROOT PRIVILEGES\n"); exit(5); } if (setgid(0) != 0) { printf("ERROR: UNABLE TO ASSUME ROOT GROUP PRIVILEGES\n"); exit(7); } eeze_init(); devs = eeze_udev_find_by_filter("backlight", NULL, NULL); if (!devs) { devs = eeze_udev_find_by_filter("leds", NULL, NULL); if (!devs) return -1; } if (devs) { EINA_LIST_FOREACH(devs, l, f) { if (!strcmp(f, dev)) { dev = f; devok = 1; break; } } } if (!devok) return -1; str = eeze_udev_syspath_get_sysattr(dev, "max_brightness"); if (str) { maxlevel = atoi(str); eina_stringshare_del(str); str = eeze_udev_syspath_get_sysattr(dev, "brightness"); if (str) { curlevel = atoi(str); eina_stringshare_del(str); } } if (maxlevel <= 0) maxlevel = 255; if (curlevel >= 0) { curlevel = ((maxlevel * level) + 500) / 1000; if (curlevel > maxlevel) curlevel = maxlevel; else if (curlevel < 0) curlevel = 0; snprintf(buf, sizeof(buf), "%s/brightness", f); return _bl_write_file(buf, curlevel); } EINA_LIST_FREE(devs, f) eina_stringshare_del(f); return -1; }