2017-12-01 11:44:45 +00:00
|
|
|
// Copyright (c) 2017 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_LIB_POWER_OBSERVER_LINUX_H_
|
|
|
|
#define ATOM_BROWSER_LIB_POWER_OBSERVER_LINUX_H_
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "base/macros.h"
|
|
|
|
#include "base/memory/weak_ptr.h"
|
|
|
|
#include "base/power_monitor/power_observer.h"
|
|
|
|
#include "dbus/bus.h"
|
|
|
|
#include "dbus/message.h"
|
|
|
|
#include "dbus/object_proxy.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class PowerObserverLinux : public base::PowerObserver {
|
|
|
|
public:
|
|
|
|
PowerObserverLinux();
|
2018-05-16 19:12:45 +00:00
|
|
|
~PowerObserverLinux() override;
|
2017-12-01 11:44:45 +00:00
|
|
|
|
2018-02-05 06:28:58 +00:00
|
|
|
protected:
|
2017-12-21 10:49:54 +00:00
|
|
|
void BlockSleep();
|
|
|
|
void UnblockSleep();
|
2017-12-07 13:10:40 +00:00
|
|
|
void BlockShutdown();
|
|
|
|
void UnblockShutdown();
|
2018-02-05 06:28:58 +00:00
|
|
|
|
2018-02-05 06:49:43 +00:00
|
|
|
void SetShutdownHandler(base::Callback<bool()> should_shutdown);
|
2017-12-07 13:10:40 +00:00
|
|
|
|
2017-12-01 11:44:45 +00:00
|
|
|
private:
|
|
|
|
void OnLoginServiceAvailable(bool available);
|
|
|
|
void OnInhibitResponse(base::ScopedFD* scoped_fd, dbus::Response* response);
|
|
|
|
void OnPrepareForSleep(dbus::Signal* signal);
|
2017-12-07 13:10:40 +00:00
|
|
|
void OnPrepareForShutdown(dbus::Signal* signal);
|
2017-12-01 11:44:45 +00:00
|
|
|
void OnSignalConnected(const std::string& interface,
|
|
|
|
const std::string& signal,
|
|
|
|
bool success);
|
|
|
|
|
2018-02-05 06:49:43 +00:00
|
|
|
base::Callback<bool()> should_shutdown_;
|
|
|
|
|
2017-12-01 11:44:45 +00:00
|
|
|
scoped_refptr<dbus::Bus> bus_;
|
|
|
|
scoped_refptr<dbus::ObjectProxy> logind_;
|
|
|
|
std::string lock_owner_name_;
|
|
|
|
base::ScopedFD sleep_lock_;
|
2017-12-21 11:12:25 +00:00
|
|
|
base::ScopedFD shutdown_lock_;
|
2017-12-01 11:44:45 +00:00
|
|
|
base::WeakPtrFactory<PowerObserverLinux> weak_ptr_factory_;
|
2018-02-05 06:28:58 +00:00
|
|
|
|
2017-12-01 11:44:45 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(PowerObserverLinux);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_LIB_POWER_OBSERVER_LINUX_H_
|