123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961 |
- #include "light.h"
-
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
- #include <unistd.h>
- #include <getopt.h>
- #include <sys/stat.h>
- #include <errno.h>
-
- void light_defaultConfig()
- {
- light_Configuration.controllerMode = LIGHT_AUTO;
- memset(&light_Configuration.specifiedController, '\0', 256);
- light_Configuration.operationMode = LIGHT_GET;
- light_Configuration.valueMode = LIGHT_PERCENT;
- light_Configuration.specifiedValueRaw = 0;
- light_Configuration.specifiedValuePercent = 0.0;
- light_Configuration.target = LIGHT_BRIGHTNESS;
- light_Configuration.hasCachedMaxBrightness = FALSE;
- light_Configuration.cachedMaxBrightness = 0;
- light_verbosity = 0;
- }
-
- LIGHT_BOOL light_parseArguments(int argc, char** argv)
- {
- int currFlag;
- int verbosity;
-
- LIGHT_BOOL opSet = FALSE;
- LIGHT_BOOL targetSet = FALSE;
- LIGHT_BOOL ctrlSet = FALSE;
- LIGHT_BOOL valSet = FALSE;
-
- unsigned long specLen = 0;
-
- while((currFlag = getopt(argc, argv, "HhVGSAULIObmckas:prv:")) != -1)
- {
- switch(currFlag)
- {
- /* -- Operations -- */
- case 'H':
- case 'h':
- ASSERT_OPSET();
- light_Configuration.operationMode = LIGHT_PRINT_HELP;
- break;
- case 'V':
- ASSERT_OPSET();
- light_Configuration.operationMode = LIGHT_PRINT_VERSION;
- break;
- case 'G':
- ASSERT_OPSET();
- light_Configuration.operationMode = LIGHT_GET;
- break;
- case 'S':
- ASSERT_OPSET();
- light_Configuration.operationMode = LIGHT_SET;
- break;
- case 'A':
- ASSERT_OPSET();
- light_Configuration.operationMode = LIGHT_ADD;
- break;
- case 'U':
- ASSERT_OPSET();
- light_Configuration.operationMode = LIGHT_SUB;
- break;
- case 'L':
- ASSERT_OPSET();
- light_Configuration.operationMode = LIGHT_LIST_CTRL;
- break;
- case 'I':
- ASSERT_OPSET();
- light_Configuration.operationMode = LIGHT_RESTORE;
- break;
- case 'O':
- ASSERT_OPSET();
- light_Configuration.operationMode = LIGHT_SAVE;
- break;
-
- /* -- Targets -- */
- case 'b':
- ASSERT_TARGETSET();
- light_Configuration.target = LIGHT_BRIGHTNESS;
- break;
- case 'm':
- ASSERT_TARGETSET();
- light_Configuration.target = LIGHT_MAX_BRIGHTNESS;
- break;
- case 'c':
- ASSERT_TARGETSET();
- light_Configuration.target = LIGHT_MIN_CAP;
- break;
- case 'k':
- ASSERT_TARGETSET();
- light_Configuration.target = LIGHT_KEYBOARD;
-
- /* -- Controller selection -- */
- case 'a':
- ASSERT_CTRLSET();
- light_Configuration.controllerMode = LIGHT_AUTO;
- break;;
- case 's':
- ASSERT_CTRLSET();
- light_Configuration.controllerMode = LIGHT_SPECIFY;
- if(optarg == NULL)
- {
- printf("-s NEEDS an argument.\n\n");
- light_printHelp();
- }
-
- specLen = strlen(optarg);
- if(specLen > 255)
- {
- specLen = 255;
- }
-
- strncpy(light_Configuration.specifiedController, optarg, specLen);
-
- light_Configuration.specifiedController[255] = '\0';
- break;
- /* -- Value modes -- */
- case 'p':
- ASSERT_VALSET();
- light_Configuration.valueMode = LIGHT_PERCENT;
- break;
- case 'r':
- ASSERT_VALSET();
- light_Configuration.valueMode = LIGHT_RAW;
- break;
-
- /* -- Other -- */
- case 'v':
- if(optarg == NULL)
- {
- printf("-v NEEDS an argument.\n\n");
- light_printHelp();
- return FALSE;
- }
- if(sscanf(optarg, "%i", &verbosity) != 1)
- {
- printf("-v Verbosity is not specified in a recognizable format.\n\n");
- light_printHelp();
- return FALSE;
- }
- if(verbosity < 0 || verbosity > 3)
- {
- printf("-v Verbosity has to be between 0 and 3.\n\n");
- light_printHelp();
- return FALSE;
- }
- light_verbosity = (LIGHT_LOG_LEVEL)verbosity;
- break;
- }
- }
-
- /* If we need a <value> (for writing), make sure we have it! */
- if(light_Configuration.operationMode == LIGHT_SET ||
- light_Configuration.operationMode == LIGHT_ADD ||
- light_Configuration.operationMode == LIGHT_SUB)
- {
- if(argc - optind != 1)
- {
- printf("Light needs an argument for <value>.\n\n");
- light_printHelp();
- return FALSE;
- }
-
- if(light_Configuration.valueMode == LIGHT_PERCENT)
- {
- if(sscanf(argv[optind], "%lf", &light_Configuration.specifiedValuePercent) != 1){
- printf("<value> is not specified in a recognizable format.\n\n");
- light_printHelp();
- return FALSE;
- }
- light_Configuration.specifiedValuePercent = LIGHT_CLAMP(light_Configuration.specifiedValuePercent, 0.00, 100.00);
- }else{
- if(sscanf(argv[optind], "%lu", &light_Configuration.specifiedValueRaw) != 1){
- printf("<value> is not specified in a recognizable format.\n\n");
- light_printHelp();
- return FALSE;
- }
- }
-
- }
-
- return TRUE;
- }
-
- void light_printVersion(){
- printf("Light %u.%u (%s)\n", LIGHT_VER_MAJOR, LIGHT_VER_MINOR, LIGHT_VER_TYPE);
- printf("Copyright (C) %u %s\n", LIGHT_YEAR, LIGHT_AUTHOR);
- printf("This is free software, see the source for copying conditions. There is NO\n");
- printf("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE\n\n");
- }
-
- void light_printHelp(){
- printf("Usage: light <options> <value>\n");
- printf("<value> has to be either integral(raw mode) or decimal(percent mode) depending on the specified value mode.\n");
- printf("<options> can be any of the following:\n\n");
-
- printf("Operations (can not be used in conjunction):\n");
- printf(" -H -h:\tPrints this help and exits\n");
- printf(" -V:\t\tPrints version info and exits\n");
- printf(" -G:\t\tGet value (default)\n");
- printf(" -S:\t\tSet value\n");
- printf(" -A:\t\tAdd value\n");
- printf(" -U:\t\tSubtract value\n");
- printf(" -L:\t\tList controllers\n");
- printf(" -I:\t\tRestore brightness\n");
- printf(" -O:\t\tSave brightness\n\n");
-
- printf("Targets (can not be used in conjunction):\n");
- printf(" -b:\t\tBrightness (default)\n \t\tUsed with [GSAU]\n\n");
- printf(" -m:\t\tMaximum brightness\n \t\tUsed with [G]\n\n");
- printf(" -c:\t\tMinimum cap\n \t\tUsed with [GS]\n");
- printf(" -k:\t\tSet keyboard brightness instead of display brightness \n \t\tUsed with [GSAU]");
- printf(" \t\tG returns null if no minimum cap is set.\n\n");
-
- printf("Controller selection (can not be used in conjunction):\n");
- printf(" -a:\t\tSelects controller automatically (default).\n");
- printf(" -s:\t\tSpecify controller to use. (needs argument)\n\n");
-
- printf("Value modes (can not be used in conjunction):\n");
- printf(" -p:\t\tInterpret <value> as, and output values in, percent. (default)\n");
- printf(" -r:\t\tInterpret <value> as, and output values in, raw mode.\n\n");
-
- printf("Other:\n");
- printf(" -v:\t\tSets the verbosity level, (needs argument).\n \t\t0: Only outputs read values.\n \t\t1: Read values, Errors.\n \t\t2: Read values, Errors, Warnings.\n \t\t3: Read values, Errors, Warnings, Notices.\n\n");
- }
-
- LIGHT_BOOL light_initialize(int argc, char** argv)
- {
- int mkdirVal;
- LIGHT_OP_MODE mode;
-
- light_defaultConfig();
- if(!light_parseArguments(argc, argv))
- {
- LIGHT_ERR("could not parse arguments");
- return FALSE;
- }
- mode = light_Configuration.operationMode;
-
- /* Just return true for operation modes that do not need initialization */
- if(mode == LIGHT_PRINT_HELP ||
- mode == LIGHT_PRINT_VERSION ||
- mode == LIGHT_LIST_CTRL)
- {
- return TRUE;
- }
-
- if(mode == LIGHT_SAVE ||
- (mode == LIGHT_SET && light_Configuration.target == LIGHT_MIN_CAP))
- {
- /* Make sure we have a valid /etc/light directory, as well as mincap and save */
- char const * const dirs[3] = {"/etc/light", "/etc/light/mincap", "/etc/light/save"};
- char const * const *dir = dirs;
- char const * const direrr = "'%s' does not exist and could not be created, make sure this application is run as root.";
-
- while (dir < dirs + 3)
- {
- mkdirVal = mkdir(*dir, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
- if(mkdirVal != 0 && errno != EEXIST)
- {
- LIGHT_ERR_FMT(direrr, *dir);
- return FALSE;
- }
- ++dir;
- }
- }
-
- /* Make sure we have a valid controller before we proceed */
- if(light_Configuration.controllerMode == LIGHT_AUTO)
- {
- LIGHT_NOTE("Automatic mode -- finding best controller");
- if(!light_getBestController(light_Configuration.specifiedController))
- {
- LIGHT_ERR("could not find suitable controller");
- return FALSE;
- }
- }
- else if(!light_controllerAccessible(light_Configuration.specifiedController))
- {
- LIGHT_ERR_FMT("selected controller '%s' is not valid",
- light_Configuration.specifiedController);
- return FALSE;
- }
-
- return TRUE;
- }
-
- /* Print help and version info */
- LIGHT_BOOL light_handleInfo()
- {
- if(light_Configuration.operationMode == LIGHT_PRINT_HELP)
- {
- light_printHelp();
- return TRUE;
- }
-
- if(light_Configuration.operationMode == LIGHT_PRINT_VERSION)
- {
- light_printVersion();
- return TRUE;
- }
-
- if(light_Configuration.operationMode == LIGHT_LIST_CTRL)
- {
- /* listControllers() can return FALSE, but only if it does not find any controllers. That is not enough for an unsuccessfull run. */
- light_listControllers();
- return TRUE;
- }
- return FALSE;
- }
-
- LIGHT_BOOL light_initExecution(unsigned long *rawCurr, unsigned long *rawMax, LIGHT_BOOL *hasMinCap, unsigned long *minCap)
- {
- if(light_Configuration.hasCachedMaxBrightness)
- {
- *rawMax = light_Configuration.cachedMaxBrightness;
- }
- else if(!light_getMaxBrightness(light_Configuration.specifiedController, rawMax))
- {
- LIGHT_ERR("could not get max brightness");
- return FALSE;
- }
-
- /* No need to go further if targetting mincap */
- if(light_Configuration.target == LIGHT_MIN_CAP)
- {
- return TRUE;
- }
-
- if(!light_getBrightness(light_Configuration.specifiedController, rawCurr))
- {
- LIGHT_ERR("could not get brightness");
- return FALSE;
- }
-
- if(!light_getMinCap(light_Configuration.specifiedController, hasMinCap, minCap))
- {
- LIGHT_ERR("could not get min brightness");
- return FALSE;
- }
-
- if( *hasMinCap && *minCap > *rawMax )
- {
- LIGHT_WARN_FMT("invalid minimum cap (raw) value of '%lu' for controller, ignoring and using 0", *minCap);
- LIGHT_WARN_FMT("minimum cap must be inferior to '%lu'", *rawMax);
- minCap = 0;
- }
- return TRUE;
- }
-
- LIGHT_BOOL light_execute()
- {
- unsigned long rawCurr; /* The current brightness, in raw units */
- double percentCurr; /* The current brightness, in percent */
- unsigned long rawMax; /* The max brightness, in percent */
-
- unsigned long minCap; /* The minimum cap, in raw units */
- double percentMinCap; /* The minimum cap, in percent */
- LIGHT_BOOL hasMinCap; /* If we have a minimum cap */
- unsigned long writeVal;
-
- LIGHT_VAL_MODE valueMode;
-
- if(light_handleInfo())
- {
- return TRUE;
- }
-
- /* -- First, get the current, min and max values directly from controller/configuration (raw values) */
- if(!light_initExecution(&rawCurr, &rawMax, &hasMinCap, &minCap))
- {
- return FALSE;
- }
-
- /* -- Secondly, calculate the rest of the values (Clamp them here as well!) */
- valueMode = light_Configuration.valueMode;
- percentCurr = LIGHT_CLAMP( ((double)rawCurr) / ((double)rawMax) * 100 , 0.00, 100.00 );
- percentMinCap = LIGHT_CLAMP( ((double)minCap) / ((double)rawMax) * 100 , 0.00, 100.00 );
-
- LIGHT_NOTE_FMT("executing light on '%s' controller", light_Configuration.specifiedController);
-
- /* Handle get operations */
- if(light_Configuration.operationMode == LIGHT_GET)
- {
- switch(light_Configuration.target){
- case LIGHT_BRIGHTNESS:
- (valueMode == LIGHT_RAW) ? printf("%lu\n", rawCurr) : printf("%.2f\n", percentCurr);
- break;
- case LIGHT_MAX_BRIGHTNESS:
- (valueMode == LIGHT_RAW) ? printf("%lu\n", rawMax) : printf("100.00\n"); /* <- I know how stupid it is but it might just make someones life easier */
- break;
- case LIGHT_MIN_CAP:
- (valueMode == LIGHT_RAW) ? printf("%lu\n", minCap) : printf("%.2f\n", percentMinCap);
- break;
- case LIGHT_SAVERESTORE:
- break;
- }
- return TRUE;
- }
-
- /* Handle saves and restores*/
- if(light_Configuration.operationMode == LIGHT_SAVE){
- if(!light_saveBrightness(light_Configuration.specifiedController, rawCurr))
- {
- LIGHT_ERR("could not save brightness");
- return FALSE;
- }
-
- return TRUE;
- }
-
- if(light_Configuration.operationMode == LIGHT_RESTORE){
- if(!light_restoreBrightness(light_Configuration.specifiedController)){
- LIGHT_ERR("could not restore brightness");
- return FALSE;
- }
-
- return TRUE;
- }
-
- /* Handle set/add/sub operations */
- if(light_Configuration.operationMode == LIGHT_SET ||
- light_Configuration.operationMode == LIGHT_ADD ||
- light_Configuration.operationMode == LIGHT_SUB)
- {
- if(light_Configuration.target == LIGHT_MIN_CAP)
- {
- /* Handle minimum cap files */
- writeVal = valueMode == LIGHT_RAW ?
- LIGHT_CLAMP( light_Configuration.specifiedValueRaw, 0, rawMax ) :
- LIGHT_CLAMP(((unsigned long) (light_Configuration.specifiedValuePercent * ((double)rawMax) ) / 100), 0, rawMax);
- /* If we are not attempting to set, fail! */
- if(light_Configuration.operationMode != LIGHT_SET)
- {
- fprintf(stderr, "Minimum cap can only be used with get/set operations.\n");
- return FALSE;
- }
-
- if(!light_setMinCap(light_Configuration.specifiedController, writeVal))
- {
- LIGHT_ERR("could not set minimum cap");
- return FALSE;
- }
-
- /* All good? Return true. */
- return TRUE;
-
- }else if(light_Configuration.target == LIGHT_BRIGHTNESS || light_Configuration.target == LIGHT_KEYBOARD){
- /* Handle brightness writing */
-
- switch(light_Configuration.operationMode)
- {
- case LIGHT_SET:
- writeVal = valueMode == LIGHT_RAW ?
- LIGHT_CLAMP( light_Configuration.specifiedValueRaw , minCap, rawMax ) :
- LIGHT_CLAMP( ((unsigned long) (light_Configuration.specifiedValuePercent * ((double)rawMax) ) / 100) , minCap, rawMax );
- break;
- case LIGHT_ADD:
- writeVal = valueMode == LIGHT_RAW ?
- LIGHT_CLAMP( rawCurr + light_Configuration.specifiedValueRaw , minCap, rawMax ) :
- LIGHT_CLAMP( ((unsigned long) ( (percentCurr + light_Configuration.specifiedValuePercent) * ((double)rawMax)) / 100) , minCap, rawMax );
- break;
- case LIGHT_SUB:
- if(light_Configuration.specifiedValueRaw > rawCurr){
- writeVal = LIGHT_CLAMP(0, minCap, rawMax);
- }else{
- writeVal = valueMode == LIGHT_RAW ?
- LIGHT_CLAMP( rawCurr - light_Configuration.specifiedValueRaw , minCap, rawMax ):
- LIGHT_CLAMP( ((unsigned long) ( (percentCurr - light_Configuration.specifiedValuePercent) * ((double)rawMax)) / 100) , minCap, rawMax );
- }
- break;
- /* we have already taken other possibilities, so we shouldn't get here */
- default:
- return FALSE;
- }
-
- /* Attempt to write */
- if(!light_setBrightness(light_Configuration.specifiedController, writeVal))
- {
- LIGHT_ERR("could not set brightness");
- return FALSE;
- }
-
- /* All good? return true. */
- return TRUE;
-
- }else{
- /* If we didn't provide a valid target for write operations, fail. */
- fprintf(stderr, "set/add/subtract operations are only available for brightness and minimum cap files.\n");
- return FALSE;
- }
- }
-
- /* Handle saves and restores*/
- if(light_Configuration.operationMode == LIGHT_SAVE){
- if(!light_saveBrightness(light_Configuration.specifiedController, rawCurr))
- {
- LIGHT_ERR("could not save brightness");
- return FALSE;
- }
-
- return TRUE;
- }
-
- if(light_Configuration.operationMode == LIGHT_RESTORE){
- if(!light_restoreBrightness(light_Configuration.specifiedController)){
- LIGHT_ERR("could not restore brightness");
- return FALSE;
- }
-
- return TRUE;
- }
-
- fprintf(stderr, "Controller: %s\nValueRaw: %lu\nValuePercent: %.2f\nOpMode: %u\nValMode: %u\nTarget: %u\n\n", light_Configuration.specifiedController, light_Configuration.specifiedValueRaw, light_Configuration.specifiedValuePercent, light_Configuration.operationMode, light_Configuration.valueMode, light_Configuration.target);
-
- fprintf(stderr, "You did not specify a valid combination of commandline arguments. Have some help: \n");
- light_printHelp();
- return FALSE;
- }
-
- void light_free()
- {
-
- }
-
- LIGHT_BOOL light_genPath(char const *controller, LIGHT_TARGET type, char **buffer)
- {
- char* returner = malloc(256);
- int spfVal = -1;
-
- if(returner == NULL)
- {
- LIGHT_MEMERR();
- buffer = NULL;
- return FALSE;
- }
-
- memset(returner, '\0', 256);
-
- switch(type)
- {
- case LIGHT_BRIGHTNESS:
- spfVal = sprintf(returner, "/sys/class/backlight/%s/brightness", controller);
- break;
- case LIGHT_MAX_BRIGHTNESS:
- spfVal = sprintf(returner, "/sys/class/backlight/%s/max_brightness", controller);
- break;
- case LIGHT_MIN_CAP:
- spfVal = sprintf(returner, "/etc/light/mincap/%s", controller);
- break;
- case LIGHT_SAVERESTORE:
- spfVal = sprintf(returner, "/etc/light/save/%s", controller);
- break;
- case LIGHT_KEYBOARD:
- spfVal = sprintf(returner, "/sys/class/leds/%s/brightness", controller);
- break;
- case LIGHT_KEYBOARD_MAX_BRIGHTNESS:
- spfVal = sprintf(returner, "/sys/class/leds/%s/max_brightness", controller);
- break;
- }
-
- if(spfVal < 0)
- {
- LIGHT_ERR("sprintf failed");
- free(returner);
- buffer = NULL;
- return FALSE;
- }
-
- *buffer = returner;
-
- return TRUE;
- }
-
- LIGHT_BOOL light_getBrightnessPath(char const *controller, char **path)
- {
- LIGHT_TARGET target;
-
- if(light_Configuration.target == LIGHT_MIN_CAP)
- {
- target = LIGHT_BRIGHTNESS;
- }
- else
- {
- target = light_Configuration.target;
- }
-
- if(!light_genPath(controller, target, path))
- {
- LIGHT_ERR("could not generate path to brightness file");
- return FALSE;
- }
- return TRUE;
- }
-
- LIGHT_BOOL light_getBrightness(char const *controller, unsigned long *v)
- {
- char *brightnessPath = NULL;
- LIGHT_BOOL readVal = FALSE;
-
- if(!light_getBrightnessPath(controller, &brightnessPath))
- {
- return FALSE;
- }
-
- readVal = light_readULong( brightnessPath , v);
- free(brightnessPath);
-
- if(!readVal)
- {
- LIGHT_ERR("could not read value from brightness file");
- return FALSE;
- }
-
- return TRUE;
- }
-
- LIGHT_BOOL light_getMaxBrightnessPath(char const *controller, char **path)
- {
- LIGHT_TARGET target;
-
- if(light_Configuration.target == LIGHT_KEYBOARD)
- {
- target = LIGHT_KEYBOARD_MAX_BRIGHTNESS;
- }
- else
- {
- target = LIGHT_MAX_BRIGHTNESS;
- }
-
- if(!light_genPath(controller, target, path))
- {
- LIGHT_ERR("could not generate path to maximum brightness file");
- return FALSE;
- }
- return TRUE;
- }
-
- LIGHT_BOOL light_getMaxBrightness(char const *controller, unsigned long *v)
- {
- char *maxPath = NULL;
- LIGHT_BOOL readVal = FALSE;
-
- if (!light_getMaxBrightnessPath(controller, &maxPath))
- {
- return FALSE;
- }
- readVal = light_readULong(maxPath , v);
- free(maxPath);
-
- if(!readVal)
- {
- LIGHT_ERR("could not read value from max brightness file");
- return FALSE;
- }
-
- if(*v == 0)
- {
- LIGHT_ERR("max brightness is 0, so controller is not valid");
- return FALSE;
- }
-
- return TRUE;
- }
-
- LIGHT_BOOL light_setBrightness(char const *controller, unsigned long v)
- {
- char *brightnessPath = NULL;
- LIGHT_BOOL writeVal = FALSE;
-
- if(!light_genPath(controller, light_Configuration.target, &brightnessPath))
- {
- LIGHT_ERR("could not generate path to brightness file");
- return FALSE;
- }
-
- LIGHT_NOTE_FMT("setting brightness %lu (raw) to controller", v);
- writeVal = light_writeULong(brightnessPath, v);
-
- if(!writeVal)
- {
- LIGHT_ERR("could not write value to brightness file");
- }
-
- free(brightnessPath);
- return writeVal;
- }
-
- LIGHT_BOOL light_controllerAccessible(char const *controller)
- {
- char *brightnessPath = NULL;
-
- /* On auto mode, we need to check if we can read the max brightness value
- of the controller for later computation */
- if(light_Configuration.controllerMode == LIGHT_AUTO ||
- light_Configuration.target == LIGHT_MAX_BRIGHTNESS)
- {
- if(!light_getMaxBrightnessPath(controller, &brightnessPath))
- {
- return FALSE;
- }
- if(!light_isReadable(brightnessPath))
- {
- LIGHT_WARN("could not open controller max brightness file for reading, so controller is not accessible");
- free(brightnessPath);
- return FALSE;
- }
- free(brightnessPath);
- }
-
- if(!light_getBrightnessPath(controller, &brightnessPath))
- {
- return FALSE;
- }
-
- if(light_Configuration.operationMode != LIGHT_GET &&
- light_Configuration.target != LIGHT_MIN_CAP &&
- !light_isWritable(brightnessPath))
- {
- LIGHT_WARN("could not open controller brightness file for writing, so controller is not accessible");
- free(brightnessPath);
- return FALSE;
- }
- else if (!light_isReadable(brightnessPath))
- {
- LIGHT_WARN("could not open controller brightness file for reading, so controller is not accessible");
- free(brightnessPath);
- return FALSE;
- }
-
- free(brightnessPath);
- return TRUE;
- }
-
- LIGHT_BOOL light_iterateControllers()
- {
- LIGHT_BOOL dotsKilled = FALSE;
-
- if(light_iteratorDir == NULL)
- {
- if(light_Configuration.target == LIGHT_KEYBOARD)
- {
- light_iteratorDir = opendir("/sys/class/leds");
- }
- else
- {
- light_iteratorDir = opendir("/sys/class/backlight");
- }
- if(light_iteratorDir == NULL)
- {
- LIGHT_ERR("could not open backlight or leds directory in /sys/class");
- return FALSE;
- }
- }
-
- while(!dotsKilled)
- {
- light_iterator = readdir(light_iteratorDir);
- if(light_iterator == NULL)
- {
- if(light_iteratorDir != NULL)
- {
- closedir(light_iteratorDir);
- light_iteratorDir = NULL;
- }
- return FALSE;
- }
-
- if(light_iterator->d_name[0] != '.')
- {
- dotsKilled = TRUE;
- }
- }
-
- strcpy(light_currentController, light_iterator->d_name);
-
- return TRUE;
- }
-
- LIGHT_BOOL light_getBestController(char *controller)
- {
- char bestYet[256];
- unsigned long bestValYet = 0;
- LIGHT_BOOL foundOkController = FALSE;
-
- memset(bestYet, '\0', 256);
-
- while(light_iterateControllers())
- {
- unsigned long currVal = 0;
-
- LIGHT_NOTE_FMT("found '%s' controller", light_currentController);
- if(light_controllerAccessible(light_currentController))
- {
-
- if(light_getMaxBrightness(light_currentController, &currVal))
- {
- if(currVal > bestValYet)
- {
- foundOkController = TRUE;
- bestValYet = currVal;
- memset(bestYet, '\0', 256);
- strcpy(bestYet, light_currentController);
- light_Configuration.hasCachedMaxBrightness = TRUE;
- light_Configuration.cachedMaxBrightness = currVal;
- }else{
- LIGHT_NOTE("ignoring controller as better one already found");
- }
- }else{
- LIGHT_WARN("could not read max brightness from file");
- }
- }else{
- LIGHT_WARN("controller not accessible");
- }
- }
-
- if(!foundOkController)
- {
- LIGHT_ERR("could not find an accessible controller");
- return FALSE;
- }
-
- if(bestValYet == 0)
- {
- LIGHT_ERR("found accessible controller but it's useless/corrupt");
- return FALSE;
- }
-
- memset(controller, '\0', 256);
- strcpy(controller, bestYet);
-
- return TRUE;
- }
-
- LIGHT_BOOL light_getMinCap(char const * controller, LIGHT_BOOL * hasMinCap, unsigned long * minCap)
- {
- char * mincapPath = NULL;
-
- if(!light_genPath(controller, LIGHT_MIN_CAP, &mincapPath))
- {
- LIGHT_ERR("could not generate path to minimum cap file");
- return FALSE;
- }
-
- if(!light_isReadable(mincapPath)){
- *hasMinCap = FALSE;
- *minCap = 0;
- free(mincapPath);
- LIGHT_NOTE("cap file doesn't exist or can't read from it, so assuming a minimum brightness of 0");
- return TRUE;
- }
-
- if(!light_readULong(mincapPath, minCap))
- {
- LIGHT_ERR("could not read minimum cap from file");
- free(mincapPath);
- return FALSE;
- }
-
- *hasMinCap = TRUE;
-
- free(mincapPath);
- return TRUE;
- }
-
- LIGHT_BOOL light_setMinCap(char const * controller, unsigned long v)
- {
- char * mincapPath = NULL;
- if(!light_genPath(controller, LIGHT_MIN_CAP, &mincapPath))
- {
- LIGHT_ERR("could not generate path to minimum cap file");
- return FALSE;
- }
-
- LIGHT_NOTE_FMT("setting minimum cap to %lu (raw)", v);
- if(!light_writeULong(mincapPath, v))
- {
- LIGHT_ERR("could not write to minimum cap file");
- free(mincapPath);
- return FALSE;
- }
-
- free(mincapPath);
- return TRUE;
- }
-
- LIGHT_BOOL light_listControllers()
- {
- LIGHT_BOOL foundController = FALSE;
-
- while(light_iterateControllers())
- {
- if(!foundController)
- {
- foundController = TRUE;
- }
-
- printf("%s\n", light_currentController);
- }
-
- if(!foundController)
- {
- LIGHT_WARN("no controllers found, either check your system or your permissions");
- return FALSE;
- }
-
- return TRUE;
- }
-
- LIGHT_BOOL light_saveBrightness(char const *controller, unsigned long v){
- char *savePath = NULL;
- if(!light_genPath(controller, LIGHT_SAVERESTORE, &savePath))
- {
- LIGHT_ERR("could not generate path to save/restore file");
- return FALSE;
- }
-
- LIGHT_NOTE_FMT("saving brightness %lu (raw) to save file\n", v);
- if(!light_writeULong(savePath, v))
- {
- LIGHT_ERR("could not write to save/restore file");
- free(savePath);
- return FALSE;
- }
-
- free(savePath);
- return TRUE;
- }
-
- LIGHT_BOOL light_restoreBrightness(char const *controller){
- char *restorePath = NULL;
- unsigned long v = 0;
-
- if(!light_genPath(controller, LIGHT_SAVERESTORE, &restorePath))
- {
- LIGHT_ERR("could not generate path to save/restore file");
- return FALSE;
- }
-
- LIGHT_NOTE("restoring brightness from saved file");
- if(!light_readULong(restorePath, &v))
- {
- LIGHT_ERR("could not read saved value");
- free(restorePath);
- return FALSE;
- }
-
- if(!light_setBrightness(controller, v))
- {
- LIGHT_ERR("could not set restored brightness");
- free(restorePath);
- return FALSE;
- }
-
- free(restorePath);
- return TRUE;
- }
|