1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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
|
require 'paint'
##
## LOGGING
##
## Ugh. This class does not work well with multiple threads!
##
module LeapCli
extend self
# logging options
def log_level
@log_level ||= 1
end
def log_level=(value)
@log_level = value
end
def indent_level
@indent_level ||= 0
end
def indent_level=(value)
@indent_level = value
end
end
module LeapCli
module Log
#
# these are log titles typically associated with files
#
FILE_TITLES = [:updated, :created, :removed, :missing, :nochange, :loading]
#
# master logging function.
#
# arguments can be a String, Integer, Symbol, or Hash, in any order.
#
# * String: treated as the message to log.
# * Integer: the log level (0, 1, 2)
# * Symbol: the prefix title to colorize. may be one of
# [:error, :warning, :info, :updated, :created, :removed, :no_change, :missing]
# * Hash: a hash of options. so far, only :indent is supported.
#
def log(*args)
level = args.grep(Integer).first || 1
title = args.grep(Symbol).first
message = args.grep(String).first
options = args.grep(Hash).first || {}
options[:indent] ||= LeapCli.indent_level
if message && LeapCli.log_level >= level
line = ""
line += " " * (options[:indent])
if options[:indent] > 0
line += ' - '
else
line += ' = '
end
if title
prefix = case title
when :error then ['error', :red, :bold]
when :warning then ['warning', :yellow, :bold]
when :info then ['info', :cyan, :bold]
when :updated then ['updated', :cyan, :bold]
when :updating then ['updating', :cyan, :bold]
when :created then ['created', :green, :bold]
when :removed then ['removed', :red, :bold]
when :nochange then ['no change', :magenta]
when :loading then ['loading', :magenta]
when :missing then ['missing', :yellow, :bold]
when :run then ['run', :magenta]
when :failed then ['FAILED', :red, :bold]
when :completed then ['completed', :green, :bold]
when :ran then ['ran', :green, :bold]
when :bail then ['bailing out', :red, :bold]
when :invalid then ['invalid', :red, :bold]
else [title.to_s, :cyan, :bold]
end
if options[:host]
line += "[%s] %s " % [Paint[options[:host], prefix[1], prefix[2]], prefix[0]]
else
line += "%s " % Paint[prefix[0], prefix[1], prefix[2]]
end
if FILE_TITLES.include?(title) && message =~ /^\//
message = LeapCli::Path.relative_path(message)
end
elsif options[:host]
line += "[%s] " % options[:host]
end
line += "#{message}\n"
print line
if block_given?
LeapCli.indent_level += 1
yield
LeapCli.indent_level -= 1
end
end
end
end
end
|