Sha256: 3dd5933945bf196582d09d9e4bbb7c5c0aef41ae80ee04a7c2704e683bf4d00e

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

# This module can be included on a class to make all method-calls synchronized (by using monitor). Examples with array and hash are below.
#
#===Examples
#  class MySyncedClass < SomeOtherClassThatNeedsToBeSynchronized
#    include Tsafe::Monitored
#  end
module Tsafe::Monitored
  def self.included(base)
    base.to_s.split("::").inject(Object, :const_get).class_eval do
      instance_methods.each do |method_name|
        # These two methods create warnings under JRuby.
        if RUBY_ENGINE == "jruby"
          next if method_name == :instance_exec || method_name == :instance_eval
        end

        new_method_name = "_ts_#{method_name}"
        alias_method(new_method_name, method_name)

        define_method method_name do |*args, &block|
          # Need to use monitor, since the internal calls might have to run not-synchronized, and we have just overwritten the internal methods.
          @_ts_mutex = Monitor.new unless @_ts_mutex
          @_ts_mutex.synchronize do
            return _ts___send__(new_method_name, *args, &block)
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tsafe-0.0.12 lib/tsafe_monitored.rb