Showing 427 of 427 total issues
File tables.rb
has 3148 lines of code (exceeds 250 allowed). Consider refactoring. Open
module Mongo
module Auth
module StringPrep
# Contains character tables defined by RFC 3454 (string preparation).
#
File tables.rb
has 1161 lines of code (exceeds 250 allowed). Consider refactoring. Open
module UnicodeNormalize # :nodoc:
accents = "" \
"[\u0300-\u034E\u0350-\u036F\u0483-\u0487\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7" \
"\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711" \
"\u0730-\u074A\u07EB-\u07F3\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u08D4-\u08E1" \
File client.rb
has 681 lines of code (exceeds 250 allowed). Consider refactoring. Open
module Mongo
# The client is the entry point to the driver and is the main object that
# will be interacted with.
#
Method select_server
has a Cognitive Complexity of 74 (exceeds 5 allowed). Consider refactoring. Open
def select_server(cluster, ping = nil, session = nil, write_aggregation: false)
if cluster.topology.is_a?(Cluster::Topology::LoadBalanced)
return cluster.servers.first
end
- Read upRead up
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 check_out
has a Cognitive Complexity of 71 (exceeds 5 allowed). Consider refactoring. Open
def check_out(connection_global_id: nil)
check_invariants
publish_cmap_event(
Monitoring::Event::Cmap::ConnectionCheckOutStarted.new(@server.address)
- Read upRead up
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_options!
has a Cognitive Complexity of 71 (exceeds 5 allowed). Consider refactoring. Open
def validate_options!(addresses = nil, is_srv: nil)
if options[:write] && options[:write_concern] && options[:write] != options[:write_concern]
raise ArgumentError, "If :write and :write_concern are both given, they must be identical: #{options.inspect}"
end
- Read upRead up
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
File session.rb
has 545 lines of code (exceeds 250 allowed). Consider refactoring. Open
require 'mongo/session/session_pool'
require 'mongo/session/server_session'
module Mongo
File binding.rb
has 527 lines of code (exceeds 250 allowed). Consider refactoring. Open
unless ENV['LIBMONGOCRYPT_PATH']
begin
require 'libmongocrypt_helper'
rescue LoadError => e
# It seems that MRI maintains autoload configuration for a module until
Method validate_uri_options!
has a Cognitive Complexity of 51 (exceeds 5 allowed). Consider refactoring. Open
def validate_uri_options!
# The URI options spec requires that we raise an error if there are conflicting values of
# 'tls' and 'ssl'. In order to fulfill this, we parse the values of each instance into an
# array; assuming all values in the array are the same, we replace the array with that value.
unless uri_options[:ssl].nil? || uri_options[:ssl].empty?
- Read upRead up
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
File connection_pool.rb
has 492 lines of code (exceeds 250 allowed). Consider refactoring. Open
module Mongo
class Server
# Represents a connection pool for server connections.
#
Method validate_new_options!
has a Cognitive Complexity of 49 (exceeds 5 allowed). Consider refactoring. Open
def validate_new_options!(opts)
return Options::Redacted.new unless opts
if opts[:read_concern]
# Raise an error for non user-settable options
if opts[:read_concern][:after_cluster_time]
- Read upRead up
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 do_execute
has a Cognitive Complexity of 48 (exceeds 5 allowed). Consider refactoring. Open
def do_execute(connection, context, options = {})
session&.materialize_if_needed
unpin_maybe(session, connection) do
add_error_labels(connection, context) do
add_server_diagnostics(connection) do
- Read upRead up
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
File cluster.rb
has 460 lines of code (exceeds 250 allowed). Consider refactoring. Open
require 'mongo/cluster/topology'
require 'mongo/cluster/reapers/socket_reaper'
require 'mongo/cluster/reapers/cursor_reaper'
require 'mongo/cluster/periodic_executor'
Method with_transaction
has a Cognitive Complexity of 44 (exceeds 5 allowed). Consider refactoring. Open
def with_transaction(options=nil)
# Non-configurable 120 second timeout for the entire operation
deadline = Utils.monotonic_time + 120
transaction_in_progress = false
loop do
- Read upRead up
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
Class Description
has 48 methods (exceeds 20 allowed). Consider refactoring. Open
class Description
# Constant for reading arbiter info from config.
#
# @since 2.0.0
Class Session
has 48 methods (exceeds 20 allowed). Consider refactoring. Open
class Session
extend Forwardable
include Retryable
include Loggable
include ClusterTime::Consumer
Method verify_one_responder
has a Cognitive Complexity of 42 (exceeds 5 allowed). Consider refactoring. Open
def verify_one_responder(uri)
original_uri = uri
redirect_count = 0
http_response = nil
loop do
- Read upRead up
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
Class Client
has 44 methods (exceeds 20 allowed). Consider refactoring. Open
class Client
extend Forwardable
include Loggable
# The options that do not affect the behavior of a cluster and its
File sdam_flow.rb
has 399 lines of code (exceeds 250 allowed). Consider refactoring. Open
class Mongo::Cluster
# Handles SDAM flow for a server description changed event.
#
# Updates server descriptions, topology descriptions and publishes
# SDAM events.
Method add_txn_opts!
has a Cognitive Complexity of 36 (exceeds 5 allowed). Consider refactoring. Open
def add_txn_opts!(command, read)
command.tap do |c|
# The read concern should be added to any command that starts a transaction.
if starting_transaction?
# https://jira.mongodb.org/browse/SPEC-1161: transaction's
- Read upRead up
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"