*add* use ACPI api for freebsd (thx to yamagi.burmeister)

git-svn-id: http://tint2.googlecode.com/svn/trunk@515 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
Andreas.Fink85 2010-06-26 16:19:18 +00:00
parent 357e37282a
commit 9899d8a7c0
2 changed files with 60 additions and 9 deletions

View file

@ -1,3 +1,7 @@
2010-06-26
- unhide tint2 panel when dragging something
- battery FreeBSD uses the new ACPI API (thx to yamagi.burmeister)
2010-06-16 2010-06-16
- Set _NET_WM_ICON_GEOMETRY for every task - Set _NET_WM_ICON_GEOMETRY for every task

View file

@ -24,13 +24,18 @@
#include <cairo-xlib.h> #include <cairo-xlib.h>
#include <pango/pangocairo.h> #include <pango/pangocairo.h>
#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__NetBSD__) #if defined(__OpenBSD__) || defined(__NetBSD__)
#include <machine/apmvar.h> #include <machine/apmvar.h>
#include <err.h> #include <err.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <unistd.h> #include <unistd.h>
#endif #endif
#if defined(__FreeBSD__)
#include <sys/types.h>
#include <sys/sysctl.h>
#endif
#include "window.h" #include "window.h"
#include "server.h" #include "server.h"
#include "area.h" #include "area.h"
@ -59,11 +64,10 @@ char *path_energy_full;
char *path_current_now; char *path_current_now;
char *path_status; char *path_status;
#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__NetBSD__) #if defined(__OpenBSD__) || defined(__NetBSD__)
int apm_fd; int apm_fd;
#endif #endif
void update_batterys(void* arg) void update_batterys(void* arg)
{ {
int i; int i;
@ -103,7 +107,7 @@ void default_battery()
path_energy_full = 0; path_energy_full = 0;
path_current_now = 0; path_current_now = 0;
path_status = 0; path_status = 0;
#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__NetBSD__) #if defined(__OpenBSD__) || defined(__NetBSD__)
apm_fd = -1; apm_fd = -1;
#endif #endif
} }
@ -118,7 +122,7 @@ void cleanup_battery()
if (path_status) g_free(path_status); if (path_status) g_free(path_status);
if (battery_low_cmd) g_free(battery_low_cmd); if (battery_low_cmd) g_free(battery_low_cmd);
#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__NetBSD__) #if defined(__OpenBSD__) || defined(__NetBSD__)
if ((apm_fd != -1) && (close(apm_fd) == -1)) if ((apm_fd != -1) && (close(apm_fd) == -1))
warn("cannot close /dev/apm"); warn("cannot close /dev/apm");
#endif #endif
@ -129,7 +133,7 @@ void init_battery()
{ {
if (!battery_enabled) return; if (!battery_enabled) return;
#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__NetBSD__) #if defined(__OpenBSD__) || defined(__NetBSD__)
apm_fd = open("/dev/apm", O_RDONLY); apm_fd = open("/dev/apm", O_RDONLY);
if (apm_fd < 0) { if (apm_fd < 0) {
warn("init_battery: failed to open /dev/apm."); warn("init_battery: failed to open /dev/apm.");
@ -137,7 +141,7 @@ void init_battery()
return; return;
} }
#else #elif !defined(__FreeBSD__)
// check battery // check battery
GDir *directory = 0; GDir *directory = 0;
GError *error = NULL; GError *error = NULL;
@ -258,17 +262,21 @@ void init_battery_panel(void *p)
void update_battery() { void update_battery() {
#if !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__NetBSD__) #if !defined(__OpenBSD__) && !defined(__NetBSD__) && !defined(__FreeBSD__)
// unused on OpenBSD, silence compiler warnings // unused on OpenBSD, silence compiler warnings
FILE *fp; FILE *fp;
char tmp[25]; char tmp[25];
int64_t current_now = 0; int64_t current_now = 0;
#endif
#if defined(__FreeBSD__)
int sysctl_out = 0;
size_t len = 0;
#endif #endif
int64_t energy_now = 0, energy_full = 0; int64_t energy_now = 0, energy_full = 0;
int seconds = 0; int seconds = 0;
int8_t new_percentage = 0; int8_t new_percentage = 0;
#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__NetBSD__) #if defined(__OpenBSD__) || defined(__NetBSD__)
struct apm_power_info info; struct apm_power_info info;
if (ioctl(apm_fd, APM_IOC_GETPOWER, &(info)) < 0) if (ioctl(apm_fd, APM_IOC_GETPOWER, &(info)) < 0)
warn("power update: APM_IOC_GETPOWER"); warn("power update: APM_IOC_GETPOWER");
@ -298,6 +306,45 @@ void update_battery() {
new_percentage = info.battery_life; new_percentage = info.battery_life;
#elif defined(__FreeBSD__)
len = sizeof(sysctl_out);
if (sysctlbyname("hw.acpi.battery.state", &sysctl_out, &len, NULL, 0) != 0)
fprintf(stderr, "power update: no such sysctl");
// attemp to map the battery state to linux
battery_state.state = BATTERY_UNKNOWN;
switch(sysctl_out) {
case 1:
battery_state.state = BATTERY_DISCHARGING;
break;
case 2:
battery_state.state = BATTERY_CHARGING;
break;
default:
battery_state.state = BATTERY_FULL;
break;
}
// no mapping for freebsd
energy_full = 0;
energy_now = 0;
if (sysctlbyname("hw.acpi.battery.time", &sysctl_out, &len, NULL, 0) != 0)
seconds = -1;
else
seconds = sysctl_out * 60;
// charging or error
if (seconds < 0)
seconds = 0;
if (sysctlbyname("hw.acpi.battery.life", &sysctl_out, &len, NULL, 0) != 0)
new_percentage = -1;
else
new_percentage = sysctl_out;
#else #else
fp = fopen(path_status, "r"); fp = fopen(path_status, "r");
if(fp != NULL) { if(fp != NULL) {