Welcome to mirror list, hosted at ThFree Co, Russian Federation.

callbacks.rb « concerns « chunked_file « trace « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a49ac4dbbf0b4ed458cb9522ea103e7756c1a92 (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
module Gitlab
  module Ci
    class Trace
      module ChunkedFile
        module Concerns
          module Callbacks
            extend ActiveSupport::Concern

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

            def with_callbacks(kind, *args)
              self.class._before_callbacks[kind].each { |c| send c, *args }
              yield
              self.class._after_callbacks[kind].each { |c| send c, *args }
            end

            module ClassMethods
              def before_callback(kind, callback)
                self._before_callbacks = self._before_callbacks.
                  merge kind => _before_callbacks[kind] + [callback]
              end

              def after_callback(kind, callback)
                self._after_callbacks = self._after_callbacks.
                  merge kind => _after_callbacks[kind] + [callback]
              end
            end
          end
        end
      end
    end
  end
end