2015-07-12 18:47:43 +00:00
|
|
|
|
|
|
|
#include "BatteryMeter.h"
|
|
|
|
|
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
|
|
#include <CoreFoundation/CFString.h>
|
|
|
|
#include <IOKit/ps/IOPowerSources.h>
|
|
|
|
#include <IOKit/ps/IOPSKeys.h>
|
|
|
|
|
|
|
|
void Battery_getData(double* level, ACPresence* isOnAC) {
|
2015-08-19 16:56:46 +00:00
|
|
|
CFTypeRef power_sources = IOPSCopyPowerSourcesInfo();
|
2015-07-12 18:47:43 +00:00
|
|
|
|
|
|
|
*level = -1;
|
|
|
|
*isOnAC = AC_ERROR;
|
|
|
|
|
|
|
|
if(NULL == power_sources) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(power_sources != NULL) {
|
|
|
|
CFArrayRef list = IOPSCopyPowerSourcesList(power_sources);
|
|
|
|
CFDictionaryRef battery = NULL;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
if(NULL == list) {
|
2015-08-19 16:56:46 +00:00
|
|
|
CFRelease(power_sources);
|
2015-07-12 18:47:43 +00:00
|
|
|
|
2015-08-19 16:56:46 +00:00
|
|
|
return;
|
2015-07-12 18:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
len = CFArrayGetCount(list);
|
|
|
|
|
|
|
|
/* Get the battery */
|
|
|
|
for(int i = 0; i < len && battery == NULL; ++i) {
|
2015-08-19 16:56:46 +00:00
|
|
|
CFDictionaryRef candidate = IOPSGetPowerSourceDescription(power_sources,
|
|
|
|
CFArrayGetValueAtIndex(list, i)); /* GET rule */
|
|
|
|
CFStringRef type;
|
|
|
|
|
|
|
|
if(NULL != candidate) {
|
|
|
|
type = (CFStringRef) CFDictionaryGetValue(candidate,
|
|
|
|
CFSTR(kIOPSTransportTypeKey)); /* GET rule */
|
|
|
|
|
|
|
|
if(kCFCompareEqualTo == CFStringCompare(type, CFSTR(kIOPSInternalType), 0)) {
|
|
|
|
CFRetain(candidate);
|
|
|
|
battery = candidate;
|
|
|
|
}
|
|
|
|
}
|
2015-07-12 18:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(NULL != battery) {
|
2015-08-19 16:56:46 +00:00
|
|
|
/* Determine the AC state */
|
|
|
|
CFStringRef power_state = CFDictionaryGetValue(battery, CFSTR(kIOPSPowerSourceStateKey));
|
2015-07-12 18:47:43 +00:00
|
|
|
|
2015-08-19 16:56:46 +00:00
|
|
|
*isOnAC = (kCFCompareEqualTo == CFStringCompare(power_state, CFSTR(kIOPSACPowerValue), 0))
|
|
|
|
? AC_PRESENT
|
|
|
|
: AC_ABSENT;
|
2015-07-12 18:47:43 +00:00
|
|
|
|
2015-08-19 16:56:46 +00:00
|
|
|
/* Get the percentage remaining */
|
|
|
|
double current;
|
|
|
|
double max;
|
2015-07-12 18:47:43 +00:00
|
|
|
|
2015-08-19 16:56:46 +00:00
|
|
|
CFNumberGetValue(CFDictionaryGetValue(battery, CFSTR(kIOPSCurrentCapacityKey)),
|
|
|
|
kCFNumberDoubleType, ¤t);
|
|
|
|
CFNumberGetValue(CFDictionaryGetValue(battery, CFSTR(kIOPSMaxCapacityKey)),
|
|
|
|
kCFNumberDoubleType, &max);
|
2015-07-12 18:47:43 +00:00
|
|
|
|
2015-08-19 16:56:46 +00:00
|
|
|
*level = (current * 100.0) / max;
|
2015-07-12 18:47:43 +00:00
|
|
|
|
2015-08-19 16:56:46 +00:00
|
|
|
CFRelease(battery);
|
2015-07-12 18:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CFRelease(list);
|
|
|
|
CFRelease(power_sources);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|