alot/db/message.py

Summary

Maintainability
C
1 day
Test Coverage

Message has 29 functions (exceeds 20 allowed). Consider refactoring.
Open

class Message:
    """
    a persistent notmuch message object.
    It it uses a :class:`~alot.db.DBManager` for cached manipulation
    and lazy lookups.
Severity: Minor
Found in alot/db/message.py - About 3 hrs to fix

    File message.py has 259 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    # Copyright (C) 2011-2012  Patrick Totzke <patricktotzke@gmail.com>
    # This file is released under the GNU GPL, version 3 or a later revision.
    # For further details see the COPYING file
    import email
    import email.charset as charset
    Severity: Minor
    Found in alot/db/message.py - About 2 hrs to fix

      Function get_attachments has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

          def get_attachments(self):
              """
              returns messages attachments
      
              Derived from the leaves of the email mime tree
      Severity: Minor
      Found in alot/db/message.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 _is_attachment has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def _is_attachment(part, ct_override=None):
              """Takes a mimepart and returns a bool indicating if it's an attachment
      
              Takes an optional argument to override the content type.
              """
      Severity: Minor
      Found in alot/db/message.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 __init__ has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def __init__(self, dbman, msg, thread=None):
              """
              :param dbman: db manager that is used for further lookups
              :type dbman: alot.db.DBManager
              :param msg: the wrapped message
      Severity: Minor
      Found in alot/db/message.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

              def myafterwards():
                  if remove_rest:
                      self._tags = set(tags)
                  else:
                      self._tags = self._tags.union(tags)
      Severity: Major
      Found in alot/db/message.py and 1 other location - About 1 hr to fix
      alot/db/thread.py on lines 114..120

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

      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

              def myafterwards():
                  self._tags = self._tags.difference(tags)
                  if callable(afterwards):
                      afterwards()
      Severity: Minor
      Found in alot/db/message.py and 1 other location - About 30 mins to fix
      alot/db/thread.py on lines 145..148

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

      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

      Continuation line over-indented for hanging indent
      Open

                                  f.read(), self._session_keys)
      Severity: Minor
      Found in alot/db/message.py by pep8

      Continuation lines indentation.

      Continuation lines should align wrapped elements either vertically
      using Python's implicit line joining inside parentheses, brackets
      and braces, or using a hanging indent.
      
      When using a hanging indent these considerations should be applied:
      - there should be no arguments on the first line, and
      - further indentation should be used to clearly distinguish itself
        as a continuation line.
      
      Okay: a = (\n)
      E123: a = (\n    )
      
      Okay: a = (\n    42)
      E121: a = (\n   42)
      E122: a = (\n42)
      E123: a = (\n    42\n    )
      E124: a = (24,\n     42\n)
      E125: if (\n    b):\n    pass
      E126: a = (\n        42)
      E127: a = (24,\n      42)
      E128: a = (24,\n    42)
      E129: if (a or\n    b):\n    pass
      E131: a = (\n    42\n 24)

      Line break after binary operator
      Open

                                  self._attachments[-1].get_content_type() ==
      Severity: Minor
      Found in alot/db/message.py by pep8

      Avoid breaks after binary operators.

      The preferred place to break around a binary operator is before the
      operator, not after it.
      
      W504: (width == 0 +\n height == 0)
      W504: (width == 0 and\n height == 0)
      W504: var = (1 &\n       ~2)
      
      Okay: foo(\n    -x)
      Okay: foo(x\n    [])
      Okay: x = '''\n''' + ''
      Okay: x = '' + '''\n'''
      Okay: foo(x,\n    -y)
      Okay: foo(x,  # comment\n    -y)
      
      The following should be W504 but unary_context is tricky with these
      Okay: var = (1 /\n       -2)
      Okay: var = (1 +\n       -1 +\n       -2)

      Line break after binary operator
      Open

                          if (self._attachments and
      Severity: Minor
      Found in alot/db/message.py by pep8

      Avoid breaks after binary operators.

      The preferred place to break around a binary operator is before the
      operator, not after it.
      
      W504: (width == 0 +\n height == 0)
      W504: (width == 0 and\n height == 0)
      W504: var = (1 &\n       ~2)
      
      Okay: foo(\n    -x)
      Okay: foo(x\n    [])
      Okay: x = '''\n''' + ''
      Okay: x = '' + '''\n'''
      Okay: foo(x,\n    -y)
      Okay: foo(x,  # comment\n    -y)
      
      The following should be W504 but unary_context is tricky with these
      Okay: var = (1 /\n       -2)
      Okay: var = (1 +\n       -1 +\n       -2)

      There are no issues that match your filters.

      Category
      Status