# frozen_string_literal: true module Anyway # Provides method to trace values association module Tracing using Anyway::Ext::DeepDup using(Module.new do refine Hash do def inspect "{#{map { |k, v| "#{k}: #{v.inspect}" }.join(", ")}}" end end refine Thread::Backtrace::Location do def path_lineno "#{path}:#{lineno}" end end end) class Trace UNDEF = Object.new attr_reader :type, :value, :source def initialize(type = :trace, value = UNDEF, **source) @type = type @source = source @value = value == UNDEF ? Hash.new { |h, k| h[k] = Trace.new(:trace) } : value end def dig(*__rest__, &__block__) value.dig(*__rest__, &__block__) end def record_value(val, *path, key, **opts) trace = if val.is_a?(Hash) Trace.new.tap { |_1| _1.merge_values(val, **opts) } else Trace.new(:value, val, **opts) end target_trace = path.empty? ? self : value.dig(*path) target_trace.value[key.to_s] = trace val end def merge_values(hash, **opts) return hash unless hash hash.each do |key, val| if val.is_a?(Hash) value[key.to_s].merge_values(val, **opts) else value[key.to_s] = Trace.new(:value, val, **opts) end end hash end def merge!(another_trace) raise ArgumentError, "You can only merge into a :trace type, and this is :#{type}" unless trace? raise ArgumentError, "You can only merge a :trace type, but trying :#{type}" unless another_trace.trace? another_trace.value.each do |key, sub_trace| if sub_trace.trace? value[key].merge! sub_trace else value[key] = sub_trace end end end def keep_if(*__rest__, &__block__) raise ArgumentError, "You can only filter :trace type, and this is :#{type}" unless trace? value.keep_if(*__rest__, &__block__) end def clear value.clear end def trace? type == :trace end def to_h if trace? value.transform_values(&:to_h).tap { |_1| _1.default_proc = nil } else {value: value, source: source} end end def pretty_print(q) if trace? q.nest(2) do q.breakable "" q.seplist(value, nil, :each) do |k, v| q.group do q.text k q.text " =>" q.breakable " " unless v.trace? q.pp v end end end else q.pp value q.group(0, " (", ")") do q.seplist(source, lambda { q.breakable " " }, :each) do |k, v| q.group do q.text k.to_s q.text "=" q.text v.to_s end end end end end end class << self def capture unless Settings.tracing_enabled yield return end trace = Trace.new trace_stack.push trace yield trace_stack.last ensure trace_stack.pop end def trace_stack (Thread.current[:__anyway__trace_stack__] ||= []) end def current_trace trace_stack.last end alias tracing? current_trace def source_stack (Thread.current[:__anyway__trace_source_stack__] ||= []) end def current_trace_source source_stack.last || accessor_source(caller_locations(2, 1).first) end def with_trace_source(src) source_stack << src yield ensure source_stack.pop end private def accessor_source(location) {type: :accessor, called_from: location.path_lineno} end end module_function def trace!(type, *path, **opts) return yield unless Tracing.tracing? source = {type: type}.merge(opts) val = yield if val.is_a?(Hash) Tracing.current_trace.merge_values(val, **source) else Tracing.current_trace.record_value(yield, *path, **source) end val end end end