move core files to weboob.core
This commit is contained in:
parent
944662c4bf
commit
1955d1be59
25 changed files with 66 additions and 44 deletions
|
|
@ -1,84 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010 Romain Bignon, Christophe Benz
|
||||
#
|
||||
# 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 3 of the License.
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
import logging
|
||||
from threading import Timer, Event
|
||||
|
||||
|
||||
__all__ = ['Scheduler']
|
||||
|
||||
|
||||
class IScheduler(object):
|
||||
def schedule(self, interval, function, *args):
|
||||
raise NotImplementedError()
|
||||
|
||||
def repeat(self, interval, function, *args):
|
||||
raise NotImplementedError()
|
||||
|
||||
def run(self):
|
||||
raise NotImplementedError()
|
||||
|
||||
def want_stop(self):
|
||||
raise NotImplementedError()
|
||||
|
||||
class Scheduler(IScheduler):
|
||||
def __init__(self):
|
||||
self.stop_event = Event()
|
||||
self.count = 0
|
||||
self.queue = {}
|
||||
|
||||
def schedule(self, interval, function, *args):
|
||||
if self.stop_event.isSet():
|
||||
return
|
||||
|
||||
self.count += 1
|
||||
logging.debug('function "%s" will be called in %s seconds' % (function.__name__, interval))
|
||||
timer = Timer(interval, function, args)
|
||||
timer.start()
|
||||
self.queue[self.count] = timer
|
||||
return self.count
|
||||
|
||||
def repeat(self, interval, function, *args):
|
||||
return self._repeat(True, interval, function, *args)
|
||||
|
||||
def _repeat(self, first, interval, function, *args):
|
||||
return self.schedule(0 if first else interval, self._repeated_cb, interval, function, args)
|
||||
|
||||
def _wait_to_stop(self):
|
||||
self.want_stop()
|
||||
for e in self.queue.itervalues():
|
||||
e.cancel()
|
||||
e.join()
|
||||
|
||||
def run(self):
|
||||
try:
|
||||
while 1:
|
||||
self.stop_event.wait(0.1)
|
||||
except KeyboardInterrupt:
|
||||
self._wait_to_stop()
|
||||
raise
|
||||
else:
|
||||
self._wait_to_stop()
|
||||
return True
|
||||
|
||||
def want_stop(self):
|
||||
self.stop_event.set()
|
||||
|
||||
def _repeated_cb(self, interval, function, args):
|
||||
function(*args)
|
||||
self._repeat(False, interval, function, *args)
|
||||
Loading…
Add table
Add a link
Reference in a new issue