davidlatwe/MontyDB

View on GitHub
montydb/engine/field_walker.py

Summary

Maintainability
F
4 days
Test Coverage

File field_walker.py has 650 lines of code (exceeds 250 allowed). Consider refactoring.
Open

class _NoVal(object):
    def __repr__(self):
        return "_NoVal()"
    __slots__ = ()

Severity: Major
Found in montydb/engine/field_walker.py - About 1 day to fix

    Function extract has a Cognitive Complexity of 49 (exceeds 5 allowed). Consider refactoring.
    Open

        def extract(self, visited_only=False):
            ON_DELETE = False
            if isinstance(self.handler, FieldTreeWriter):
                ON_DELETE = self.handler.on_delete
    
    
    Severity: Minor
    Found in montydb/engine/field_walker.py - About 7 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

    Function _iter has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
    Open

        def _iter(self, array_only, unpack, pack):
            """Value iterator
    
            Args:
                array_only (bool): Yield only `list` type values.
    Severity: Minor
    Found in montydb/engine/field_walker.py - About 3 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

    Function grow has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

        def grow(self, fields):
    
            for field in fields:
    
                if not is_multi_position_operator(field):
    Severity: Minor
    Found in montydb/engine/field_walker.py - 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

    Function write_array has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

        def write_array(self, node, field):
            new_nodes = list()
            doc = node.value
    
            if is_multi_position_operator(field):
    Severity: Minor
    Found in montydb/engine/field_walker.py - 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

    Function fields_positioning has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        def fields_positioning(self, fieldwalker, array_filters=None):
            fields = fieldwalker.steps
    
            if "$" in fields:
    
    
    Severity: Minor
    Found in montydb/engine/field_walker.py - 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

    Function no_dollar_prefix_field has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    def no_dollar_prefix_field(doc, map_cls, root_path):
        if isinstance(doc, map_cls):
            for field, value in doc.items():
                if field.startswith("$"):
                    full_path = root_path + "." + field
    Severity: Minor
    Found in montydb/engine/field_walker.py - 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

    Function operate has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        def operate(self, node, field):
            result = list()
    
            if not field:
                raise FieldWriteError("An empty update path is not valid", code=56)
    Severity: Minor
    Found in montydb/engine/field_walker.py - 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

    Function stage has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def stage(self, value, evaluator=None):
            """Internal method, for staging the changes"""
            evaluator = evaluator or (lambda _, val: val)
            staging = [node for node in self.picked if node in self.previous]
            updates = list()
    Severity: Minor
    Found in montydb/engine/field_walker.py - About 55 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

    Function __new__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def __new__(
    Severity: Minor
    Found in montydb/engine/field_walker.py - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                              if elem is not _no_val:
                                  matched = FieldNode(
                                      str(i), elem, exists=True, in_array=True, parent=node
                                  )
                                  fieldwalker.put_matched(matched)
      Severity: Major
      Found in montydb/engine/field_walker.py - About 45 mins to fix

        Function spawn has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def spawn(self, value, field, located=False, exists=True, in_array=False):
        Severity: Minor
        Found in montydb/engine/field_walker.py - About 35 mins to fix

          Function get_matched has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              def get_matched(self, position_path=None):
                  for path, node in self.matched.items():
                      if position_path is None or path.startswith(position_path + "."):
                          matched = node
                          break
          Severity: Minor
          Found in montydb/engine/field_walker.py - 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

          Function read_array has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              def read_array(self, node, field):
                  new_nodes = list()
                  doc = node.value
          
                  for i, elem in enumerate(doc):
          Severity: Minor
          Found in montydb/engine/field_walker.py - 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

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

                              if filter({identifier: elem}):
                                  field = str(i)
          
                                  self.trace.add(field)
                                  new_nodes.append(
          Severity: Major
          Found in montydb/engine/field_walker.py and 1 other location - About 1 hr to fix
          montydb/engine/field_walker.py on lines 428..434

          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 47.

          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

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

                          for i, elem in enumerate(doc):
                              field = str(i)
          
                              self.trace.add(field)
                              new_nodes.append(
          Severity: Major
          Found in montydb/engine/field_walker.py and 1 other location - About 1 hr to fix
          montydb/engine/field_walker.py on lines 417..423

          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 47.

          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

          There are no issues that match your filters.

          Category
          Status