instrumentation.lua 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. --Minetest
  2. --Copyright (C) 2016 T4im
  3. --
  4. --This program is free software; you can redistribute it and/or modify
  5. --it under the terms of the GNU Lesser General Public License as published by
  6. --the Free Software Foundation; either version 2.1 of the License, or
  7. --(at your option) any later version.
  8. --
  9. --This program is distributed in the hope that it will be useful,
  10. --but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. --MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. --GNU Lesser General Public License for more details.
  13. --
  14. --You should have received a copy of the GNU Lesser General Public License along
  15. --with this program; if not, write to the Free Software Foundation, Inc.,
  16. --51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  17. local format, pairs, type = string.format, pairs, type
  18. local core, get_current_modname = core, core.get_current_modname
  19. local profiler, sampler, get_bool_default = ...
  20. local instrument_builtin = get_bool_default("instrument.builtin", false)
  21. local register_functions = {
  22. register_globalstep = 0,
  23. register_playerevent = 0,
  24. register_on_placenode = 0,
  25. register_on_dignode = 0,
  26. register_on_punchnode = 0,
  27. register_on_generated = 0,
  28. register_on_newplayer = 0,
  29. register_on_dieplayer = 0,
  30. register_on_respawnplayer = 0,
  31. register_on_prejoinplayer = 0,
  32. register_on_joinplayer = 0,
  33. register_on_leaveplayer = 0,
  34. register_on_cheat = 0,
  35. register_on_chat_message = 0,
  36. register_on_player_receive_fields = 0,
  37. register_on_craft = 0,
  38. register_craft_predict = 0,
  39. register_on_protection_violation = 0,
  40. register_on_item_eat = 0,
  41. register_on_punchplayer = 0,
  42. register_on_player_hpchange = 0,
  43. }
  44. ---
  45. -- Create an unique instrument name.
  46. -- Generate a missing label with a running index number.
  47. --
  48. local counts = {}
  49. local function generate_name(def)
  50. local class, label, func_name = def.class, def.label, def.func_name
  51. if label then
  52. if class or func_name then
  53. return format("%s '%s' %s", class or "", label, func_name or ""):trim()
  54. end
  55. return format("%s", label):trim()
  56. elseif label == false then
  57. return format("%s", class or func_name):trim()
  58. end
  59. local index_id = def.mod .. (class or func_name)
  60. local index = counts[index_id] or 1
  61. counts[index_id] = index + 1
  62. return format("%s[%d] %s", class or func_name, index, class and func_name or ""):trim()
  63. end
  64. ---
  65. -- Keep `measure` and the closure in `instrument` lean, as these, and their
  66. -- directly called functions are the overhead that is caused by instrumentation.
  67. --
  68. local time, log = core.get_us_time, sampler.log
  69. local function measure(modname, instrument_name, start, ...)
  70. log(modname, instrument_name, time() - start)
  71. return ...
  72. end
  73. --- Automatically instrument a function to measure and log to the sampler.
  74. -- def = {
  75. -- mod = "",
  76. -- class = "",
  77. -- func_name = "",
  78. -- -- if nil, will create a label based on registration order
  79. -- label = "" | false,
  80. -- }
  81. local function instrument(def)
  82. if not def or not def.func then
  83. return
  84. end
  85. def.mod = def.mod or get_current_modname() or "??"
  86. local modname = def.mod
  87. local instrument_name = generate_name(def)
  88. local func = def.func
  89. if not instrument_builtin and modname == "*builtin*" then
  90. return func
  91. end
  92. return function(...)
  93. -- This tail-call allows passing all return values of `func`
  94. -- also called https://en.wikipedia.org/wiki/Continuation_passing_style
  95. -- Compared to table creation and unpacking it won't lose `nil` returns
  96. -- and is expected to be faster
  97. -- `measure` will be executed after func(...)
  98. local start = time()
  99. return measure(modname, instrument_name, start, func(...))
  100. end
  101. end
  102. local function can_be_called(func)
  103. -- It has to be a function or callable table
  104. return type(func) == "function" or
  105. ((type(func) == "table" or type(func) == "userdata") and
  106. getmetatable(func) and getmetatable(func).__call)
  107. end
  108. local function assert_can_be_called(func, func_name, level)
  109. if not can_be_called(func) then
  110. -- Then throw an *helpful* error, by pointing on our caller instead of us.
  111. error(format("Invalid argument to %s. Expected function-like type instead of '%s'.",
  112. func_name, type(func)), level + 1)
  113. end
  114. end
  115. ---
  116. -- Wraps a registration function `func` in such a way,
  117. -- that it will automatically instrument any callback function passed as first argument.
  118. --
  119. local function instrument_register(func, func_name)
  120. local register_name = func_name:gsub("^register_", "", 1)
  121. return function(callback, ...)
  122. assert_can_be_called(callback, func_name, 2)
  123. register_functions[func_name] = register_functions[func_name] + 1
  124. return func(instrument {
  125. func = callback,
  126. func_name = register_name
  127. }, ...)
  128. end
  129. end
  130. local function init_chatcommand()
  131. if get_bool_default("instrument.chatcommand", true) then
  132. local orig_register_chatcommand = core.register_chatcommand
  133. core.register_chatcommand = function(cmd, def)
  134. def.func = instrument {
  135. func = def.func,
  136. label = "/" .. cmd,
  137. }
  138. orig_register_chatcommand(cmd, def)
  139. end
  140. end
  141. end
  142. ---
  143. -- Start instrumenting selected functions
  144. --
  145. local function init()
  146. if get_bool_default("instrument.entity", true) then
  147. -- Explicitly declare entity api-methods.
  148. -- Simple iteration would ignore lookup via __index.
  149. local entity_instrumentation = {
  150. "on_activate",
  151. "on_deactivate",
  152. "on_step",
  153. "on_punch",
  154. "on_rightclick",
  155. "get_staticdata",
  156. }
  157. -- Wrap register_entity() to instrument them on registration.
  158. local orig_register_entity = core.register_entity
  159. core.register_entity = function(name, prototype)
  160. local modname = get_current_modname()
  161. for _, func_name in pairs(entity_instrumentation) do
  162. prototype[func_name] = instrument {
  163. func = prototype[func_name],
  164. mod = modname,
  165. func_name = func_name,
  166. label = prototype.label,
  167. }
  168. end
  169. orig_register_entity(name,prototype)
  170. end
  171. end
  172. if get_bool_default("instrument.abm", true) then
  173. -- Wrap register_abm() to automatically instrument abms.
  174. local orig_register_abm = core.register_abm
  175. core.register_abm = function(spec)
  176. spec.action = instrument {
  177. func = spec.action,
  178. class = "ABM",
  179. label = spec.label,
  180. }
  181. orig_register_abm(spec)
  182. end
  183. end
  184. if get_bool_default("instrument.lbm", true) then
  185. -- Wrap register_lbm() to automatically instrument lbms.
  186. local orig_register_lbm = core.register_lbm
  187. core.register_lbm = function(spec)
  188. spec.action = instrument {
  189. func = spec.action,
  190. class = "LBM",
  191. label = spec.label or spec.name,
  192. }
  193. orig_register_lbm(spec)
  194. end
  195. end
  196. if get_bool_default("instrument.global_callback", true) then
  197. for func_name, _ in pairs(register_functions) do
  198. core[func_name] = instrument_register(core[func_name], func_name)
  199. end
  200. end
  201. if get_bool_default("instrument.profiler", false) then
  202. -- Measure overhead of instrumentation, but keep it down for functions
  203. -- So keep the `return` for better optimization.
  204. profiler.empty_instrument = instrument {
  205. func = function() return end,
  206. mod = "*profiler*",
  207. class = "Instrumentation overhead",
  208. label = false,
  209. }
  210. end
  211. end
  212. return {
  213. register_functions = register_functions,
  214. instrument = instrument,
  215. init = init,
  216. init_chatcommand = init_chatcommand,
  217. }