2013-12-27 16:00:22 +01:00
|
|
|
# Copyright (C) 2014, Sugarlabs
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library 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
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
import os
|
|
|
|
import logging
|
|
|
|
|
|
|
|
_POWERD_INHIBIT_DIR = '/var/run/powerd-inhibit-suspend'
|
|
|
|
|
|
|
|
_power_manager = None
|
|
|
|
|
|
|
|
|
|
|
|
def get_power_manager():
|
|
|
|
global _power_manager
|
|
|
|
if _power_manager is None:
|
|
|
|
_power_manager = PowerManager()
|
|
|
|
return _power_manager
|
|
|
|
|
|
|
|
|
|
|
|
class PowerManager():
|
|
|
|
""" control of powerd idle suspend,
|
|
|
|
reference counted,
|
|
|
|
does nothing if powerd is not present
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self._suspend_inhibit_counter = 0
|
2015-05-13 01:02:10 +02:00
|
|
|
self._path = os.path.join(_POWERD_INHIBIT_DIR, str(os.getpid()))
|
2013-12-27 16:00:22 +01:00
|
|
|
|
|
|
|
def __del__(self):
|
|
|
|
self._remove_flag_file()
|
|
|
|
|
|
|
|
def suspend_breaks_collaboration(self):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def inhibit_suspend(self):
|
|
|
|
if not os.path.exists(_POWERD_INHIBIT_DIR):
|
|
|
|
return
|
|
|
|
|
|
|
|
if self._suspend_inhibit_counter == 0:
|
|
|
|
try:
|
2015-05-13 01:02:10 +02:00
|
|
|
with open(self._path, 'w') as flag_file:
|
2013-12-27 16:00:22 +01:00
|
|
|
flag_file.write('')
|
|
|
|
except IOError:
|
|
|
|
logging.error("Inhibit Suspend: Could not create file %s",
|
2015-05-13 01:02:10 +02:00
|
|
|
self._path)
|
2013-12-27 16:00:22 +01:00
|
|
|
|
|
|
|
self._suspend_inhibit_counter += 1
|
|
|
|
|
|
|
|
def restore_suspend(self):
|
|
|
|
self._suspend_inhibit_counter -= 1
|
|
|
|
if self._suspend_inhibit_counter > 0:
|
|
|
|
return
|
|
|
|
self._remove_flag_file()
|
|
|
|
|
|
|
|
def is_suspend_inhibited(self):
|
|
|
|
return self._suspend_inhibit_counter > 0
|
|
|
|
|
|
|
|
def shutdown(self):
|
|
|
|
"""
|
|
|
|
This method clean the flag file if exists,
|
|
|
|
is already called when the activity is closed.
|
|
|
|
"""
|
|
|
|
self._remove_flag_file()
|
|
|
|
|
|
|
|
def _remove_flag_file(self):
|
|
|
|
try:
|
2015-05-13 01:02:10 +02:00
|
|
|
os.unlink(self._path)
|
2014-01-31 16:30:43 +01:00
|
|
|
except OSError:
|
2015-05-13 01:03:23 +02:00
|
|
|
pass
|
2013-12-27 16:00:22 +01:00
|
|
|
self._suspend_inhibit_counter = 0
|