Skip to content
/ weak Public

The Weak library provides a Weak::Map class to store a key-value map and a Weak::Set class to store an unordered list of objects. The collection classes only hold weak references to all elements so they can be garbage-collected when there are no more references left.

License

Notifications You must be signed in to change notification settings

meineerde/weak

Repository files navigation

Weak

gem version badge CI status badge Coverage Status

Weak is a Ruby library which implements collections of unordered values without strong object references.

We provide multiple classes which behave similar to their standard-library counterparts. However, all elements are only weakly referenced. That way, all elements can be garbage collected and silently removed from the collection unless they are still referenced from some other live object.

Weak::Set

Weak::Set behaves similar to the Set class of the Ruby standard library, but all values are only weakly referenced. That way, all values can be garbage collected and silently removed from the set unless they are still referenced from some other live object.

Compared to the Set class however, there are a few differences:

  • All element references are weak, allowing each element to be garbage collected unless there is a strong reference to it somwhere else.
  • We do not necessarily retain the order of elements as they are inserted into the Weak::Set. You should not rely on a specific order.
  • Set membership is governed by object identity rather than by using the hash and eql? methods of the elements. A Weak::Set thus works similat to a Set marked as compare_by_identity.
  • You can freely change any objects added to the Weak::Set.
require "weak/set"
set = Weak::Set.new

set << "some string"
# => #<Weak::Set {"some string"}>

# Do some work, wait a bit, or force a garbage collection run
3.times { GC.start }

set
# => #<Weak::Set {}>

Weak::Map

Weak::Map behaves similar to a Hash or an ObjectSpace::WeakMap in Ruby (aka. MRI, aka. YARV). Both keys and values are weak references, allowing either of them to be garbage collected. If either the key or the value of a pair is garbage collected, the entire pair will be removed from the Weak::Map.

Compared to the Set class however, there are a few differences:

  • Key and value references are weak, allowing each key-value pair to be garbage collected unless there is a strong reference to boith the key and the value somewhere else.
  • We do not necessarily retain the order of elements as they are inserted into the Weak::Map. You should not rely on a specific order.
  • Map membership is governed by object identity of the key rather than by using the hash and eql? methods of the elements. A Weak::Map thus works similat to a Hash marked as compare_by_identity.
  • You can freely change both keys and values added to the Weak::Map.
require "weak/map"
map = Weak::Map.new

map["some key"] = "a value"
# => #<Weak::Map {"some key" => "a value"}>

# Do some work, wait a bit, or force a garbage collection run
3.times { GC.start }

map
# => #<Weak::Map {}>

Usage

Please refer to the documentation at:

Warning

The Weak collections are not inherently thread-safe. When accessing a collection from multiple threads or fibers, you MUST use a mutex or another locking mechanism.

The Weak collections use Ruby's ObjectSpace::WeakMap under the hood. Unfortunately, different Ruby implementations and versions such as Ruby (aka. MRI, aka. YARV), JRuby, or TruffleRuby show quite diverse behavior in their respective ObjectSpace::WeakMap implementations. To provide a unified behavior on all supported Rubies, we use multiple different storage strategies.

The appropriate strategy is selected automatically. Their exposed behavior should be identical across all implementations. If you experience diverging behavior, we consider this a bug. Please open an issue and describe the diverging or unexpected behavior.

Installation

Weak supports the following Ruby implementation:

  • Ruby (aka. MRI, aka. YARV) >= 3.0
  • JRuby >= 9.4
  • TruffleRuby >= 22

Add the weak gem to the application's Gemfile and install it by executing:

bundle add weak

If bundler is not being used to manage dependencies, install the gem manually by executing:

gem install weak

Examples

Weak::Set Example

A Weak::Set can be used as a cache or for validation purposes were it is not desirable to keep a full object reference. For example, it can be used with a basic ConnectionPool as follows

require "weak/set"

class Connection
  # A sample connection class.
  # Our ConnectionPool will return objects from this class.
end

class ConnectionPool
  def initialize
    @pool = []
    @outstanding = Weak::Set.new
    @mutex = Mutex.new
  end

  # Fetch or create a connection object. The connection object can (but does not
  # have to) be returned to the pool again with `checkin`.
  def checkout
    @mutex.synchronize do
      connection = @pool.pop || Connection.new
      @outstanding << connection

      connection
    end
  end

  # Allows to return a previously checked-out connection object back to the pool
  # for later re-use. Only connection objects which were previously checked-out
  # can be returned to the pool.
  def checkin(connection)
    @mutex.synchronize do
      if @outstanding.delete?(connection)
        @pool.push connection
      else
        raise ArgumentError, "connection was not checked out before"
      end
    end

    nil
  end

  # Fetch or create a connection object and yield it to the given block. After
  # the block completes, the connection is automatically checked-in again for
  # later re-use. The method returns the return value of the block.
  def with
    connection = checkout
    begin
      yield connection
    ensure
      checkin(connection)
    end
  end
end

During checkout we remember a reference to the returned connection object in the @outstanding weak set. The caller is free to do whatever they like with the connection. Specifically, they are not required to return the connection to the pool.

If the caller just "forgets" the connection, our pool will also forget it during the next Ruby garbage collection run.

If the caller returns the connection by calling checkin again, we can verify that we have in fact created the object by deleting it from the @outstanding list. That way, the a checked-out connection can be checked-in again only once and only if it was initially created by the ConnectionPool.

Weak::Map Example

Conversely a Weak::Map can be used to store references to other objects. In the example below, we use a single Mutex for each obj wrapped in a LockedObject instance.

Even if a single object is wrapped in multiple LockedObject instances, we still use the same shared mutex in each of these instances, ensuring that the obj is only every accessed while holding the mutex. Different objects use different mutexes.

If all LockedObject instances for an obj and the obj itself vanish by being garbage collected, the associated mutex will also be garbage collected without requiring any external coordination.

class LockedObject < BasicObject
  LOCKS = Weak::Map.new
  LOCKS_MUTEX = Mutex.new

  def initialize(obj)
    @obj = obj

    # Assigning the obj mutex must itself be wrapped in a different mutex as a Weak::Map
    # is not thread-safe. We retain the mutex for obj in @mutex for the LockedObject
    # instance.
    LOCKS_MUTEX.synchronize do
      @mutex = (LOCKS[obj] ||= Mutex.new)
    end
  end

  private

  def method_missing(m, *args, **kwargs, &block)
    @mutex.synchronize do
      obj.public_send(m, *args, **kwargs, &block)
    end
  end

  def respond_to_missing?(m)
    obj.respond_to?(m)
  end
end

string = "foo"

# As an example, we simulate concurrent access to the string from multiple Threads.
# Especially on JRuby, you would likely see data corruptions without the mutex here.
5.times do
  Thread.new do
    locked = Locked.new(string)
    ("a".."z").each do |char|
      locked << char*2
    end
  end
end

Development

After checking out the repo, run bin/setup to install dependencies. Then, run bundle exec rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

code style: standard badge

We follow the Standard Ruby style. Please make sure that all code is formatted according to the Standard rules. This is enforced by the CI. Please try to keep all code lines at or below 100 characters in length.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/meineerde/weak. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Weak project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

About

The Weak library provides a Weak::Map class to store a key-value map and a Weak::Set class to store an unordered list of objects. The collection classes only hold weak references to all elements so they can be garbage-collected when there are no more references left.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks