Commit graph

44 commits

Author SHA1 Message Date
Kim Alvefur
43531740f9 util: Prefix module imports with prosody namespace 2023-03-17 16:23:16 +01:00
Kim Alvefur
2f4d12286f Merge 0.11->trunk 2021-01-08 23:56:27 +01:00
Kim Alvefur
365e5b0cb4 util.timer: Ensure timers can't run more than once per tick (fixes #1620)
See longer explanation in 2c559953ad41
2021-01-08 23:23:56 +01:00
Kim Alvefur
99b26ab45c util.timer: Defer to selected net.server if it implements this API
E.g. net.server_epoll is very close and could easily be adapted to
support this.
2020-06-29 16:37:58 +02:00
Matthew Wild
f5f6460b2e Many things: switch from hacky multi-arg xpcall implementations to a standard util.xpcall 2018-10-26 19:32:00 +01:00
Kim Alvefur
9c48fc4726 util.{async,timer}: Move sleep() to reduce dependencies of util.timer 2018-07-08 00:37:01 +02:00
Matthew Wild
9f9b1f9fda util.timer: Ensure we don't try to schedule negative timeouts (which rightly upset libevent). Fixes #1135 2018-04-29 21:43:39 +01:00
Kim Alvefur
2fa049d2e1 util.timer: Move sleep() here from util.async
This is to solve a indirect dependency issue where net.server was initialized before the config was read
2018-03-23 21:18:15 +01:00
Kim Alvefur
43b814a83b vairious: Add annotation when an empty environment is set [luacheck] 2018-02-28 20:06:26 +01:00
Kim Alvefur
c160b029b0 Merge 0.10->trunk 2017-03-20 03:11:27 +01:00
Kim Alvefur
83d1e9570a util.statistics,statsd,throttle,timer: Replace dependency on LuaSockect with util.time for precision time 2017-03-20 00:48:28 +01:00
Kim Alvefur
b3d8c070f9 util.timer: Reschedule timers from stop() if the next pending event is stopped 2015-12-23 11:43:39 +01:00
Kim Alvefur
628bbf628a util.timer: If possible, close the existing timer handle in order to have only one 2015-11-22 17:25:44 +01:00
Kim Alvefur
13c5628054 util.timer: Expire timer instance if another instance is already set to take care of the next scheduled event 2015-11-22 17:20:20 +01:00
Kim Alvefur
dfe8a2fd7d util.timer: Keep count of how many timer instances are active 2015-11-22 17:18:29 +01:00
Kim Alvefur
d00deda2fd util.timer: Fix indentation 2015-09-18 16:08:35 +02:00
Kim Alvefur
6ef7c4d808 Merge 0.10->trunk 2015-08-20 13:05:22 +02:00
Kim Alvefur
eaa823a597 util.*: Remove use of module() function, make all module functions local and return them in a table at the end 2015-02-21 10:36:37 +01:00
daurnimator
e51cc17dcb Move timer code out of util.timer and into relevant net.server backends 2014-10-20 16:13:24 -04:00
daurnimator
c84cd87f94 util/timer: Re-set params when timer is rescheduled 2013-11-06 12:56:18 -05:00
Waqas Hussain
33de95fb8a util.timer: Import all require upvalues. 2013-10-30 17:58:17 -04:00
Waqas Hussain
c782ef5a75 util.timer: Fix another variable name typo (thanks again zash). 2013-10-30 17:56:00 -04:00
Waqas Hussain
053117d38d util.timer: Fix variable name typo. 2013-10-30 17:51:37 -04:00
Waqas Hussain
495b904d72 util.timer: Updated to use util.indexedbheap to provide a more complete API. Timers can now be stopped or rescheduled. Callbacks are now pcall'd. Adding/removing timers from within timer callbacks works better. Optional parameter can be passed when creating timer which gets passed to callback, eliminating the need for closures in various timer uses. Timers are now much more lightweight. 2013-10-30 17:44:42 -04:00
Florian Zeitz
1d833bb807 Remove all trailing whitespace 2013-08-09 17:48:21 +02:00
Waqas Hussain
515d0ff00e util.timer: Always pass the current time to timer callbacks. 2012-05-12 21:46:54 +05:00
Matthew Wild
5e53b5f47c util.timer: Remove unnecessary require calls, fixes a traceback (thanks nulani) 2012-05-03 18:59:06 +01:00
Matthew Wild
ffa939698b net.server, net.timer, net.server_select: Rearrange dependencies between these three modules. server.addtimer() is no longer a public function (renamed to _addtimer) and is not available at all from server_event (compat code removed to prevent traceback) (thanks Nulani) 2012-05-03 16:48:34 +01:00
Matthew Wild
465460b13f util.timer: Remove unused function imports 2012-04-28 02:41:53 +01:00
Matthew Wild
70cb616c9c util.timer: Variable name change (func -> callback) 2011-11-03 12:47:52 +00:00
Matthew Wild
3f7fda7079 util.timer: Fix corner case of timer not repeating if it returns <= 0 2011-09-22 15:48:56 +01:00
Waqas Hussain
02b951a1a8 util.timer: Activate higher timer precision. 2010-12-02 22:41:26 +05:00
Matthew Wild
90116b3c35 util.timer: When using libevent hold onto the event handle to stop it being collected (and the timer stopping). Fixes BOSH ghosts, thanks Flo, niekie, waqas. 2010-04-07 21:00:20 +01:00
Matthew Wild
46c0b8c7f9 Merge 0.6->0.7 2010-03-22 17:24:55 +00:00
Matthew Wild
2bc0606453 Update copyright headers for 2010 2010-03-22 17:06:15 +00:00
Matthew Wild
d7d5b34c60 util.timer: Use luaevent's built-in method of repeating an event (fixes a weird crash) 2009-12-17 16:52:39 +00:00
Matthew Wild
723b03c6bf util.timer: Fix libevent timers (event.base doesn't exist...) 2009-11-21 03:16:14 +00:00
Matthew Wild
89fa12376a util.timer: Use libevent for lightweight timers if available and configured (use_libevent option) 2009-11-21 02:40:21 +00:00
Matthew Wild
59a69e124e util.timer: Pass current_time to timer callbacks 2009-10-03 02:33:33 +01:00
Matthew Wild
118883d655 Remove version number from copyright headers 2009-07-10 03:11:45 +01:00
Matthew Wild
c80f91dc02 0.3->0.4 2009-03-20 20:16:25 +00:00
Matthew Wild
0c8bb8e89f util.timer: More small fixes I forgot to commit 2009-02-26 22:17:55 +00:00
Matthew Wild
d2631d39ca util.timer: Fix crash when loaded but no tasks set, fix skipping some tasks when multiple set, and one removed 2009-02-26 21:00:42 +00:00
Waqas Hussain
97ea70c7d3 Added util/timer.lua - a timer API 2009-02-21 01:13:53 +05:00