Class: Log3mf
Defined Under Namespace
Classes: FatalError
Constant Summary
collapse
- LOG_LEVELS =
[:fatal_error, :error, :warning, :info, :debug]
Interpolation::INTERPOLATION_PATTERN
Class Method Summary
collapse
Instance Method Summary
collapse
#interpolate, #map_value, #symbolize_recursive
Constructor Details
#initialize ⇒ Log3mf
Returns a new instance of Log3mf.
34
35
36
37
38
39
40
|
# File 'lib/ruby3mf/log3mf.rb', line 34
def initialize()
@log_list = []
@context_stack = []
@ledger = []
errormap_path = File.join(File.dirname(__FILE__),"errors.yml")
@errormap = YAML.load_file(errormap_path)
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args, &block) ⇒ Object
65
66
67
68
69
70
71
|
# File 'lib/ruby3mf/log3mf.rb', line 65
def method_missing(name, *args, &block)
if LOG_LEVELS.include? name.to_sym
log(name.to_sym, *args)
else+
super
end
end
|
Class Method Details
.context(context_description, &block) ⇒ Object
61
62
63
|
# File 'lib/ruby3mf/log3mf.rb', line 61
def self.context(context_description, &block)
Log3mf.instance.context(context_description, &block)
end
|
.count_entries(*l) ⇒ Object
86
87
88
|
# File 'lib/ruby3mf/log3mf.rb', line 86
def self.count_entries(*l)
Log3mf.instance.count_entries(*l)
end
|
.entries(*l) ⇒ Object
94
95
96
|
# File 'lib/ruby3mf/log3mf.rb', line 94
def self.entries(*l)
Log3mf.instance.entries(*l)
end
|
.reset_log ⇒ Object
47
48
49
|
# File 'lib/ruby3mf/log3mf.rb', line 47
def self.reset_log
Log3mf.instance.reset_log
end
|
.to_hash ⇒ Object
119
120
121
|
# File 'lib/ruby3mf/log3mf.rb', line 119
def self.to_hash
Log3mf.instance.to_hash
end
|
.to_json ⇒ Object
127
128
129
|
# File 'lib/ruby3mf/log3mf.rb', line 127
def self.to_json
Log3mf.instance.to_json
end
|
Instance Method Details
#context(context_description, &block) ⇒ Object
51
52
53
54
55
56
57
58
59
|
# File 'lib/ruby3mf/log3mf.rb', line 51
def context (context_description, &block)
@context_stack.push(context_description)
retval = block.call(Log3mf.instance)
@context_stack.pop
retval
end
|
#count_entries(*levels) ⇒ Object
82
83
84
|
# File 'lib/ruby3mf/log3mf.rb', line 82
def count_entries(*levels)
entries(*levels).count
end
|
#entries(*levels) ⇒ Object
90
91
92
|
# File 'lib/ruby3mf/log3mf.rb', line 90
def entries(*levels)
@log_list.select { |i| levels.include? i[1] }
end
|
#log(severity, message, options = {}) ⇒ Object
73
74
75
76
77
78
79
80
|
# File 'lib/ruby3mf/log3mf.rb', line 73
def log(severity, message, options = {})
error = @errormap.fetch(message.to_s) { {"msg" => message.to_s, "page" => nil } }
options[:page] = error["page"] unless options[:page]
options[:spec] = error["spec"] unless options[:spec]
message = interpolate(error["msg"], options)
@log_list << ["#{@context_stack.join("/")}", severity, message, options] unless severity==:debug && ENV['LOGDEBUG'].nil?
raise FatalError if severity == :fatal_error
end
|
#reset_log ⇒ Object
42
43
44
45
|
# File 'lib/ruby3mf/log3mf.rb', line 42
def reset_log
@log_list = []
@context_stack = []
end
|
#spec_link(spec, page) ⇒ Object
98
99
100
101
102
103
104
105
106
107
108
109
|
# File 'lib/ruby3mf/log3mf.rb', line 98
def spec_link(spec, page)
spec = :core unless spec
doc_urls={
core: 'http://3mf.io/wp-content/uploads/2016/03/3MFcoreSpec_1.1.pdf',
material: 'http://3mf.io/wp-content/uploads/2015/04/3MFmaterialsSpec_1.0.1.pdf',
production: 'http://3mf.io/wp-content/uploads/2016/07/3MFproductionSpec.pdf',
slice: 'http://3mf.io/wp-content/uploads/2016/07/3MFsliceSpec.pdf',
opc: 'http://3mf.io/wp-content/uploads/2016/03/3MFcoreSpec_1.1.pdf'
}
"#{doc_urls[spec]}#page=#{page}"
end
|
#to_hash ⇒ Object
111
112
113
114
115
116
117
|
# File 'lib/ruby3mf/log3mf.rb', line 111
def to_hash
@log_list.collect { |ent|
h = { context: ent[0], severity: ent[1], message: ent[2] }
h[:spec_ref] = spec_link(ent[3][:spec], ent[3][:page]) if (ent[3] && ent[3][:page])
h
}
end
|
#to_json ⇒ Object
123
124
125
|
# File 'lib/ruby3mf/log3mf.rb', line 123
def to_json
to_hash.to_json
end
|