mongodb/mongo-ruby-driver

View on GitHub

Showing 447 of 447 total issues

Method each has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
Open

        def each
          # If the caching cursor is closed and was not fully iterated,
          # the documents we have in it are not the complete result set and
          # we have no way of completing that iteration.
          # Therefore, discard that cursor and start iteration again.
Severity: Minor
Found in lib/mongo/collection/view/iterable.rb - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method standard_dependencies has 52 lines of code (exceeds 25 allowed). Consider refactoring.
Open

def standard_dependencies
  gem 'yard', '>= 0.9.35'
  gem 'ffi'

  group :development, :testing do
Severity: Major
Found in gemfiles/standard.rb - About 2 hrs to fix

    Method commit_transaction has 51 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def commit_transaction(options=nil)
          QueryCache.clear
          check_if_ended!
          check_if_no_transaction!
    
    
    Severity: Major
    Found in lib/mongo/session.rb - About 2 hrs to fix

      Method run has 49 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        def run
          opts = {
            region: ENV.fetch('MONGO_RUBY_DRIVER_AWS_AUTH_REGION'),
            access_key_id: ENV.fetch('MONGO_RUBY_DRIVER_AWS_AUTH_ACCESS_KEY_ID'),
            secret_access_key: ENV.fetch('MONGO_RUBY_DRIVER_AWS_AUTH_SECRET_ACCESS_KEY'),
      Severity: Minor
      Found in .evergreen/lib/ecs_setup.rb - About 1 hr to fix

        Method run_benchmark has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

              def run_benchmark
                [].tap do |timings|
                  iteration_count = 0
                  cumulative_time = 0
        
        
        Severity: Minor
        Found in profile/driver_bench/base.rb - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method normalized? has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

          def self.normalized?(string, form = :nfc)
            encoding = string.encoding
            case encoding
            when Encoding::UTF_8
              case form
        Severity: Minor
        Found in lib/mongo/auth/stringprep/unicode_normalize/normalize.rb - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method each has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

            def each
        
              # If we already iterated past the first batch (i.e., called get_more
              # at least once), the cursor on the server side has advanced past
              # the first batch and restarting iteration from the beginning by
        Severity: Minor
        Found in lib/mongo/cursor.rb - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method add_read_preference has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

              def add_read_preference(sel, connection)
                Lint.assert_type(connection, Server::Connection)
        
                # https://github.com/mongodb/specifications/blob/master/source/server-selection/server-selection.rst#topology-type-single
                read_doc = if connection.description.standalone?
        Severity: Minor
        Found in lib/mongo/operation/shared/sessions_supported.rb - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method initialize has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

                  def initialize(opts)
                    @opts = opts
                    return if empty?
        
                    if opts[:access_token]
        Severity: Minor
        Found in lib/mongo/crypt/kms/gcp/credentials.rb - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method initialize has 46 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

              def initialize(server, options = {})
                unless server.is_a?(Server)
                  raise ArgumentError, 'First argument must be a Server instance'
                end
                options = options.dup
        Severity: Minor
        Found in lib/mongo/server/connection_pool.rb - About 1 hr to fix

          Method deliver has 46 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                def deliver(message, context, options = {})
                  if Lint.enabled? && !@socket
                    raise Error::LintError, "Trying to deliver a message over a disconnected connection (to #{address})"
                  end
                  buffer = serialize(message, context)
          Severity: Minor
          Found in lib/mongo/server/connection_base.rb - About 1 hr to fix

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

                        nro_write_with_retry(write_concern, context: context) do |connection, txn_num, context|
                          gte_4_2 = connection.server.description.server_version_gte?('4.2')
                          if !gte_4_2 && opts[:hint] && write_concern && !write_concern.acknowledged?
                            raise Error::UnsupportedOption.hint_error(unacknowledged_write: true)
                          end
            Severity: Major
            Found in lib/mongo/collection/view/writable.rb and 1 other location - About 1 hr to fix
            lib/mongo/collection/view/writable.rb on lines 249..264

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 71.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

                        nro_write_with_retry(write_concern, context: context) do |connection, txn_num, context|
                          gte_4_4 = connection.server.description.server_version_gte?('4.4')
                          if !gte_4_4 && opts[:hint] && write_concern && !write_concern.acknowledged?
                            raise Error::UnsupportedOption.hint_error(unacknowledged_write: true)
                          end
            Severity: Major
            Found in lib/mongo/collection/view/writable.rb and 1 other location - About 1 hr to fix
            lib/mongo/collection/view/writable.rb on lines 451..466

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 71.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Method handshake_and_authenticate! has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
            Open

                  def handshake_and_authenticate!
                    speculative_auth_doc = nil
                    if options[:user] || options[:auth_mech]
                      # To create an Auth instance, we need to specify the mechanism,
                      # but at this point we don't know the mechanism that ultimately
            Severity: Minor
            Found in lib/mongo/server/pending_connection.rb - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method initialize has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
            Open

                  def initialize(address, config = {}, average_round_trip_time: nil,
                    load_balancer: false, force_load_balancer: false
                  )
                    @address = address
                    @config = config
            Severity: Minor
            Found in lib/mongo/server/description.rb - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method add_server_diagnostics has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
            Open

                  def add_server_diagnostics
                    yield
                  # Note that the exception should already have been mapped to a
                  # Mongo::Error subclass when it gets to this method.
                  rescue Error::SocketError, Error::SocketTimeoutError => e
            Severity: Minor
            Found in lib/mongo/server/connection_common.rb - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method validate_replacement_documents! has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
            Open

                    def validate_replacement_documents!(spec)
                      if replace = spec.is_a?(Array) ? spec&.first : spec
                        if key = replace.keys&.first
                          if key.to_s.start_with?("$")
                            if Mongo.validate_update_replace
            Severity: Minor
            Found in lib/mongo/collection/view/writable.rb - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method add_error_labels has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
            Open

                  def add_error_labels(connection, context)
                    yield
                  rescue Mongo::Error::SocketError => e
                    if context.in_transaction? && !context.committing_transaction?
                      e.add_label('TransientTransactionError')
            Severity: Minor
            Found in lib/mongo/operation/shared/response_handling.rb - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method validate_param has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
            Open

                    def validate_param(key, opts, format_hint, required: true)
                      value = opts.fetch(key)
                      return nil if value.nil? && !required
                      if value.nil?
                        raise ArgumentError.new(
            Severity: Minor
            Found in lib/mongo/crypt/kms.rb - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method abort_transaction has 43 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                def abort_transaction
                  QueryCache.clear
            
                  check_if_ended!
                  check_if_no_transaction!
            Severity: Minor
            Found in lib/mongo/session.rb - About 1 hr to fix
              Severity
              Category
              Status
              Source
              Language