]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - lib/rbot/timer.rb
Fix timer handling when Actions raise errors
[user/henk/code/ruby/rbot.git] / lib / rbot / timer.rb
1 module Timer
2
3   # timer event, something to do and when/how often to do it
4   class Action
5
6     # when this action is due next (updated by tick())
7     attr_reader :in
8
9     # is this action blocked? if so it won't be run
10     attr_accessor :blocked
11
12     # period:: how often (seconds) to run the action
13     # data::   optional data to pass to the proc
14     # once::   optional, if true, this action will be run once then removed
15     # func::   associate a block to be called to perform the action
16     #
17     # create a new action
18     def initialize(period, data=nil, once=false, &func)
19       @blocked = false
20       @period = period
21       @in = period
22       @func = func
23       @data = data
24       @once = once
25       @last_tick = Time.new
26     end
27
28     def tick
29       diff = Time.new - @last_tick
30       @in -= diff
31       @last_tick = Time.new
32     end
33
34     def inspect
35       "#<#{self.class}:#{@period}s:#{@once ? 'once' : 'repeat'}>"
36     end
37
38     def due?
39       @in <= 0
40     end
41
42     # run the action by calling its proc
43     def run
44       @in += @period
45       # really short duration timers can overrun and leave @in negative,
46       # for these we set @in to @period
47       @in = @period if @in <= 0
48       begin
49         if(@data)
50           @func.call(@data)
51         else
52           @func.call
53         end
54       rescue => e
55         error "Timer action #{self.inspect} with function #{@func.inspect} failed with error #{e.inspect}"
56         error e.backtrace.join("\n")
57         # TODO maybe we want to block this Action?
58       end
59       return @once
60     end
61
62     # reschedule the Action to change its period
63     def reschedule(new_period)
64       @period = new_period
65       @in = new_period
66     end
67   end
68
69   # timer handler, manage multiple Action objects, calling them when required.
70   # The timer must be ticked by whatever controls it, i.e. regular calls to
71   # tick() at whatever granularity suits your application's needs.
72   #
73   # Alternatively you can call run(), and the timer will spawn a thread and
74   # tick itself, intelligently shutting down the thread if there are no
75   # pending actions.
76   class Timer
77     def initialize(granularity = 0.1)
78       @granularity = granularity
79       @timers = Hash.new
80       @handle = 0
81       @lasttime = 0
82       @should_be_running = false
83       @thread = false
84       @next_action_time = 0
85     end
86
87     # period:: how often (seconds) to run the action
88     # data::   optional data to pass to the action's proc
89     # func::   associate a block with add() to perform the action
90     #
91     # add an action to the timer
92     def add(period, data=nil, &func)
93       debug "adding timer, period #{period}"
94       @handle += 1
95       @timers[@handle] = Action.new(period, data, &func)
96       start_on_add
97       return @handle
98     end
99
100     # period:: how long (seconds) until the action is run
101     # data::   optional data to pass to the action's proc
102     # func::   associate a block with add() to perform the action
103     #
104     # add an action to the timer which will be run just once, after +period+
105     def add_once(period, data=nil, &func)
106       debug "adding one-off timer, period #{period}"
107       @handle += 1
108       @timers[@handle] = Action.new(period, data, true, &func)
109       start_on_add
110       return @handle
111     end
112
113     # remove action with handle +handle+ from the timer
114     def remove(handle)
115       @timers.delete(handle)
116     end
117
118     # block action with handle +handle+
119     def block(handle)
120       @timers[handle].blocked = true
121     end
122
123     # unblock action with handle +handle+
124     def unblock(handle)
125       @timers[handle].blocked = false
126     end
127
128     # reschedule action with handle +handle+ to change its period
129     def reschedule(handle, period)
130       @timers[handle].reschedule(period)
131     end
132
133     # you can call this when you know you're idle, or you can split off a
134     # thread and call the run() method to do it for you.
135     def tick
136       if(@lasttime == 0)
137         # don't do anything on the first tick
138         @lasttime = Time.now
139         return
140       end
141       @next_action_time = 0
142       diff = (Time.now - @lasttime).to_f
143       @lasttime = Time.now
144       @timers.each { |key,timer|
145         timer.tick
146         next if timer.blocked
147         if(timer.due?)
148           if(timer.run)
149             # run once
150             @timers.delete(key)
151           end
152         end
153         if @next_action_time == 0 || timer.in < @next_action_time
154           @next_action_time = timer.in
155         end
156       }
157       #debug "ticked. now #{@timers.length} timers remain"
158       #debug "next timer due at #{@next_action_time}"
159     end
160
161     # for backwards compat - this is a bit primitive
162     def run(granularity=0.1)
163       while(true)
164         sleep(granularity)
165         tick
166       end
167     end
168
169     def running?
170       @thread && @thread.alive?
171     end
172
173     # return the number of seconds until the next action is due, or 0 if
174     # none are outstanding - will only be accurate immediately after a
175     # tick()
176     def next_action_time
177       @next_action_time
178     end
179
180     # start the timer, it spawns a thread to tick the timer, intelligently
181     # shutting down if no events remain and starting again when needed.
182     def start
183       return if running?
184       @should_be_running = true
185       start_thread unless @timers.empty?
186     end
187
188     # stop the timer from ticking
189     def stop
190       @should_be_running = false
191       stop_thread
192     end
193
194     private
195
196     def start_on_add
197       if running?
198         stop_thread
199         start_thread
200       elsif @should_be_running
201         start_thread
202       end
203     end
204
205     def stop_thread
206       return unless running?
207       @thread.kill
208     end
209
210     def start_thread
211       return if running?
212       @thread = Thread.new do
213         while(true)
214           tick
215           exit if @timers.empty?
216           sleep(@next_action_time)
217         end
218       end
219     end
220
221   end
222 end