-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBasicTest.py
More file actions
65 lines (53 loc) · 1.77 KB
/
Copy pathBasicTest.py
File metadata and controls
65 lines (53 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import os
import sys
from time import time, localtime, sleep
sys.path.insert(1, os.path.abspath(os.path.join(os.pardir, os.pardir)))
from TaskKit.Scheduler import Scheduler
from TaskKit.Task import Task
class SimpleTask(Task):
def run(self):
if self.proceed():
print self.name(), time()
# print "Increasing period"
# self.handle().setPeriod(self.handle().period() + 2)
else:
print "Should not proceed", self.name()
print "proceed for %s=%s, isRunning=%s" % (
self.name(), self.proceed(), self._handle._isRunning)
class LongTask(Task):
def run(self):
while 1:
sleep(2)
print "proceed for %s=%s, isRunning=%s" % (
self.name(), self.proceed(), self._handle._isRunning)
if self.proceed():
print ">>", self.name(), time()
else:
print "Should not proceed:", self.name()
return
def main():
scheduler = Scheduler()
scheduler.start()
scheduler.addPeriodicAction(time(), 1, SimpleTask(), 'SimpleTask1')
scheduler.addTimedAction(time()+3, SimpleTask(), 'SimpleTask2')
scheduler.addActionOnDemand(LongTask(), 'LongTask')
sleep(4)
print "Demanding 'LongTask'"
scheduler.runTaskNow('LongTask')
sleep(1)
print "Stopping 'LongTask'"
scheduler.stopTask('LongTask')
sleep(2)
print "Deleting 'SimpleTask1'"
scheduler.unregisterTask('SimpleTask1')
sleep(2)
print "Waiting one minute for 'DailyTask'"
scheduler.addDailyAction(
localtime()[3], localtime()[4]+1, SimpleTask(), "DailyTask")
sleep(62)
print "Calling stop"
scheduler.stop()
sleep(2)
print "Test Complete"
if __name__ == '__main__':
main()