Sha256: 1cb85577334648283a7c215940ed9ec63688e755eb055102d4bbc53f40553f76

Contents?: true

Size: 1.01 KB

Versions: 5

Compression:

Stored size: 1.01 KB

Contents

# typed: true
# frozen_string_literal: true

module Datadog
  module Utils
    # Helper class to execute something only once such as not repeating warning logs, and instrumenting classes
    # only once.
    #
    # Thread-safe when used correctly (e.g. be careful of races when lazily initializing instances of this class).
    #
    # Note: In its current state, this class is not Ractor-safe.
    # In https://github.com/DataDog/dd-trace-rb/pull/1398#issuecomment-797378810 we have a discussion of alternatives,
    # including an alternative implementation that is Ractor-safe once spent.
    class OnlyOnce
      def initialize
        @mutex = Mutex.new
        @ran_once = false
      end

      def run
        @mutex.synchronize do
          return if @ran_once

          @ran_once = true

          yield
        end
      end

      def ran?
        @mutex.synchronize { @ran_once }
      end

      private

      def reset_ran_once_state_for_tests
        @mutex.synchronize { @ran_once = false }
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ddtrace-0.54.2 lib/ddtrace/utils/only_once.rb
ddtrace-0.54.1 lib/ddtrace/utils/only_once.rb
ddtrace-0.54.0 lib/ddtrace/utils/only_once.rb
ddtrace-0.53.0 lib/ddtrace/utils/only_once.rb
ddtrace-0.52.0 lib/ddtrace/utils/only_once.rb