berkes/postgres_key_value

View on GitHub

Showing 73 of 73 total issues

PostgresKeyValue::Store#fetch has approx 6 statements
Open

    def fetch(key, default = nil)
Severity: Minor
Found in lib/postgres_key_value/store.rb by reek

A method with Too Many Statements is any method that has a large number of lines.

Too Many Statements warns about any method that has more than 5 statements. Reek's smell detector for Too Many Statements counts +1 for every simple statement in a method and +1 for every statement within a control structure (if, else, case, when, for, while, until, begin, rescue) but it doesn't count the control structure itself.

So the following method would score +6 in Reek's statement-counting algorithm:

def parse(arg, argv, &error)
  if !(val = arg) and (argv.empty? or /\A-/ =~ (val = argv[0]))
    return nil, block, nil                                         # +1
  end
  opt = (val = parse_arg(val, &error))[1]                          # +2
  val = conv_arg(*val)                                             # +3
  if opt and !arg
    argv.shift                                                     # +4
  else
    val[0] = nil                                                   # +5
  end
  val                                                              # +6
end

(You might argue that the two assigments within the first @if@ should count as statements, and that perhaps the nested assignment should count as +2.)

IndexBenchmark#bench_read_without_index has approx 8 statements
Open

  def bench_read_without_index
Severity: Minor
Found in benchmark/index_benchmark.rb by reek

A method with Too Many Statements is any method that has a large number of lines.

Too Many Statements warns about any method that has more than 5 statements. Reek's smell detector for Too Many Statements counts +1 for every simple statement in a method and +1 for every statement within a control structure (if, else, case, when, for, while, until, begin, rescue) but it doesn't count the control structure itself.

So the following method would score +6 in Reek's statement-counting algorithm:

def parse(arg, argv, &error)
  if !(val = arg) and (argv.empty? or /\A-/ =~ (val = argv[0]))
    return nil, block, nil                                         # +1
  end
  opt = (val = parse_arg(val, &error))[1]                          # +2
  val = conv_arg(*val)                                             # +3
  if opt and !arg
    argv.shift                                                     # +4
  else
    val[0] = nil                                                   # +5
  end
  val                                                              # +6
end

(You might argue that the two assigments within the first @if@ should count as statements, and that perhaps the nested assignment should count as +2.)

PostgresKeyValue::Store#assert_correct_key refers to 'key' more than self (maybe move it to another class?)
Open

      return true if key.is_a?(String) || key.is_a?(Symbol)
Severity: Minor
Found in lib/postgres_key_value/store.rb by reek

Feature Envy occurs when a code fragment references another object more often than it references itself, or when several clients do the same series of manipulations on a particular type of object.

Feature Envy reduces the code's ability to communicate intent: code that "belongs" on one class but which is located in another can be hard to find, and may upset the "System of Names" in the host class.

Feature Envy also affects the design's flexibility: A code fragment that is in the wrong class creates couplings that may not be natural within the application's domain, and creates a loss of cohesion in the unwilling host class.

Feature Envy often arises because it must manipulate other objects (usually its arguments) to get them into a useful form, and one force preventing them (the arguments) doing this themselves is that the common knowledge lives outside the arguments, or the arguments are of too basic a type to justify extending that type. Therefore there must be something which 'knows' about the contents or purposes of the arguments. That thing would have to be more than just a basic type, because the basic types are either containers which don't know about their contents, or they are single objects which can't capture their relationship with their fellows of the same type. So, this thing with the extra knowledge should be reified into a class, and the utility method will most likely belong there.

Example

Running Reek on:

class Warehouse
  def sale_price(item)
    (item.price - item.rebate) * @vat
  end
end

would report:

Warehouse#total_price refers to item more than self (FeatureEnvy)

since this:

(item.price - item.rebate)

belongs to the Item class, not the Warehouse.

PostgresKeyValue::Store tests 'res.num_tuples.zero?' at least 3 times
Open

      return instance_default(key) if res.num_tuples.zero?

      val = res.getvalue(0, 0)
      JSON.parse(val)
    end
Severity: Minor
Found in lib/postgres_key_value/store.rb by reek

Repeated Conditional is a special case of Simulated Polymorphism. Basically it means you are checking the same value throughout a single class and take decisions based on this.

Example

Given

