Advertisement
Wobbo

CC-Logging

Jan 6th, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.00 KB | None | 0 0
  1. --- An API for logging in computer craft, based of lua logging.
  2. -- @classmod logging
  3. -- @author Wobbo
  4. -- @alias mt
  5.  
  6. local mt = {}
  7. mt.__index = mt
  8.  
  9. --- The DEBUG level designates fine-grained informational events that are most useful to debug an application.
  10. DEBUG = "DEBUG"
  11.  
  12. --- The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.
  13. INFO = "INFO"
  14.  
  15. --- The WARN level designates potentially harmful situations.
  16. WARN = "WARN"
  17.  
  18. --- The ERROR level designates error events that still allow the application to continue running.
  19. ERROR = "ERROR"
  20.  
  21. --- The FATAL level designates very severe error events that would lead the application to abort.
  22. FATAL = "FATAL"
  23.  
  24. --- A table to keep track of the order between levels. There is a field for each valid level. In order to be logged, the order of a level has to be equal to or greater than the current logging level.
  25. -- @usage logging.order[logging.DEBUG] -- returns the order of DEBUG.
  26. -- @field DEBUG The order of `logging.DEBUG`
  27. -- @field INFO The order of `logging.INFO`
  28. -- @field WARN The order of `logging.WARN`
  29. -- @field ERROR The order of `logging.ERROR`
  30. -- @field FATAL The order of `logging.FATAL`
  31. order = {DEBUG = 1, INFO = 2, WARN = 3, ERROR = 4, FATAL = 5}
  32.  
  33. function mt.__gc(self) if self.file then self.file:close() end end
  34.  
  35. local function newArgs(func, file, format, level)
  36.     local obj = setmetatable({}, mt)
  37.     obj.func = func
  38.     if file then
  39.         local handle
  40.         if not fs.exists(file) then
  41.             handle = io.open(file, "w")
  42.         else
  43.             handle = io.open(file, "a")
  44.         end
  45.         obj.file = handle
  46.     end
  47.     obj.format = format or "%date %time %level %message"
  48.     obj:setLevel(level or INFO)
  49.     return obj
  50. end
  51.  
  52. --- Create a new logging object.
  53. -- Can also be called as `logging.new{func = func, file = file, format = format}`. Either a file or a function is advised, but not obligatory.
  54. -- @function new
  55. -- @constructor
  56. -- @tparam function func The function that is called when a message is logged. This function recieves a self argument, the level that is calles with and the message that is logged.
  57. -- @string file The file that is logged to.
  58. -- @string format The format that is used for logging to a file. The day can be inserted by `%date`, the time by using `%time`, the level by using `%level` and the message itself by using `%message`.
  59. -- @string level The initial level for the `logging` object.
  60. -- @treturn logging The new logging object.
  61. -- @usage logger = logging.new{func = function(level, message)
  62. --     print(level..": "..message)
  63. --   end,
  64. --   file = "usage.log",
  65. --   format = "%date %time Usage: %level %message"}
  66. -- @usage logger = logging.new(function(level, message)
  67. --   print(message)
  68. --   os.queueEvent("log Usage", level, message)
  69. -- end)
  70. -- @usage logger = logging.new{function(self, level, message)
  71. --   print(level..": "..message) end,
  72. --   level = logging.DEBUG}
  73. function new(...)
  74.     local t
  75.     if type(...) == "table" then
  76.         t = ...
  77.     else
  78.         t = {...}
  79.     end
  80.     return newArgs(t.func or t[1], t.file or t[2], t.timeFmt or t[3], t.level or t[4])
  81. end
  82.  
  83. --- Sets the minimum level needed for a message to be logged. Default is `INFO`.
  84. -- @string level The minimum level.
  85. -- @usage logger:setLevel(logging.WARN)
  86. function mt:setLevel(level)
  87.     if order[level] then
  88.         self.level = level
  89.     else
  90.         error("undefinded level "..level)
  91.     end
  92. end
  93.  
  94. --- Logs a message if the specified level is higher then the loggers level.
  95. -- This function will call the
  96. -- @string level The level of the message.
  97. -- @string message The message that need to be logged.
  98. -- @usage logger:log(logging.INFO, "Prepared the environment")
  99. function mt:log(level, message)
  100.     if order[level] < order[self.level] then return end
  101.     if self.func then
  102.         self:func(level, message)
  103.     end
  104.     if self.file then
  105.         self.file:write(prepMsg(self.format, message, os.day(), textutils.formatTime(os.time(), true), level)..'\n')
  106.         self.file:flush()
  107.     end
  108. end
  109.  
  110. --- Log a message with DEBUG level.
  111. -- @string message The message to be logged.
  112. -- @usage logger:debug("Found the logging API")
  113. -- @see log
  114. -- @see DEBUG
  115. function mt:debug(message)
  116.     self:log(DEBUG, message)
  117. end
  118.  
  119.  
  120. --- Log a message with INFO level.
  121. -- @string message The message to be logged.
  122. -- @usage logger:info("Prepared the invironment")
  123. -- @see log
  124. -- @see INFO
  125. function mt:info(message)
  126.     self:log(INFO, message)
  127. end
  128.  
  129. --- Log a message with WARN level.
  130. -- @string message The message to be logged.
  131. -- @usage logger:warn("Expected integer, got string")
  132. -- @see log
  133. -- @see WARN
  134. function mt:warn(message)
  135.     self:log(WARN, message)
  136. end
  137.  
  138. --- Log a message with ERROR level.
  139. -- @string message The message to be logged.
  140. -- @usage logger:error("No modem found!")
  141. -- @see log
  142. -- @see ERROR
  143. function mt:error(message)
  144.     self:log(ERROR, message)
  145. end
  146.  
  147. --- Log a message with FATAL level.
  148. -- @string message The message to be logged.
  149. -- @usage logger:fatal("No fuel found to refuel. Sending distress signal and aborting.")
  150. -- @see log
  151. -- @see FATAL
  152. function mt:fatal(message)
  153.     self:log(FATAL, message)
  154. end
  155.  
  156.  
  157. --- Prepare a message using a specified pattern.
  158. -- @constructor
  159. -- @tparam string pattern The pattern used for the message. Defaults to `"%date %time %level %message"`. The day can be inserted by `%date`, the time by using `%time`, the level by using `%level` and the message itself by using `%message`.
  160. -- @string message The message that needs to be formatted. The value for `%message`
  161. -- @number date The value for `%date`.
  162. -- @string time The value for `%time`. This needs to be formatted beforehand.
  163. -- @string level The value for `%level`.
  164. -- @treturn string The prepared message.
  165. function prepMsg(pattern, message, date, time, level)
  166.     local logMsg = pattern or "%date %time %level %message"
  167.     message = string.gsub(message, "%%", "%%%%")
  168.     logMsg = string.gsub(logMsg,"%%date", date)
  169.     logMsg = string.gsub(logMsg, "%%time", time)
  170.     logMsg = string.gsub(logMsg, "%%level", level)
  171.     return string.gsub(logMsg, "%%message", message)
  172. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement