Sha256: c5c971ad8c53cf48932e12b9624c3853f972dd344400fefa2db503054cc9f0df

Contents?: true

Size: 1.9 KB

Versions: 21

Compression:

Stored size: 1.9 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop enforces the use of `$stdout/$stderr/$stdin` instead of `STDOUT/STDERR/STDIN`.
      # `STDOUT/STDERR/STDIN` are constants, and while you can actually
      # reassign (possibly to redirect some stream) constants in Ruby, you'll get
      # an interpreter warning if you do so.
      #
      # @safety
      #   Autocorrection is unsafe because `STDOUT` and `$stdout` may point to different
      #   objects, for example.
      #
      # @example
      #   # bad
      #   STDOUT.puts('hello')
      #
      #   hash = { out: STDOUT, key: value }
      #
      #   def m(out = STDOUT)
      #     out.puts('hello')
      #   end
      #
      #   # good
      #   $stdout.puts('hello')
      #
      #   hash = { out: $stdout, key: value }
      #
      #   def m(out = $stdout)
      #     out.puts('hello')
      #   end
      #
      class GlobalStdStream < Base
        extend AutoCorrector

        MSG = 'Use `%<gvar_name>s` instead of `%<const_name>s`.'

        STD_STREAMS = %i[STDIN STDOUT STDERR].to_set.freeze

        # @!method const_to_gvar_assignment?(node, name)
        def_node_matcher :const_to_gvar_assignment?, <<~PATTERN
          (gvasgn %1 (const nil? _))
        PATTERN

        def on_const(node)
          const_name = node.children[1]
          return unless STD_STREAMS.include?(const_name)

          gvar_name = gvar_name(const_name).to_sym
          return if const_to_gvar_assignment?(node.parent, gvar_name)

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

        private

        def message(const_name)
          format(MSG, gvar_name: gvar_name(const_name), const_name: const_name)
        end

        def gvar_name(const_name)
          "$#{const_name.to_s.downcase}"
        end
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 4 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/style/global_std_stream.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.29.1 lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.29.0 lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.28.2 lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.28.1 lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.28.0 lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.27.0 lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.26.1 lib/rubocop/cop/style/global_std_stream.rb
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/rubocop-1.26.0/lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.26.0 lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.25.1 lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.25.0 lib/rubocop/cop/style/global_std_stream.rb
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/rubocop-1.24.0/lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.24.1 lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.24.0 lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.23.0 lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.22.3 lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.22.2 lib/rubocop/cop/style/global_std_stream.rb
rubocop-1.22.1 lib/rubocop/cop/style/global_std_stream.rb