class RepeatedConditionals
  attr_accessor :switch

  def repeat_1
    puts "Repeat 1!" if switch
  end

  def repeat_2
    puts "Repeat 2!" if switch
  end

  def repeat_3
    puts "Repeat 3!" if switch
  end
end

Reek would emit the following warning:

test.rb -- 4 warnings:
  [5, 9, 13]:RepeatedConditionals tests switch at least 3 times (RepeatedConditional)

If you get this warning then you are probably not using the right abstraction or even more probable, missing an additional abstraction.

PostgresKeyValue::KeyLimitExceeded has no descriptive comment
Open

  class KeyLimitExceeded < StandardError; end
Severity: Minor
Found in lib/postgres_key_value/errors.rb by reek

Classes and modules are the units of reuse and release. It is therefore considered good practice to annotate every class and module with a brief comment outlining its responsibilities.

Example

Given

class Dummy
  # Do things...
end

Reek would emit the following warning:

test.rb -- 1 warning:
  [1]:Dummy has no descriptive comment (IrresponsibleModule)

Fixing this is simple - just an explaining comment:

# The Dummy class is responsible for ...
class Dummy
  # Do things...
end

PostgresKeyValue::InvalidKey has no descriptive comment
Open

  class InvalidKey < StandardError; end
Severity: Minor
Found in lib/postgres_key_value/errors.rb by reek

Classes and modules are the units of reuse and release. It is therefore considered good practice to annotate every class and module with a brief comment outlining its responsibilities.

Example

Given

class Dummy
  # Do things...
end

Reek would emit the following warning:

test.rb -- 1 warning:
  [1]:Dummy has no descriptive comment (IrresponsibleModule)

Fixing this is simple - just an explaining comment:

# The Dummy class is responsible for ...
class Dummy
  # Do things...
end

IndexBenchmark#bench_read_without_index calls 'read_n(n)' 2 times
Open

    time_with_index = Benchmark.measure { read_n(n) }
    remove_pkey_constraint
    time_without_index = Benchmark.measure { read_n(n) }
Severity: Minor
Found in benchmark/index_benchmark.rb by reek

Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

Reek implements a check for Duplicate Method Call.

Example

Here's a very much simplified and contrived example. The following method will report a warning:

def double_thing()
  @other.thing + @other.thing
end

One quick approach to silence Reek would be to refactor the code thus:

def double_thing()
  thing = @other.thing
  thing + thing
end

A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

class Other
  def double_thing()
    thing + thing
  end
end

The approach you take will depend on balancing other factors in your code.

PostgresKeyValue::Error has no descriptive comment
Open

  class Error < StandardError; end
Severity: Minor
Found in lib/postgres_key_value/errors.rb by reek

Classes and modules are the units of reuse and release. It is therefore considered good practice to annotate every class and module with a brief comment outlining its responsibilities.

Example

Given

class Dummy
  # Do things...
end

Reek would emit the following warning:

test.rb -- 1 warning:
  [1]:Dummy has no descriptive comment (IrresponsibleModule)

Fixing this is simple - just an explaining comment:

# The Dummy class is responsible for ...
class Dummy
  # Do things...
end

IndexBenchmark#bench_read_without_index calls 'Benchmark.measure' 2 times
Open

    time_with_index = Benchmark.measure { read_n(n) }
    remove_pkey_constraint
    time_without_index = Benchmark.measure { read_n(n) }
Severity: Minor
Found in benchmark/index_benchmark.rb by reek

Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

Reek implements a check for Duplicate Method Call.

Example

Here's a very much simplified and contrived example. The following method will report a warning:

def double_thing()
  @other.thing + @other.thing
end

One quick approach to silence Reek would be to refactor the code thus:

def double_thing()
  thing = @other.thing
  thing + thing
end

A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

class Other
  def double_thing()
    thing + thing
  end
end

The approach you take will depend on balancing other factors in your code.

IndexBenchmark#bench_read_without_index calls 'Benchmark.measure { read_n(n) }' 2 times
Open

    time_with_index = Benchmark.measure { read_n(n) }
    remove_pkey_constraint
    time_without_index = Benchmark.measure { read_n(n) }
Severity: Minor
Found in benchmark/index_benchmark.rb by reek

Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

Reek implements a check for Duplicate Method Call.

Example

Here's a very much simplified and contrived example. The following method will report a warning:

def double_thing()
  @other.thing + @other.thing
