saltstack/salt

View on GitHub
salt/modules/portage_config.py

Summary

Maintainability
F
1 wk
Test Coverage

Function append_to_package_conf has a Cognitive Complexity of 87 (exceeds 5 allowed). Consider refactoring.
Open

def append_to_package_conf(conf, atom='', flags=None, string='', overwrite=False):
    '''
    Append a string or a list of flags for a given package or DEPEND atom to a
    given configuration file.

Severity: Minor
Found in salt/modules/portage_config.py - About 1 day 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

File portage_config.py has 600 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-
'''
Configure ``portage(5)``
'''

Severity: Major
Found in salt/modules/portage_config.py - About 1 day to fix

    Function _package_conf_ordering has a Cognitive Complexity of 62 (exceeds 5 allowed). Consider refactoring.
    Open

    def _package_conf_ordering(conf, clean=True, keep_backup=False):
        '''
        Move entries in the correct file.
        '''
        if conf in SUPPORTED_CONFS:
    Severity: Minor
    Found in salt/modules/portage_config.py - About 1 day 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 _unify_keywords has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
    Open

    def _unify_keywords():
        '''
        Merge /etc/portage/package.keywords and
        /etc/portage/package.accept_keywords.
        '''
    Severity: Minor
    Found in salt/modules/portage_config.py - About 4 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

    Cyclomatic complexity is too high in function append_to_package_conf. (36)
    Open

    def append_to_package_conf(conf, atom='', flags=None, string='', overwrite=False):
        '''
        Append a string or a list of flags for a given package or DEPEND atom to a
        given configuration file.
    
    
    Severity: Minor
    Found in salt/modules/portage_config.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Function get_flags_from_package_conf has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
    Open

    def get_flags_from_package_conf(conf, atom):
        '''
        Get flags for a given package or DEPEND atom.
        Warning: This only works if the configuration files tree is in the correct
        format (the one enforced by enforce_nice_config)
    Severity: Minor
    Found in salt/modules/portage_config.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 is_present has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
    Open

    def is_present(conf, atom):
        '''
        Tell if a given package or DEPEND atom is present in the configuration
        files tree.
        Warning: This only works if the configuration files tree is in the correct
    Severity: Minor
    Found in salt/modules/portage_config.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

    Cyclomatic complexity is too high in function _package_conf_ordering. (24)
    Open

    def _package_conf_ordering(conf, clean=True, keep_backup=False):
        '''
        Move entries in the correct file.
        '''
        if conf in SUPPORTED_CONFS:
    Severity: Minor
    Found in salt/modules/portage_config.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Function filter_flags has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

    def filter_flags(use, use_expand_hidden, usemasked, useforced):
        '''
        .. versionadded:: 2015.8.0
    
        Filter function to remove hidden or otherwise not normally
    Severity: Minor
    Found in salt/modules/portage_config.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 _get_config_file has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    def _get_config_file(conf, atom):
        '''
        Parse the given atom, allowing access to its parts
        Success does not mean that the atom exists, just that it
        is in the correct format.
    Severity: Minor
    Found in salt/modules/portage_config.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 _merge_flags has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    def _merge_flags(new_flags, old_flags=None, conf='any'):
        '''
        Merges multiple lists of flags removing duplicates and resolving conflicts
        giving priority to lasts lists.
        '''
    Severity: Minor
    Found in salt/modules/portage_config.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

    Avoid deeply nested control flow statements.
    Open

                        if line and not line.startswith('#'):
                            append_to_package_conf('accept_keywords', string=line)
                os.remove(old_path)
    Severity: Major
    Found in salt/modules/portage_config.py - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                          with salt.utils.files.fopen(file_path) as fp_:
                              rearrange.extend(salt.utils.data.decode(fp_.readlines()))
                          os.remove(file_path)
      Severity: Major
      Found in salt/modules/portage_config.py - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                if line_package == six.text_type(atom):
                                    return True
                            else:
        Severity: Major
        Found in salt/modules/portage_config.py - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                              with salt.utils.files.fopen(file_path, 'r+') as file_handler:
                                  for line in file_handler:
                                      line = salt.utils.stringutils.to_unicode(line)
                                      try:
                                          atom = line.strip().split()[0]
          Severity: Major
          Found in salt/modules/portage_config.py - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                                if not new_contents:
                                    os.remove(file_path)
            
            
            Severity: Major
            Found in salt/modules/portage_config.py - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                                  with salt.utils.files.fopen(file_path) as fh_:
                                      for line in fh_:
                                          line = salt.utils.stringutils.to_unicode(line).strip()
                                          if line and not line.startswith('#'):
                                              append_to_package_conf(
              Severity: Major
              Found in salt/modules/portage_config.py - About 45 mins to fix

                Avoid deeply nested control flow statements.
                Open

                                        if merged_flags:
                                            new_contents += '{0} {1}\n'.format(
                                                atom, ' '.join(merged_flags))
                                        else:
                                            new_contents += '{0}\n'.format(atom)
                Severity: Major
                Found in salt/modules/portage_config.py - About 45 mins to fix

                  Avoid deeply nested control flow statements.
                  Open

                                          if conf == 'accept_keywords':
                                              if not old_flags:
                                                  new_contents += l
                                                  if not new_flags:
                                                      added = True
                  Severity: Major
                  Found in salt/modules/portage_config.py - About 45 mins to fix

                    Avoid deeply nested control flow statements.
                    Open

                                            if f_tmp:
                                                flags.extend(f_tmp)
                                            else:
                                                flags.append('~ARCH')
                    
                    
                    Severity: Major
                    Found in salt/modules/portage_config.py - About 45 mins to fix

                      Function _package_conf_file_to_dir has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                      Open

                      def _package_conf_file_to_dir(file_name):
                          '''
                          Convert a config file to a config directory.
                          '''
                          if file_name in SUPPORTED_CONFS:
                      Severity: Minor
                      Found in salt/modules/portage_config.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

                      Avoid deeply nested control flow statements.
                      Open

                                              if match_list.issubset(line_list):
                                                  return True
                              except IOError:
                      Severity: Major
                      Found in salt/modules/portage_config.py - About 45 mins to fix

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

                        def _p_to_cp(p):
                            '''
                            Convert a package name or a DEPEND atom to category/package format.
                            Raises an exception if program name is ambiguous.
                            '''
                        Severity: Minor
                        Found in salt/modules/portage_config.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

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

                                            with salt.utils.files.fopen(file_path) as fh_:
                                                for line in fh_:
                                                    line = salt.utils.stringutils.to_unicode(line).strip()
                                                    if line and not line.startswith('#'):
                                                        append_to_package_conf(
                        Severity: Major
                        Found in salt/modules/portage_config.py and 1 other location - About 3 hrs to fix
                        salt/modules/portage_config.py on lines 195..199

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

                        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

                                    with salt.utils.files.fopen(old_path) as fh_:
                                        for line in fh_:
                                            line = salt.utils.stringutils.to_unicode(line).strip()
                                            if line and not line.startswith('#'):
                                                append_to_package_conf('accept_keywords', string=line)
                        Severity: Major
                        Found in salt/modules/portage_config.py and 1 other location - About 3 hrs to fix
                        salt/modules/portage_config.py on lines 187..191

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

                        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

                            try:
                                ret = _porttree().dbapi.xmatch("match-all", p)
                                if ret:
                                    return portage.cpv_getkey(ret[0])
                            except portage.exception.InvalidAtom:
                        Severity: Major
                        Found in salt/modules/portage_config.py and 1 other location - About 1 hr to fix
                        salt/modules/ebuildpkg.py on lines 97..101

                        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

                            try:
                                ret = _porttree().dbapi.xmatch('bestmatch-visible', p)
                                if ret:
                                    return portage.dep_getkey(ret)
                            except portage.exception.InvalidAtom:
                        Severity: Major
                        Found in salt/modules/portage_config.py and 1 other location - About 1 hr to fix
                        salt/modules/ebuildpkg.py on lines 90..94

                        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

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

                            if os.path.isdir('/usr/lib/portage/pym'):
                                try:
                                    # In a virtualenv, the portage python path needs to be manually
                                    # added
                                    sys.path.insert(0, '/usr/lib/portage/pym')
                        Severity: Major
                        Found in salt/modules/portage_config.py and 1 other location - About 1 hr to fix
                        salt/modules/ebuildpkg.py on lines 46..52

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

                        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