summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/trace/chunked_file/concerns/hooks.rb
blob: 290a3a15805e19919953f2dc0d30a8b40832f3c3 (plain)
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
module Gitlab
  module Ci
    class Trace
      module ChunkedFile
        module Concerns
          module Hooks
            extend ActiveSupport::Concern

            included do
              class_attribute :_before_methods, :_after_methods,
                :instance_writer => false
              self._before_methods = Hash.new []
              self._after_methods = Hash.new []
            end

            class_methods do
              def before_method(kind, callback)
                self._before_methods = self._before_methods.
                  merge kind => _before_methods[kind] + [callback]
              end

              def after_method(kind, callback)
                self._after_methods = self._after_methods.
                  merge kind => _after_methods[kind] + [callback]
              end
            end

            def method_added(method_name)
              return if self.class._before_methods.values.include?(method_name)
              return if self.class._after_methods.values.include?(method_name)
              return if hooked_methods.include?(method_name)

              add_hooks_to(method_name)
            end

            private

            def hooked_methods
              @hooked_methods ||= []
            end

            def add_hooks_to(method_name)
              hooked_methods << method_name

              original_method = instance_method(method_name)

              # re-define the method, but notice how we reference the original
              # method definition
              define_method(method_name) do |*args, &block|
                self.class._before_methods[method_name].each { |hook| method(hook).call }

                # now invoke the original method
                original_method.bind(self).call(*args, &block).tap do
                  self.class._after_methods[method_name].each { |hook| method(hook).call }
                end
              end
            end
          end
        end
      end
    end
  end
end