2015-12-16 08:07:31 +03:00
|
|
|
# frozen_string_literal: false
|
2011-06-16 10:09:57 +04:00
|
|
|
# = monitor.rb
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# Copyright (C) 2001 Shugo Maeda <shugo@ruby-lang.org>
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# This library is distributed under the terms of the Ruby license.
|
|
|
|
# You can freely distribute/modify this library.
|
|
|
|
#
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2022-12-24 01:00:47 +03:00
|
|
|
require 'monitor.so'
|
|
|
|
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# In concurrent programming, a monitor is an object or module intended to be
|
2022-12-24 01:00:47 +03:00
|
|
|
# used safely by more than one thread. The defining characteristic of a
|
|
|
|
# monitor is that its methods are executed with mutual exclusion. That is, at
|
2011-06-16 10:09:57 +04:00
|
|
|
# each point in time, at most one thread may be executing any of its methods.
|
|
|
|
# This mutual exclusion greatly simplifies reasoning about the implementation
|
|
|
|
# of monitors compared to reasoning about parallel code that updates a data
|
|
|
|
# structure.
|
2003-01-17 17:06:27 +03:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# You can read more about the general principles on the Wikipedia page for
|
2022-12-24 01:00:47 +03:00
|
|
|
# Monitors[https://en.wikipedia.org/wiki/Monitor_%28synchronization%29].
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# == Examples
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# === Simple object.extend
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# require 'monitor.rb'
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# buf = []
|
|
|
|
# buf.extend(MonitorMixin)
|
|
|
|
# empty_cond = buf.new_cond
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# # consumer
|
|
|
|
# Thread.start do
|
|
|
|
# loop do
|
|
|
|
# buf.synchronize do
|
|
|
|
# empty_cond.wait_while { buf.empty? }
|
|
|
|
# print buf.shift
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# end
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# # producer
|
|
|
|
# while line = ARGF.gets
|
|
|
|
# buf.synchronize do
|
|
|
|
# buf.push(line)
|
|
|
|
# empty_cond.signal
|
|
|
|
# end
|
|
|
|
# end
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# The consumer thread waits for the producer thread to push a line to buf
|
2022-12-24 01:00:47 +03:00
|
|
|
# while <tt>buf.empty?</tt>. The producer thread (main thread) reads a
|
2011-06-16 10:09:57 +04:00
|
|
|
# line from ARGF and pushes it into buf then calls <tt>empty_cond.signal</tt>
|
|
|
|
# to notify the consumer thread of new data.
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# === Simple Class include
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# require 'monitor'
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# class SynchronizedArray < Array
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# include MonitorMixin
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# def initialize(*args)
|
|
|
|
# super(*args)
|
|
|
|
# end
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# alias :old_shift :shift
|
|
|
|
# alias :old_unshift :unshift
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# def shift(n=1)
|
|
|
|
# self.synchronize do
|
|
|
|
# self.old_shift(n)
|
|
|
|
# end
|
|
|
|
# end
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# def unshift(item)
|
|
|
|
# self.synchronize do
|
|
|
|
# self.old_unshift(item)
|
|
|
|
# end
|
|
|
|
# end
|
2011-06-18 02:33:54 +04:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# # other methods ...
|
|
|
|
# end
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2011-06-16 10:09:57 +04:00
|
|
|
# +SynchronizedArray+ implements an Array with synchronized access to items.
|
|
|
|
# This Class is implemented as subclass of Array which includes the
|
|
|
|
# MonitorMixin module.
|
2003-01-17 17:06:27 +03:00
|
|
|
#
|
2019-10-19 22:52:20 +03:00
|
|
|
module MonitorMixin
|
2003-01-17 17:06:27 +03:00
|
|
|
#
|
|
|
|
# FIXME: This isn't documented in Nutshell.
|
|
|
|
#
|
|
|
|
# Since MonitorMixin.new_cond returns a ConditionVariable, and the example
|
|
|
|
# above calls while_wait and signal, this class should be documented.
|
|
|
|
#
|
1999-08-13 09:45:20 +04:00
|
|
|
class ConditionVariable
|
2010-02-06 15:31:52 +03:00
|
|
|
#
|
|
|
|
# Releases the lock held in the associated monitor and waits; reacquires the lock on wakeup.
|
|
|
|
#
|
|
|
|
# If +timeout+ is given, this method returns after +timeout+ seconds passed,
|
|
|
|
# even if no other thread doesn't signal.
|
|
|
|
#
|
1999-08-13 09:45:20 +04:00
|
|
|
def wait(timeout = nil)
|
2019-10-19 22:52:20 +03:00
|
|
|
@monitor.mon_check_owner
|
2019-10-20 09:45:30 +03:00
|
|
|
@monitor.wait_for_cond(@cond, timeout)
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2010-02-06 15:31:52 +03:00
|
|
|
#
|
|
|
|
# Calls wait repeatedly while the given block yields a truthy value.
|
|
|
|
#
|
1999-08-13 09:45:20 +04:00
|
|
|
def wait_while
|
|
|
|
while yield
|
2011-05-19 01:19:18 +04:00
|
|
|
wait
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2010-02-06 15:31:52 +03:00
|
|
|
#
|
|
|
|
# Calls wait repeatedly until the given block yields a truthy value.
|
|
|
|
#
|
1999-08-13 09:45:20 +04:00
|
|
|
def wait_until
|
|
|
|
until yield
|
2011-05-19 01:19:18 +04:00
|
|
|
wait
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2010-02-06 15:31:52 +03:00
|
|
|
#
|
|
|
|
# Wakes up the first thread in line waiting for this lock.
|
|
|
|
#
|
1999-08-13 09:45:20 +04:00
|
|
|
def signal
|
2019-10-19 22:52:20 +03:00
|
|
|
@monitor.mon_check_owner
|
2007-02-24 09:15:04 +03:00
|
|
|
@cond.signal
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2010-02-06 15:31:52 +03:00
|
|
|
#
|
|
|
|
# Wakes up all threads waiting for this lock.
|
|
|
|
#
|
1999-08-13 09:45:20 +04:00
|
|
|
def broadcast
|
2019-10-19 22:52:20 +03:00
|
|
|
@monitor.mon_check_owner
|
2007-02-24 09:15:04 +03:00
|
|
|
@cond.broadcast
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-11-12 04:15:59 +03:00
|
|
|
private
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
def initialize(monitor)
|
|
|
|
@monitor = monitor
|
2016-08-30 09:22:30 +03:00
|
|
|
@cond = Thread::ConditionVariable.new
|
2003-11-12 04:15:59 +03:00
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
def self.extend_object(obj)
|
|
|
|
super(obj)
|
2009-06-20 02:19:56 +04:00
|
|
|
obj.__send__(:mon_initialize)
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-17 17:06:27 +03:00
|
|
|
#
|
|
|
|
# Attempts to enter exclusive section. Returns +false+ if lock fails.
|
|
|
|
#
|
2003-11-12 04:15:59 +03:00
|
|
|
def mon_try_enter
|
2019-10-19 22:52:20 +03:00
|
|
|
@mon_data.try_enter
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
2003-11-12 04:15:59 +03:00
|
|
|
# For backward compatibility
|
|
|
|
alias try_mon_enter mon_try_enter
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2003-01-17 17:06:27 +03:00
|
|
|
#
|
* dln.c, io.c, pack.c, lib/benchmark.rb, lib/cgi.rb, lib/csv.rb,
lib/date.rb, lib/ftools.rb, lib/getoptlong.rb, lib/logger.rb,
lib/matrix.rb, lib/monitor.rb, lib/set.rb, lib/thwait.rb,
lib/timeout.rb, lib/yaml.rb, lib/drb/drb.rb, lib/irb/workspace.rb,
lib/net/ftp.rb, lib/net/http.rb, lib/net/imap.rb, lib/net/pop.rb,
lib/net/telnet.rb, lib/racc/parser.rb, lib/rinda/rinda.rb,
lib/rinda/tuplespace.rb, lib/shell/command-processor.rb,
lib/soap/rpc/soaplet.rb, lib/test/unit/testcase.rb,
lib/test/unit/testsuite.rb: typo fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-04-19 03:19:47 +04:00
|
|
|
# Enters exclusive section.
|
2003-01-17 17:06:27 +03:00
|
|
|
#
|
1999-08-13 09:45:20 +04:00
|
|
|
def mon_enter
|
2019-10-19 22:52:20 +03:00
|
|
|
@mon_data.enter
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-17 17:06:27 +03:00
|
|
|
#
|
|
|
|
# Leaves exclusive section.
|
|
|
|
#
|
1999-08-13 09:45:20 +04:00
|
|
|
def mon_exit
|
2003-11-12 04:15:59 +03:00
|
|
|
mon_check_owner
|
2019-10-19 22:52:20 +03:00
|
|
|
@mon_data.exit
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
|
|
|
|
2017-09-20 04:40:53 +03:00
|
|
|
#
|
|
|
|
# Returns true if this monitor is locked by any thread
|
|
|
|
#
|
|
|
|
def mon_locked?
|
2019-10-19 22:52:20 +03:00
|
|
|
@mon_data.mon_locked?
|
2017-09-20 04:40:53 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Returns true if this monitor is locked by current thread.
|
|
|
|
#
|
|
|
|
def mon_owned?
|
2019-10-19 22:52:20 +03:00
|
|
|
@mon_data.mon_owned?
|
2017-09-20 04:40:53 +03:00
|
|
|
end
|
|
|
|
|
2003-01-17 17:06:27 +03:00
|
|
|
#
|
|
|
|
# Enters exclusive section and executes the block. Leaves the exclusive
|
|
|
|
# section automatically when the block exits. See example under
|
|
|
|
# +MonitorMixin+.
|
|
|
|
#
|
2019-10-19 22:52:20 +03:00
|
|
|
def mon_synchronize(&b)
|
2019-10-20 08:21:04 +03:00
|
|
|
@mon_data.synchronize(&b)
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
|
|
|
alias synchronize mon_synchronize
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-17 17:06:27 +03:00
|
|
|
#
|
2010-02-06 15:31:52 +03:00
|
|
|
# Creates a new MonitorMixin::ConditionVariable associated with the
|
2019-11-28 07:24:01 +03:00
|
|
|
# Monitor object.
|
2003-01-17 17:06:27 +03:00
|
|
|
#
|
1999-08-13 09:45:20 +04:00
|
|
|
def new_cond
|
2019-12-04 07:36:41 +03:00
|
|
|
unless defined?(@mon_data)
|
|
|
|
mon_initialize
|
|
|
|
@mon_initialized_by_new_cond = true
|
|
|
|
end
|
2019-10-19 22:52:20 +03:00
|
|
|
return ConditionVariable.new(@mon_data)
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
2003-11-12 04:15:59 +03:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2011-06-16 10:09:57 +04:00
|
|
|
# Use <tt>extend MonitorMixin</tt> or <tt>include MonitorMixin</tt> instead
|
|
|
|
# of this constructor. Have look at the examples above to understand how to
|
|
|
|
# use this module.
|
2020-07-11 10:01:05 +03:00
|
|
|
def initialize(...)
|
1999-08-13 09:45:20 +04:00
|
|
|
super
|
|
|
|
mon_initialize
|
|
|
|
end
|
2003-11-12 04:15:59 +03:00
|
|
|
|
2011-06-16 10:09:57 +04:00
|
|
|
# Initializes the MonitorMixin after being included in a class or when an
|
|
|
|
# object has been extended with the MonitorMixin
|
2003-11-12 04:15:59 +03:00
|
|
|
def mon_initialize
|
2019-12-04 07:36:41 +03:00
|
|
|
if defined?(@mon_data)
|
|
|
|
if defined?(@mon_initialized_by_new_cond)
|
2020-04-03 08:37:28 +03:00
|
|
|
return # already initialized.
|
2019-12-04 07:36:41 +03:00
|
|
|
elsif @mon_data_owner_object_id == self.object_id
|
|
|
|
raise ThreadError, "already initialized"
|
|
|
|
end
|
2018-12-05 12:07:54 +03:00
|
|
|
end
|
2019-10-19 22:52:20 +03:00
|
|
|
@mon_data = ::Monitor.new
|
|
|
|
@mon_data_owner_object_id = self.object_id
|
2003-11-12 04:15:59 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def mon_check_owner
|
2019-10-19 22:52:20 +03:00
|
|
|
@mon_data.mon_check_owner
|
2003-11-12 04:15:59 +03:00
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
|
|
|
|
2011-06-16 10:09:57 +04:00
|
|
|
# Use the Monitor class when you want to have a lock object for blocks with
|
2011-06-18 02:33:54 +04:00
|
|
|
# mutual exclusion.
|
2011-06-16 10:09:57 +04:00
|
|
|
#
|
|
|
|
# require 'monitor'
|
|
|
|
#
|
|
|
|
# lock = Monitor.new
|
|
|
|
# lock.synchronize do
|
|
|
|
# # exclusive access
|
|
|
|
# end
|
|
|
|
#
|
1999-08-13 09:45:20 +04:00
|
|
|
class Monitor
|
2019-10-19 22:52:20 +03:00
|
|
|
def new_cond
|
|
|
|
::MonitorMixin::ConditionVariable.new(self)
|
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2019-10-19 22:52:20 +03:00
|
|
|
# for compatibility
|
|
|
|
alias try_mon_enter try_enter
|
|
|
|
alias mon_try_enter try_enter
|
|
|
|
alias mon_enter enter
|
|
|
|
alias mon_exit exit
|
|
|
|
alias mon_synchronize synchronize
|
|
|
|
end
|
2003-01-17 17:06:27 +03:00
|
|
|
|
|
|
|
# Documentation comments:
|
|
|
|
# - All documentation comes from Nutshell.
|
|
|
|
# - MonitorMixin.new_cond appears in the example, but is not documented in
|
|
|
|
# Nutshell.
|
|
|
|
# - All the internals (internal modules Accessible and Initializable, class
|
|
|
|
# ConditionVariable) appear in RDoc. It might be good to hide them, by
|
|
|
|
# making them private, or marking them :nodoc:, etc.
|
|
|
|
# - RDoc doesn't recognise aliases, so we have mon_synchronize documented, but
|
|
|
|
# not synchronize.
|
|
|
|
# - mon_owner is in Nutshell, but appears as an accessor in a separate module
|
|
|
|
# here, so is hard/impossible to RDoc. Some other useful accessors
|
|
|
|
# (mon_count and some queue stuff) are also in this module, and don't appear
|
|
|
|
# directly in the RDoc output.
|
|
|
|
# - in short, it may be worth changing the code layout in this file to make the
|
|
|
|
# documentation easier
|