Class: Beaker::Logger
- Inherits:
-
Object
- Object
- Beaker::Logger
- Defined in:
- lib/beaker/logger.rb
Overview
The Beaker Logger class This class handles message reporting for Beaker, it reports based upon a provided log level to a given destination (be it a string or file)
Constant Summary collapse
- NORMAL =
"\e[00;00m"
- BRIGHT_NORMAL =
"\e[00;01m"
- BLACK =
"\e[00;30m"
- RED =
"\e[00;31m"
- GREEN =
"\e[00;32m"
- YELLOW =
"\e[00;33m"
- BLUE =
"\e[00;34m"
- MAGENTA =
"\e[00;35m"
- CYAN =
"\e[00;36m"
- WHITE =
"\e[00;37m"
- GREY =
Some terms can’t handle grey, use normal
"\e[00;00m"
- BRIGHT_RED =
"\e[01;31m"
- BRIGHT_GREEN =
"\e[01;32m"
- BRIGHT_YELLOW =
"\e[01;33m"
- BRIGHT_BLUE =
"\e[01;34m"
- BRIGHT_MAGENTA =
"\e[01;35m"
- BRIGHT_CYAN =
"\e[01;36m"
- BRIGHT_WHITE =
"\e[01;37m"
- NONE =
""
- LOG_LEVELS =
The defined log levels. Each log level also reports messages at levels lower than itself
{ :trace => 6, :debug => 5, :verbose => 3, :info => 2, :notify => 1, :warn => 0, }
Instance Attribute Summary collapse
-
#color ⇒ Object
Returns the value of attribute color.
-
#destinations ⇒ Object
Returns the value of attribute destinations.
-
#last_result ⇒ Object
The results of the most recently run command.
-
#line_prefix ⇒ Object
Determines the spacing that happens before an output line.
-
#log_colors ⇒ Object
Returns the value of attribute log_colors.
-
#log_level ⇒ Object
Returns the value of attribute log_level.
Class Method Summary collapse
-
.generate_dated_log_folder(base_dir, log_prefix, timestamp) ⇒ String
Utility method to centralize dated log folder generation.
-
.strip_color_codes(text) ⇒ String
Remove color codes from provided string.
Instance Method Summary collapse
-
#add_destination(dest) ⇒ Object
Construct an array of open steams for printing log messages to.
-
#color_host_output(*args) ⇒ Object
Custom reporting for messages generated by host SUTs - to preserve output Will not print unless we are at LOG_LEVELS ‘verbose’ or higher.
-
#convert(string) ⇒ Object
Remove invalid UTF-8 codes from provided string(s).
-
#debug(*args) ⇒ Object
Report a debug message.
-
#error(*args) ⇒ Object
Report an error message.
-
#get_sublog ⇒ Object
Return the contents of the sublog.
-
#host_output(*args) ⇒ Object
Custom reporting for messages generated by host SUTs.
-
#info(*args) ⇒ Object
Report an info message.
-
#initialize(*args) ⇒ Logger
constructor
Initialization of the Logger class.
-
#is_debug? ⇒ Boolean
Are we at LOG_LEVELS debug?.
-
#is_info? ⇒ Boolean
Are we at LOG_LEVELS info?.
-
#is_notify? ⇒ Boolean
Are we at LOG_LEVELS notify?.
-
#is_trace? ⇒ Boolean
Are we at LOG_LEVELS trace?.
-
#is_verbose? ⇒ Boolean
Are we at LOG_LEVELS verbose?.
-
#is_warn? ⇒ Boolean
Are we at LOG_LEVELS warn?.
-
#notify(*args) ⇒ Object
Report a notify message.
-
#optionally_color(color_code, msg, add_newline = true) ⇒ Object
Print the provided message to the set destination streams, using color codes if appropriate.
-
#perf_output(*args) ⇒ Object
Custom reporting for performance/sysstat messages Will not print unless we are at LOG_LEVELS ‘debug’ or higher.
-
#prefix_log_line(line) ⇒ String
Prefixes a log line with the appropriate amount of whitespace for the level of test that’s running.
-
#pretty_backtrace(backtrace = caller(1)) ⇒ String
Utility method to get the current call stack and format it to a human-readable string (which some IDEs/editors will recognize as links to the line numbers in the trace).
-
#quiet(off = true) ⇒ Object
Turn on/off STDOUT logging.
-
#remove_destination(dest) ⇒ Object
Remove a steam from the destinations array based upon it’s name or file path.
-
#start_sublog ⇒ Object
Create a new StringIO log to track the current output.
-
#strip_colors_from(lines) ⇒ Array<String>
Strip any color codes from provided string(s).
-
#success(*args) ⇒ Object
Report a success message.
-
#trace(*args) ⇒ Object
Report a trace message.
-
#warn(*args) ⇒ Object
Report a warning message.
-
#with_indent ⇒ Object
Indent the step level for the duration of block.
Constructor Details
#initialize(dests) ⇒ Logger #initialize(dests, options) ⇒ Logger
Initialization of the Logger class
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
# File 'lib/beaker/logger.rb', line 58 def initialize(*args) = args.last.is_a?(Hash) ? args.pop : {} @color = [:color] @sublog = nil @log_level = case [:log_level] when /trace/i, :trace :trace when /debug/i, :debug :debug when /info/i, :info :info when /notify/i, :notify :notify when /warn/i, :warn :warn else :verbose end @last_result = nil @line_prefix = '' @destinations = [] @log_colors = { :error => RED, :warn => BRIGHT_RED, :success => MAGENTA, :notify => BLUE, :info => GREEN, :debug => WHITE, :trace => BRIGHT_YELLOW, :perf => BRIGHT_MAGENTA, :host => YELLOW, } @log_colors.merge!([:log_colors]) if [:log_colors] # if a user overrides any of the log_colors, we will no longer # override the colors at all on a CI build. This is b/c it is # assumed that if a user is overriding the colors, they know # what they are doing. We could potentially add an additional # option a user can pass to be explicit about still allowing # the override. unless [:log_colors] # Jenkins exposed variable - should be present on the slave directing # the beaker run ci_build = ENV['BUILD_NUMBER'] != nil @log_colors[:notify] = NORMAL if ci_build @log_colors[:info] = NORMAL if ci_build end dests = args dests << STDOUT unless [:quiet] dests.uniq! dests.each { |dest| add_destination(dest) } end |
Instance Attribute Details
#color ⇒ Object
Returns the value of attribute color.
43 44 45 |
# File 'lib/beaker/logger.rb', line 43 def color @color end |
#destinations ⇒ Object
Returns the value of attribute destinations.
43 44 45 |
# File 'lib/beaker/logger.rb', line 43 def destinations @destinations end |
#last_result ⇒ Object
The results of the most recently run command
8 9 10 |
# File 'lib/beaker/logger.rb', line 8 def last_result @last_result end |
#line_prefix ⇒ Object
Determines the spacing that happens before an output line
11 12 13 |
# File 'lib/beaker/logger.rb', line 11 def line_prefix @line_prefix end |
#log_colors ⇒ Object
Returns the value of attribute log_colors.
43 44 45 |
# File 'lib/beaker/logger.rb', line 43 def log_colors @log_colors end |
#log_level ⇒ Object
Returns the value of attribute log_level.
43 44 45 |
# File 'lib/beaker/logger.rb', line 43 def log_level @log_level end |
Class Method Details
.generate_dated_log_folder(base_dir, log_prefix, timestamp) ⇒ String
since this uses ‘mkdir -p’, log_prefix can be a number of nested directories
Utility method to centralize dated log folder generation
393 394 395 396 397 |
# File 'lib/beaker/logger.rb', line 393 def self.generate_dated_log_folder(base_dir, log_prefix, ) log_dir = File.join(base_dir, log_prefix, .strftime("%F_%H_%M_%S")) FileUtils.mkdir_p(log_dir) unless File.directory?(log_dir) log_dir end |
.strip_color_codes(text) ⇒ String
Remove color codes from provided string. Color codes are of the format /(e[dd;ddm)+/.
402 403 404 |
# File 'lib/beaker/logger.rb', line 402 def self.strip_color_codes(text) text.gsub(/(\e|\^\[)\[(\d*;)*\d*m/, '') end |
Instance Method Details
#add_destination(dest) ⇒ Object
Construct an array of open steams for printing log messages to
130 131 132 133 134 135 136 137 138 139 |
# File 'lib/beaker/logger.rb', line 130 def add_destination(dest) case dest when IO, StringIO @destinations << dest when String @destinations << File.open(dest, 'w') else raise "Unsuitable log destination #{dest.inspect}" end end |
#color_host_output(*args) ⇒ Object
Custom reporting for messages generated by host SUTs - to preserve output Will not print unless we are at LOG_LEVELS ‘verbose’ or higher. Preserves outout by not stripping out colour codes
253 254 255 256 257 258 |
# File 'lib/beaker/logger.rb', line 253 def color_host_output *args return unless is_verbose? string = args.join optionally_color NONE, string, false end |
#convert(string) ⇒ Object
Remove invalid UTF-8 codes from provided string(s)
192 193 194 195 196 197 198 199 200 201 202 |
# File 'lib/beaker/logger.rb', line 192 def convert string if string.is_a?(Array) string.map do |s| convert s end else # Remove invalid and undefined UTF-8 character encodings string = string.to_s.dup.force_encoding('UTF-8') return string.to_s.chars.select { |i| i.valid_encoding? }.join end end |
#debug(*args) ⇒ Object
Report a debug message. Will not print unless we are at LOG_LEVELS ‘debug’ or higher.
281 282 283 284 285 |
# File 'lib/beaker/logger.rb', line 281 def debug *args return unless is_verbose? optionally_color @log_colors[:debug], *args end |
#error(*args) ⇒ Object
Report an error message. Will always be reported.
326 327 328 |
# File 'lib/beaker/logger.rb', line 326 def error *args optionally_color @log_colors[:error], *args end |
#get_sublog ⇒ Object
Return the contents of the sublog
376 377 378 379 |
# File 'lib/beaker/logger.rb', line 376 def get_sublog @sublog.rewind @sublog.read end |
#host_output(*args) ⇒ Object
Custom reporting for messages generated by host SUTs. Will not print unless we are at LOG_LEVELS ‘verbose’ or higher. Strips any color codes already in the provided messages, then adds logger color codes before reporting
241 242 243 244 245 246 247 |
# File 'lib/beaker/logger.rb', line 241 def host_output *args return unless is_verbose? strings = strip_colors_from args string = strings.join optionally_color @log_colors[:host], string, false end |
#info(*args) ⇒ Object
Report an info message. Will not print unless we are at LOG_LEVELS ‘info’ or higher.
301 302 303 304 305 |
# File 'lib/beaker/logger.rb', line 301 def info *args return unless is_info? optionally_color @log_colors[:info], *args end |
#is_debug? ⇒ Boolean
Are we at LOG_LEVELS debug?
162 163 164 |
# File 'lib/beaker/logger.rb', line 162 def is_debug? LOG_LEVELS[@log_level] >= LOG_LEVELS[:debug] end |
#is_info? ⇒ Boolean
Are we at LOG_LEVELS info?
180 181 182 |
# File 'lib/beaker/logger.rb', line 180 def is_info? LOG_LEVELS[@log_level] >= LOG_LEVELS[:info] end |
#is_notify? ⇒ Boolean
Are we at LOG_LEVELS notify?
186 187 188 |
# File 'lib/beaker/logger.rb', line 186 def is_notify? LOG_LEVELS[@log_level] >= LOG_LEVELS[:notify] end |
#is_trace? ⇒ Boolean
Are we at LOG_LEVELS trace?
156 157 158 |
# File 'lib/beaker/logger.rb', line 156 def is_trace? LOG_LEVELS[@log_level] >= LOG_LEVELS[:trace] end |
#is_verbose? ⇒ Boolean
Are we at LOG_LEVELS verbose?
168 169 170 |
# File 'lib/beaker/logger.rb', line 168 def is_verbose? LOG_LEVELS[@log_level] >= LOG_LEVELS[:verbose] end |
#is_warn? ⇒ Boolean
Are we at LOG_LEVELS warn?
174 175 176 |
# File 'lib/beaker/logger.rb', line 174 def is_warn? LOG_LEVELS[@log_level] >= LOG_LEVELS[:warn] end |
#notify(*args) ⇒ Object
Report a notify message. Will not print unless we are at LOG_LEVELS ‘notify’ or higher.
317 318 319 320 321 |
# File 'lib/beaker/logger.rb', line 317 def notify *args return unless is_notify? optionally_color @log_colors[:notify], *args end |
#optionally_color(color_code, msg, add_newline = true) ⇒ Object
Print the provided message to the set destination streams, using color codes if appropriate
343 344 345 346 347 348 349 350 351 352 353 354 355 |
# File 'lib/beaker/logger.rb', line 343 def optionally_color color_code, msg, add_newline = true print_statement = add_newline ? :puts : :print msg = convert(msg) msg = prefix_log_line(msg) @destinations.each do |to| to.print color_code if @color to.send print_statement, msg unless color_code == NONE to.print NORMAL if @color end to.flush end end |
#perf_output(*args) ⇒ Object
Custom reporting for performance/sysstat messages Will not print unless we are at LOG_LEVELS ‘debug’ or higher.
263 264 265 266 267 |
# File 'lib/beaker/logger.rb', line 263 def perf_output *args return unless is_debug? optionally_color @log_colors[:perf], *args end |
#prefix_log_line(line) ⇒ String
Prefixes a log line with the appropriate amount of whitespace for the level of test that’s running.
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
# File 'lib/beaker/logger.rb', line 210 def prefix_log_line line if line.is_a?(Array) line.map do |s| prefix_log_line s end else line.delete!("\r") has_ending_newline = line.end_with?("\n") actual_lines = line.split("\n") actual_lines.map! do |actual_line| @line_prefix + actual_line end new_line = actual_lines.join("\n") new_line << "\n" if has_ending_newline new_line end end |
#pretty_backtrace(backtrace = caller(1)) ⇒ String
Utility method to get the current call stack and format it to a human-readable string (which some IDEs/editors will recognize as links to the line numbers in the trace). Beaker associated files will be purged from backtrace unless log level is ‘debug’ or higher
363 364 365 366 |
# File 'lib/beaker/logger.rb', line 363 def pretty_backtrace backtrace = caller(1) trace = is_debug? ? backtrace : purge_harness_files_from(backtrace) (trace).join "\n" end |
#quiet(off = true) ⇒ Object
Turn on/off STDOUT logging
119 120 121 122 123 124 125 126 |
# File 'lib/beaker/logger.rb', line 119 def quiet(off = true) if off remove_destination(STDOUT) # turn off the noise! else remove_destination(STDOUT) # in case we are calling this in error and we are already noisy add_destination(STDOUT) end end |
#remove_destination(dest) ⇒ Object
Remove a steam from the destinations array based upon it’s name or file path
143 144 145 146 147 148 149 150 151 152 |
# File 'lib/beaker/logger.rb', line 143 def remove_destination(dest) case dest when IO, StringIO @destinations.delete(dest) when String @destinations.delete_if { |d| d.respond_to?(:path) and d.path == dest } else raise "Unsuitable log destination #{dest.inspect}" end end |
#start_sublog ⇒ Object
Create a new StringIO log to track the current output
369 370 371 372 373 |
# File 'lib/beaker/logger.rb', line 369 def start_sublog remove_destination(@sublog) if @sublog @sublog = StringIO.new add_destination(@sublog) end |
#strip_colors_from(lines) ⇒ Array<String>
Strip any color codes from provided string(s)
333 334 335 336 337 |
# File 'lib/beaker/logger.rb', line 333 def strip_colors_from lines Array(lines).map do |line| Logger.strip_color_codes(convert(line)) end end |
#success(*args) ⇒ Object
Report a success message. Will always be reported.
310 311 312 |
# File 'lib/beaker/logger.rb', line 310 def success *args optionally_color @log_colors[:success], *args end |
#trace(*args) ⇒ Object
Report a trace message. Will not print unless we are at LOG_LEVELS ‘trace’ or higher.
272 273 274 275 276 |
# File 'lib/beaker/logger.rb', line 272 def trace *args return unless is_trace? optionally_color @log_colors[:trace], *args end |
#warn(*args) ⇒ Object
Report a warning message. Will not print unless we are at LOG_LEVELS ‘warn’ or higher. Will pre-pend the message with “Warning: ”.
291 292 293 294 295 296 |
# File 'lib/beaker/logger.rb', line 291 def warn *args return unless is_warn? strings = args.map { |msg| "Warning: #{msg}" } optionally_color @log_colors[:warn], strings end |
#with_indent ⇒ Object
Indent the step level for the duration of block.
229 230 231 232 233 234 235 |
# File 'lib/beaker/logger.rb', line 229 def with_indent old_line_prefix = self.line_prefix.dup self.line_prefix << ' ' yield ensure self.line_prefix = old_line_prefix end |