brainopia/cassandra-mapper

View on GitHub

Showing 4 of 4 total issues

Method columns_for has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

  def columns_for(request, filter)
    count = filter.delete(:count)
    batch = filter.delete(:batch_size) || count || BATCH_SIZE
    last_record = {}

Severity: Minor
Found in lib/cassandra/mapper/extend/queries.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 auto_migrate_keyspaces has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    def auto_migrate_keyspaces
      system = Cassandra.new('system', server)
      keyspaces = system.send(:client).describe_keyspaces

      keyspaces_schema.each do |keyspace|
Severity: Minor
Found in lib/cassandra/mapper/extend/migrate.rb - About 35 mins 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 keys has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

  def keys(start_token=0, end_token=0, options={})
    start  = start_token.to_s
    finish = end_token.to_s
    batch  = options.fetch :batch_size, 100
    result = []
Severity: Minor
Found in lib/cassandra/mapper/extend/queries.rb - About 25 mins 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 extract! has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    def extract!(option, from=data)
      fields = config.send(option).to_a
      extracted = fields.map do |it|
        from.delete(it) || from.delete(it.to_s)
      end
Severity: Minor
Found in lib/cassandra/mapper/data/request.rb - About 25 mins 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

Severity
Category
Status
Source
Language