Sha256: 7826ce3f907b117c306f4ea3e0849f41b9ab237c4e467676c4f3925d54dbb179

Contents?: true

Size: 1.23 KB

Versions: 8

Compression:

Stored size: 1.23 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Performance
      # This cop identifies places where `Concurrent.monotonic_time`
      # can be replaced by `Process.clock_gettime(Process::CLOCK_MONOTONIC)`.
      #
      # @example
      #
      #   # bad
      #   Concurrent.monotonic_time
      #
      #   # good
      #   Process.clock_gettime(Process::CLOCK_MONOTONIC)
      #
      class ConcurrentMonotonicTime < Base
        extend AutoCorrector

        MSG = 'Use `%<prefer>s` instead of `%<current>s`.'
        RESTRICT_ON_SEND = %i[monotonic_time].freeze

        def_node_matcher :concurrent_monotonic_time?, <<~PATTERN
          (send
            (const {nil? cbase} :Concurrent) :monotonic_time ...)
        PATTERN

        def on_send(node)
          return unless concurrent_monotonic_time?(node)

          optional_unit_parameter = ", #{node.first_argument.source}" if node.first_argument
          prefer = "Process.clock_gettime(Process::CLOCK_MONOTONIC#{optional_unit_parameter})"
          message = format(MSG, prefer: prefer, current: node.source)

          add_offense(node, message: message) do |corrector|
            corrector.replace(node, prefer)
          end
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 3 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-performance-1.13.3/lib/rubocop/cop/performance/concurrent_monotonic_time.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-performance-1.13.3/lib/rubocop/cop/performance/concurrent_monotonic_time.rb
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/rubocop-performance-1.13.3/lib/rubocop/cop/performance/concurrent_monotonic_time.rb
rubocop-performance-1.13.3 lib/rubocop/cop/performance/concurrent_monotonic_time.rb
rubocop-performance-1.13.2 lib/rubocop/cop/performance/concurrent_monotonic_time.rb
rubocop-performance-1.13.1 lib/rubocop/cop/performance/concurrent_monotonic_time.rb
rubocop-performance-1.13.0 lib/rubocop/cop/performance/concurrent_monotonic_time.rb
rubocop-performance-1.12.0 lib/rubocop/cop/performance/concurrent_monotonic_time.rb