end

One quick approach to silence Reek would be to refactor the code thus:

def double_thing()
  thing = @other.thing
  thing + thing
end

A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

class Other
  def double_thing()
    thing + thing
  end
end

The approach you take will depend on balancing other factors in your code.

PostgresKeyValue::Utils::DatabaseConnections#db_host doesn't depend on instance state (maybe move it to another class?)
Open

      def db_host
Severity: Minor
Found in lib/postgres_key_value/utils.rb by reek

A Utility Function is any instance method that has no dependency on the state of the instance.

PostgresKeyValue::Utils::DatabaseConnections#db_name doesn't depend on instance state (maybe move it to another class?)
Open

      def db_name
Severity: Minor
Found in lib/postgres_key_value/utils.rb by reek

A Utility Function is any instance method that has no dependency on the state of the instance.

PostgresKeyValue::Utils::DatabaseConnections#db_port doesn't depend on instance state (maybe move it to another class?)
Open

      def db_port
Severity: Minor
Found in lib/postgres_key_value/utils.rb by reek

A Utility Function is any instance method that has no dependency on the state of the instance.

PostgresKeyValue::Utils::DatabaseConnections#db_password doesn't depend on instance state (maybe move it to another class?)
Open

      def db_password
Severity: Minor
Found in lib/postgres_key_value/utils.rb by reek

A Utility Function is any instance method that has no dependency on the state of the instance.

PostgresKeyValue::Utils::DatabaseConnections#db_user doesn't depend on instance state (maybe move it to another class?)
Open

      def db_user
Severity: Minor
Found in lib/postgres_key_value/utils.rb by reek

A Utility Function is any instance method that has no dependency on the state of the instance.

IndexBenchmark#bench_read_with_index has the variable name 'n'
Open

    assert_performance_linear(THRESHOLD) do |n|
Severity: Minor
Found in benchmark/index_benchmark.rb by reek

An Uncommunicative Variable Name is a variable name that doesn't communicate its intent well enough.

Poor names make it hard for the reader to build a mental picture of what's going on in the code. They can also be mis-interpreted; and they hurt the flow of reading, because the reader must slow down to interpret the names.

IndexBenchmark#bench_read_without_index has the variable name 'n'
Open

    n = bench_range.max
Severity: Minor
Found in benchmark/index_benchmark.rb by reek

An Uncommunicative Variable Name is a variable name that doesn't communicate its intent well enough.

Poor names make it hard for the reader to build a mental picture of what's going on in the code. They can also be mis-interpreted; and they hurt the flow of reading, because the reader must slow down to interpret the names.

IndexBenchmark#bench_insert_with_index has the variable name 'n'
Open

    assert_performance_linear(THRESHOLD) do |n|
Severity: Minor
Found in benchmark/index_benchmark.rb by reek

An Uncommunicative Variable Name is a variable name that doesn't communicate its intent well enough.

Poor names make it hard for the reader to build a mental picture of what's going on in the code. They can also be mis-interpreted; and they hurt the flow of reading, because the reader must slow down to interpret the names.

IndexBenchmark#bench_upsert_with_index has the variable name 'n'
Open

    assert_performance_linear(THRESHOLD) do |n|
Severity: Minor
Found in benchmark/index_benchmark.rb by reek

An Uncommunicative Variable Name is a variable name that doesn't communicate its intent well enough.

Poor names make it hard for the reader to build a mental picture of what's going on in the code. They can also be mis-interpreted; and they hurt the flow of reading, because the reader must slow down to interpret the names.

Line length
Open

**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
Severity: Info
Found in CODE_OF_CONDUCT.md by markdownlint

MD013 - Line length

Tags: line_length

Aliases: line-length Parameters: linelength, codeblocks, tables (number; default 80, boolean; default true)

This rule is triggered when there are lines that are longer than the configured line length (default: 80 characters). To fix this, split the line up into multiple lines.

This rule has an exception where there is no whitespace beyond the configured line length. This allows you to still include items such as long URLs without being forced to break them in the middle.

You also have the option to exclude this rule for code blocks and tables. To do this, set the code_blocks and/or tables parameters to false.

Code blocks are included in this rule by default since it is often a requirement for document readability, and tentatively compatible with code rules. Still, some languages do not lend themselves to short lines.

Severity
Category
Status
Source
Language