gajim-plural/src/common/sleepy.py

67 lines
1.6 KiB
Python
Raw Normal View History

## common/sleepy.py
##
## Gajim Team:
## - Yann Le Boulanger <asterix@lagaule.org>
## - Vincent Hanquez <tab@snarc.org>
##
## Copyright (C) 2003-2005 Gajim Team
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
## by the Free Software Foundation; version 2 only.
##
## This program 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 General Public License for more details.
##
2004-01-02 16:21:02 +01:00
from common import gajim
2004-01-02 16:21:02 +01:00
STATE_UNKNOWN = 'OS probably not supported'
STATE_XAWAY = 'extanted away'
STATE_AWAY = 'away'
STATE_AWAKE = 'awake'
2004-01-02 16:21:02 +01:00
SUPPORTED = 1
try:
2005-05-20 16:03:02 +02:00
import common.idle as idle # when we launch gajim from sources
except:
2005-05-20 16:03:02 +02:00
try:
import idle # when Gajim is installed
except:
gajim.log.debug('Unable to load idle module')
2005-05-20 16:03:02 +02:00
SUPPORTED = 0
2004-01-02 16:21:02 +01:00
class Sleepy:
def __init__(self, interval1 = 60, interval2 = 120):
self.interval1 = interval1
self.interval2 = interval2
self.state = STATE_AWAKE ## assume were awake to stake with
try:
2005-05-20 16:03:02 +02:00
idle.init()
except:
SUPPORTED = 0
self.state = STATE_UNKNOWN
def poll(self):
if not SUPPORTED: return 0
2005-05-20 16:03:02 +02:00
idleTime = idle.getIdleSec()
if idleTime > self.interval2:
self.state = STATE_XAWAY
elif idleTime > self.interval1:
self.state = STATE_AWAY
else:
self.state = STATE_AWAKE
return 1
def getState(self):
return self.state
def setState(self,val):
self.state = val