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
|
# File 'lib/debug_logging/instance_notifier_modulizer.rb', line 5
def self.to_mod(methods_to_notify: nil)
Module.new do
config_proxy = nil
Array(methods_to_notify).each do |method_to_notify|
payload = (method_to_notify.is_a?(Array) && method_to_notify.last.is_a?(Hash) && method_to_notify.pop.dup) || {}
config_opts = {}
unless payload.empty?
DebugLogging::Configuration::CONFIG_KEYS.each { |k| config_opts[k] = payload.delete(k) if payload.key?(k) }
end
method_to_notify = if method_to_notify.is_a?(Array)
method_to_notify.first&.to_sym
else
method_to_notify.to_sym
end
define_method(method_to_notify) do |*args, &block|
config_proxy = if (proxy = instance_variable_get(DebugLogging::Configuration.config_pointer('inm',
method_to_notify)))
proxy
else
proxy = if config_opts.empty?
self.class.debug_config
else
Configuration.new(**self.class.debug_config.to_hash.merge(config_opts))
end
proxy.register(method_to_notify)
instance_variable_set(
DebugLogging::Configuration.config_pointer('inm', method_to_notify), proxy
)
proxy
end
paydirt = {}
if payload.key?(:instance_variables)
paydirt.merge!(payload.reject { |k| k == :instance_variables })
payload[:instance_variables].each do |k|
paydirt[k] = instance_variable_get("@#{k}") if instance_variable_defined?("@#{k}")
end
else
paydirt.merge!(payload)
end
ActiveSupport::Notifications.instrument(
DebugLogging::ArgumentPrinter.debug_event_name_to_s(method_to_notify: method_to_notify),
debug_args: args,
config_proxy: config_proxy,
**paydirt
) do
super(*args, &block)
end
end
ActiveSupport::Notifications.subscribe(
DebugLogging::ArgumentPrinter.debug_event_name_to_s(method_to_notify: method_to_notify)
) do |*args|
config_proxy&.log do
DebugLogging::LogSubscriber.log_event(ActiveSupport::Notifications::Event.new(*args))
end
end
end
end
end
|