2021-11-03 11:36:41 +05:00

238 lines
7.0 KiB
C

/*
* Copyright (C) 2016 P.L. Lucas
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/********************************************************************************
* This library uses Linux /sys/class/backlight files to read and change the
* backlight level.
*
* If screen backlight can be controlled, the Linux kernel will show inside
* /sys/class/backlight directory one or more directories. Each directory has
* got the following files:
* /sys/class/backlight/driver/max_brightness
* /sys/class/backlight/driver/actual_brightness
* /sys/class/backlight/driver/brightness
* /sys/class/backlight/driver/type
* /sys/class/backlight/driver/bl_power
*
* The "max_brightness" file contains the maximum value that can be set to the
* backlight level.
*
* In "brightness" file you can write the value of backlight and the Linux
* kernel will set that value.
*
* The "bl_power" controls if backlight is turn on (0) or turn off (>0).
*
* You must read actual backlight level from "actual_brightness" file. Never
* read the backlight level from "brightness" file.
*
* The "type" file is the type of control and it can be:
* firmware
* platform
* raw
* The firmware control should be preferred to platform control. The platform
* control should be preferred to raw control.
* If there are several directories in /sys/class/backlight/, you should use
* the directory which its "type" file has got the "firmware" value.
*
* In order to write in /sys/class/backlight/driver/brightness file root
* permissions are needed. This library calls to a command line tool called
* "lxqtbacklight_backend". "lxqtbacklight_backend" has a policy in Polkit
* in order to write in /sys/class/backlight/driver/brightness file.
*******************************************************************************/
#include <limits.h>
#include <stdio.h>
#include <dirent.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "libbacklight_backend.h"
#define True 1
#define False 0
static FILE* open_driver_file(const char *file, const char *driver, const char *mode);
static int read_backlight(const char *driver);
static int read_max_backlight(const char *driver);
static int read_bl_power(const char *driver);
static const char *sysfs_backlight_dir = "/sys/class/backlight";
int lxqt_backlight_backend_get()
{
char *driver = lxqt_backlight_backend_get_driver();
if( driver == NULL ) {
return -1;
}
int value = read_backlight(driver);
free(driver);
return value;
}
int lxqt_backlight_backend_get_max()
{
char *driver = lxqt_backlight_backend_get_driver();
if( driver == NULL ) {
return -1;
}
int value = read_max_backlight(driver);
int bl_power = read_bl_power(driver);
free(driver);
return bl_power==0 ? value : -1;
}
FILE *lxqt_backlight_backend_get_write_stream()
{
FILE *stream = popen("pkexec lxqt-backlight_backend --stdin", "w");
return stream;
}
int lxqt_backlight_is_backlight_off()
{
char *driver = lxqt_backlight_backend_get_driver();
if( driver == NULL ) {
return -1;
}
int bl_power = read_bl_power(driver);
free(driver);
return bl_power;
}
static int read_int(const char *file, const char *driver)
{
FILE *in = open_driver_file(file, driver, "r");
if( in == NULL ) {
return -1;
}
int value;
int ok = fscanf(in, "%d", &value);
fclose(in);
if( ok == EOF ) {
value = 0;
}
return value;
}
static FILE* open_driver_file(const char *file, const char *driver, const char *mode)
{
char path[PATH_MAX];
int res;
res = snprintf(path, PATH_MAX, "%s/%s/%s", sysfs_backlight_dir, driver, file);
if( res <= 0 || res >= PATH_MAX ) {
path[0] = '\0';
return NULL;
}
FILE *ret = fopen(path, mode);
if( ret == NULL ) {
fprintf(stderr, "Couldn't open %s: %s\n", path, strerror(errno));
}
return ret;
}
static int read_backlight(const char *driver)
{
return read_int("actual_brightness", driver);
}
static int read_max_backlight(const char *driver)
{
return read_int("max_brightness", driver);
}
static int read_bl_power(const char *driver)
{
return read_int("bl_power", driver);
}
typedef enum {FIRMWARE, PLATFORM, RAW, OTHER, N_BACKLIGHT} BackligthTypes;
char *lxqt_backlight_backend_get_driver()
{
DIR *dirp;
struct dirent *dp;
char *drivers[N_BACKLIGHT];
char *driver;
int n;
char type[1024];
for(n=0;n<N_BACKLIGHT;n++)
drivers[n] = NULL;
if ((dirp = opendir(sysfs_backlight_dir)) == NULL) {
fprintf(stderr, "Couldn't open %s: %s\n", sysfs_backlight_dir, strerror(errno));
return NULL;
}
do {
errno = 0;
if ((dp = readdir(dirp)) != NULL) {
if( !strcmp(dp->d_name, ".") || !strcmp(dp->d_name, "..") )
continue;
driver = dp->d_name;
FILE *in = open_driver_file("type", driver, "r");
if( in == NULL )
continue;
// the maximum field width does not include '\0'!
int ok = fscanf(in, "%1023s", type);
fclose(in);
if( ok != EOF ) {
// firmware control should be preferred to platform control should be preferred to raw control.
if( ! strcmp("firmware", type) ) {
drivers[FIRMWARE] = strdup(driver);
break;
} else if( ! strcmp("platform", type) )
drivers[PLATFORM] = strdup(driver);
else if( ! strcmp("raw", type) )
drivers[RAW] = strdup(driver);
else // Only, firmware, platform and raw are defined, but...
drivers[OTHER] = strdup(driver);
}
}
} while (dp != NULL);
closedir(dirp);
if (errno != 0) {
fprintf(stderr, "Error reading directory %s: %s\n", sysfs_backlight_dir, strerror(errno));
}
driver = NULL;
for(n=0;n<N_BACKLIGHT;n++) {
if( drivers[n] != NULL && driver == NULL )
driver = drivers[n];
else
free(drivers[n]);
}
if( driver == NULL )
{
fprintf(stderr, "Error: %s is empty (no driver found).\n", sysfs_backlight_dir);
}
return driver;
}