Module: Dry::BlackTie

Defined in:
lib/dry/behaviour/black_tie.rb

Overview

rubocop:disable Style/MultilineBlockChain rubocop:disable Metrics/MethodLength rubocop:disable Metrics/CyclomaticComplexity rubocop:disable Metrics/AbcSize rubocop:disable Style/MethodName

Constant Summary collapse

DELEGATE_METHOD =
lambda do |klazz, (source, target)|
  klazz.class_eval do
    define_method(source, &Dry::DEFINE_METHOD.curry[target])
  end
end
POSTPONE_EXTEND =
lambda do |target, protocol|
  TracePoint.new(:end) do |tp|
    if tp.self == protocol
      target.extend protocol
      tp.disable
    end
  end.enable
end

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.defimpl(protocol = nil, target: nil, delegate: [], map: {}) ⇒ Object



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/dry/behaviour/black_tie.rb', line 70

def defimpl(protocol = nil, target: nil, delegate: [], map: {})
  raise if target.nil? || !block_given? && delegate.empty? && map.empty?

  mds = normalize_map_delegates(delegate, map)

  Module.new do
    mds.each(&DELEGATE_METHOD.curry[singleton_class])
    singleton_class.class_eval(&Proc.new) if block_given? # block takes precedence
  end.tap do |mod|
    protocol ? mod.extend(protocol) : POSTPONE_EXTEND.(mod, protocol = self)

    mod.methods(false).tap do |meths|
      (BlackTie.protocols[protocol].keys - meths).each_with_object(meths) do |m, acc|
        BlackTie.Logger.warn("Implicit delegate #{protocol.inspect}##{m} to #{target}")
        DELEGATE_METHOD.(mod.singleton_class, [m] * 2)
        acc << m
      end
    end.each do |m|
      [*target].each do |tgt|
        BlackTie.implementations[protocol][tgt][m] = mod.method(m).to_proc
      end
    end
  end
end

.implementationsObject



13
14
15
# File 'lib/dry/behaviour/black_tie.rb', line 13

def implementations
  @implementations ||= Hash.new { |h, k| h[k] = h.dup.clear }
end

.LoggerObject



96
97
98
99
100
101
102
103
# File 'lib/dry/behaviour/black_tie.rb', line 96

def self.Logger
  @logger ||= if Kernel.const_defined?('::Rails')
                Rails.logger
              else
                require 'logger'
                Logger.new($stdout)
              end
end

.normalize_map_delegates(delegate, map) ⇒ Object



107
108
109
110
111
112
113
114
# File 'lib/dry/behaviour/black_tie.rb', line 107

def normalize_map_delegates(delegate, map)
  [*delegate, *map].map do |e|
    case e
    when Symbol, String then [e.to_sym] * 2
    when Array then e.map(&:to_sym) if e.size == 2
    end
  end.compact
end

.protocolsObject



9
10
11
# File 'lib/dry/behaviour/black_tie.rb', line 9

def protocols
  @protocols ||= Hash.new { |h, k| h[k] = h.dup.clear }
end

Instance Method Details

#defmethod(name, *params) ⇒ Object



51
52
53
# File 'lib/dry/behaviour/black_tie.rb', line 51

def defmethod(name, *params)
  BlackTie.protocols[self][name] = params
end

#defprotocolObject



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
# File 'lib/dry/behaviour/black_tie.rb', line 18

def defprotocol
  raise if BlackTie.protocols.key?(self) # DUPLICATE DEF
  raise unless block_given?

  ims = instance_methods(false)
  class_eval(&Proc.new)
  (instance_methods(false) - ims).each { |m| class_eval { module_function m } }

  singleton_class.send :define_method, :method_missing do |method, *_args|
    raise Dry::Protocol::NotImplemented.new(:method, inspect, method)
  end

  singleton_class.send :define_method, :implementation_for do |receiver|
    receiver.class.ancestors.lazy.map do |c|
      BlackTie.implementations[self].fetch(c, nil)
    end.reject(&:nil?).first
  end

  BlackTie.protocols[self].each do |method, *_| # FIXME: CHECK PARAMS CORRESPONDENCE HERE
    singleton_class.send :define_method, method do |receiver = nil, *args|
      impl = implementation_for(receiver)
      raise Dry::Protocol::NotImplemented.new(:protocol, inspect, receiver.class) unless impl
      begin
        impl[method].(*args.unshift(receiver))
      rescue NoMethodError => e
        raise Dry::Protocol::NotImplemented.new(:method, inspect, e.message)
      rescue ArgumentError => e
        raise Dry::Protocol::NotImplemented.new(:method, inspect, "#{method} (#{e.message})")
      end
    end
  end
end