#include "content/browser/power_save_blocker.h"
#include <IOKit/pwr_mgt/IOPMLib.h>
#include "base/bind.h"
#include "base/lazy_instance.h"
#include "base/mac/scoped_cftyperef.h"
#include "base/sys_string_conversions.h"
#include "base/threading/platform_thread.h"
#include "base/threading/thread.h"
#include "content/public/browser/browser_thread.h"
namespace {
struct PowerSaveBlockerLazyInstanceTraits {
static const bool kRegisterOnExit = false;
static const bool kAllowedToAccessOnNonjoinableThread = true;
static base::Thread* New(void* instance) {
base::Thread* thread = new (instance) base::Thread("PowerSaveBlocker");
thread->Start();
return thread;
}
static void Delete(base::Thread* instance) { }
};
base::LazyInstance<base::Thread, PowerSaveBlockerLazyInstanceTraits>
g_power_thread = LAZY_INSTANCE_INITIALIZER;
}
namespace content {
class PowerSaveBlocker::Delegate
: public base::RefCountedThreadSafe<PowerSaveBlocker::Delegate> {
public:
Delegate(PowerSaveBlockerType type, const std::string& reason)
: type_(type), reason_(reason), assertion_(kIOPMNullAssertionID) {}
void ApplyBlock();
void RemoveBlock();
private:
friend class base::RefCountedThreadSafe<Delegate>;
~Delegate() {}
PowerSaveBlockerType type_;
std::string reason_;
IOPMAssertionID assertion_;
};
void PowerSaveBlocker::Delegate::ApplyBlock() {
DCHECK_EQ(base::PlatformThread::CurrentId(),
g_power_thread.Pointer()->thread_id());
CFStringRef level = NULL;
switch (type_) {
case PowerSaveBlocker::kPowerSaveBlockPreventAppSuspension:
level = kIOPMAssertionTypeNoIdleSleep;
break;
case PowerSaveBlocker::kPowerSaveBlockPreventDisplaySleep:
level = kIOPMAssertionTypeNoDisplaySleep;
break;
default:
NOTREACHED();
break;
}
if (level) {
base::mac::ScopedCFTypeRef<CFStringRef> cf_reason(
base::SysUTF8ToCFStringRef(reason_));
IOReturn result = IOPMAssertionCreateWithName(level,
kIOPMAssertionLevelOn,
cf_reason,
&assertion_);
LOG_IF(ERROR, result != kIOReturnSuccess)
<< "IOPMAssertionCreate: " << result;
}
}
void PowerSaveBlocker::Delegate::RemoveBlock() {
DCHECK_EQ(base::PlatformThread::CurrentId(),
g_power_thread.Pointer()->thread_id());
if (assertion_ != kIOPMNullAssertionID) {
IOReturn result = IOPMAssertionRelease(assertion_);
LOG_IF(ERROR, result != kIOReturnSuccess)
<< "IOPMAssertionRelease: " << result;
}
}
PowerSaveBlocker::PowerSaveBlocker(PowerSaveBlockerType type,
const std::string& reason)
: delegate_(new Delegate(type, reason)) {
g_power_thread.Pointer()->message_loop()->PostTask(
FROM_HERE,
base::Bind(&Delegate::ApplyBlock, delegate_));
}
PowerSaveBlocker::~PowerSaveBlocker() {
g_power_thread.Pointer()->message_loop()->PostTask(
FROM_HERE,
base::Bind(&Delegate::RemoveBlock, delegate_));
}
}