davidlatwe/MontyDB

View on GitHub
montydb/engine/queries.py

Summary

Maintainability
F
1 wk
Test Coverage

File queries.py has 671 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import re
from copy import deepcopy
from datetime import datetime
from collections.abc import Mapping

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

    Function parse_all has a Cognitive Complexity of 36 (exceeds 5 allowed). Consider refactoring.
    Open

    def parse_all(query):
    
        field_op_ls = set(QueryFilter({}).field_ops.keys())
        field_op_ls.remove("$eq")
        field_op_ls.remove("$not")
    Severity: Minor
    Found in montydb/engine/queries.py - About 5 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 ordering has a Cognitive Complexity of 34 (exceeds 5 allowed). Consider refactoring.
    Open

    def ordering(fieldwalkers, order, doc_type=None):
        """ """
        total = len(fieldwalkers)
        pre_sect_stack = []
    
    
    Severity: Minor
    Found in montydb/engine/queries.py - About 5 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 parse_lte has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
    Open

    def parse_lte(query):
        _dec_NaN_INF_ls = list(bson.decimal128_NaN_ls) + [bson.decimal128_INF]
    
        @keep(query)
        def _lte(fieldwalker):
    Severity: Minor
    Found in montydb/engine/queries.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 _eq_match has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
    Open

    def _eq_match(fieldwalker, query):
        """ """
        if is_duckument_type(query):
            for val in fieldwalker.value:
                if is_duckument_type(val):
    Severity: Minor
    Found in montydb/engine/queries.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 parse_gte has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
    Open

    def parse_gte(query):
        @keep(query)
        def _gte(fieldwalker):
            for value in fieldwalker.value:
                if _is_comparable(value, query):
    Severity: Minor
    Found in montydb/engine/queries.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 subparser has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
    Open

        def subparser(self, path, sub_spec):
            """Field-level parser"""
    
            # Implementation of field-level operation container.
            logic_box = LogicBox(path)
    Severity: Minor
    Found in montydb/engine/queries.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 parse_mod has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

    def parse_mod(query):
        if not isinstance(query, list):
            raise OperationFailure("malformed mod, needs to be an array")
        if len(query) < 2:
            raise OperationFailure("malformed mod, not enough elements")
    Severity: Minor
    Found in montydb/engine/queries.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 parse_type has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

    def parse_type(query):
        def get_bson_type_id_set(values):
            return set([obj_to_bson_type_id(v) for v in values])
    
        def str_type_to_int(query):
    Severity: Minor
    Found in montydb/engine/queries.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 _in_match has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

    def _in_match(fieldwalker, query):
        """Helper function for $in and $nin"""
        q_regex = []
        q_value = []
        for q in query:
    Severity: Minor
    Found in montydb/engine/queries.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 parse_gt has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

    def parse_gt(query):
        @keep(query)
        def _gt(fieldwalker):
            for value in fieldwalker.value:
                if _is_comparable(value, query):
    Severity: Minor
    Found in montydb/engine/queries.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 parse_regex has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

    def parse_regex(query):
        if isinstance(query, bson.Regex):
            q = query.try_compile()
        else:
            if not isinstance(query["pattern"], string_types):
    Severity: Minor
    Found in montydb/engine/queries.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 parse_lt has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

    def parse_lt(query):
        @keep(query)
        def _lt(fieldwalker):
            for value in fieldwalker.value:
                if _is_comparable(value, query):
    Severity: Minor
    Found in montydb/engine/queries.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 obj_to_bson_type_id has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    def obj_to_bson_type_id(obj):
    
        BSON_TYPE_ID = {
            float: 1,
            # string: 2,
    Severity: Minor
    Found in montydb/engine/queries.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 __repr__ has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def __repr__(self):
            """Display `theme` and `LogicBox` or operators content within"""
            content = []
            name = "[{}]"
            if not self.implicitly:
    Severity: Minor
    Found in montydb/engine/queries.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 _call_elemMatch has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def _call_elemMatch(self, fieldwalker):
            """ """
            with fieldwalker.value as field_value:
                for elem in field_value.iter_elements():
    
    
    Severity: Minor
    Found in montydb/engine/queries.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 _parse_not has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        def _parse_not(self, sub_spec):
            # $not logic only available in field-level
            if isinstance(sub_spec, (RE_PATTERN_TYPE, bson.Regex)):
                return self.subparser("$not", {"$regex": sub_spec})
    
    
    Severity: Minor
    Found in montydb/engine/queries.py - About 45 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 _modify_regex_optins has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    def _modify_regex_optins(sub_spec):
        """Merging $regex and $options values in query document
    
        Besides string type value, field $regex accept `bson.Regex` and
        `re._pattern_type` in pymongo. For re.flags and $options, based
    Severity: Minor
    Found in montydb/engine/queries.py - About 45 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 parser has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def parser(self, spec):
            """Top-level parser"""
    
            # Implementation of implicitly $and operation, fundamental query
            # container.
    Severity: Minor
    Found in montydb/engine/queries.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 _parse_elemMatch has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def _parse_elemMatch(self, sub_spec):
            # $elemMatch only available in field-level
            if not is_duckument_type(sub_spec):
                raise OperationFailure("$elemMatch needs an Object")
    
    
    Severity: Minor
    Found in montydb/engine/queries.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 parse_size has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

    def parse_size(query):
        if isinstance(query, float):
            raise OperationFailure("$size must be a whole number")
        if not isinstance(query, int):
            raise OperationFailure("$size needs a number")
    Severity: Minor
    Found in montydb/engine/queries.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 parse_logic has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def parse_logic(self, theme):
            """Logical operator parser (un-themed)"""
    
            def _parse_logic(sub_spec):
                """Themed logical operator"""
    Severity: Minor
    Found in montydb/engine/queries.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

    Avoid too many return statements within this function.
    Open

                    return True
    Severity: Major
    Found in montydb/engine/queries.py - About 30 mins to fix

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

                  if path.startswith("$"):
                      try:
                          logic_box.append(self.pathless_ops[path](sub_spec))
                      except KeyError:
                          raise OperationFailure(
      Severity: Major
      Found in montydb/engine/queries.py and 1 other location - About 1 hr to fix
      montydb/engine/queries.py on lines 341..344

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

      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

                      try:
                          logic_box.append(self.field_ops[op](value))
                      except KeyError:
                          raise OperationFailure("unknown operator: {}".format(op))
      Severity: Major
      Found in montydb/engine/queries.py and 1 other location - About 1 hr to fix
      montydb/engine/queries.py on lines 283..288

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

      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