saltstack/salt

View on GitHub
salt/modules/disk.py

Summary

Maintainability
F
1 wk
Test Coverage

File disk.py has 783 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-
'''
Module for managing disks and blockdevices
'''
from __future__ import absolute_import, print_function, unicode_literals
Severity: Major
Found in salt/modules/disk.py - About 1 day to fix

    Function hdparms has a Cognitive Complexity of 53 (exceeds 5 allowed). Consider refactoring.
    Open

    def hdparms(disks, args=None):
        '''
        Retrieve all info's for all disks
        parse 'em into a nice dict
        (which, considering hdparms output, is quite a hassle)
    Severity: Minor
    Found in salt/modules/disk.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 usage has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
    Open

    def usage(args=None):
        '''
        Return usage information for volumes mounted on this minion
    
        .. versionchanged:: 2019.2.0
    Severity: Minor
    Found in salt/modules/disk.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

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

    def smart_attributes(dev, attributes=None, values=None):
        '''
        Fetch SMART attributes
        Providing attributes will deliver only requested attributes
        Providing values will deliver only requested values for attributes
    Severity: Minor
    Found in salt/modules/disk.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 fstype has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
    Open

    def fstype(device):
        '''
        Return the filesystem name of the specified device
    
        .. versionadded:: 2016.11.0
    Severity: Minor
    Found in salt/modules/disk.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 _iostat_fbsd has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
    Open

    def _iostat_fbsd(interval, count, disks):
        '''
        Tested on FreeBSD, quite likely other BSD's only need small changes in cmd syntax
        '''
        if disks is None:
    Severity: Minor
    Found in salt/modules/disk.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 _iostat_aix has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
    Open

    def _iostat_aix(interval, count, disks):
        '''
        AIX support to gather and return (averaged) IO stats.
        '''
        log.debug('DGM disk iostat entry')
    Severity: Minor
    Found in salt/modules/disk.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 _iostat_linux has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
    Open

    def _iostat_linux(interval, count, disks):
        if disks is None:
            iostat_cmd = 'iostat -x {0} {1} '.format(interval, count)
        elif isinstance(disks, six.string_types):
            iostat_cmd = 'iostat -xd {0} {1} {2}'.format(interval, count, disks)
    Severity: Minor
    Found in salt/modules/disk.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 percent has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

    def percent(args=None):
        '''
        Return partition information for volumes mounted on this minion
    
        CLI Example:
    Severity: Minor
    Found in salt/modules/disk.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 format_ has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

    def format_(device,
                fs_type='ext4',
                inode_size=None,
                lazy_itable_init=None,
                fat=None,
    Severity: Minor
    Found in salt/modules/disk.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 inodeusage has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

    def inodeusage(args=None):
        '''
        Return inode usage information for volumes mounted on this minion
    
        CLI Example:
    Severity: Minor
    Found in salt/modules/disk.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 hpa has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

    def hpa(disks, size=None):
        '''
        Get/set Host Protected Area settings
    
        T13 INCITS 346-2001 (1367D) defines the BEER (Boot Engineering Extension Record)
    Severity: Minor
    Found in salt/modules/disk.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 tune has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

    def tune(device, **kwargs):
        '''
        Set attributes for the specified device
    
        CLI Example:
    Severity: Minor
    Found in salt/modules/disk.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 dump has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

    def dump(device, args=None):
        '''
        Return all contents of dumpe2fs for a specified device
    
        CLI Example:
    Severity: Minor
    Found in salt/modules/disk.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 blkid has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    def blkid(device=None, token=None):
        '''
        Return block device attributes: UUID, LABEL, etc. This function only works
        on systems where blkid is available.
    
    
    Severity: Minor
    Found in salt/modules/disk.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 '=' in val:
                                deep_key, val = val.split('=', 1)
                                deep_key = deep_key.strip()
                                val = val.strip()
                                if val:
    Severity: Major
    Found in salt/modules/disk.py - About 45 mins to fix

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

              while len(comps) >= 2 and not comps[1].isdigit():
                  comps[0] = '{0} {1}'.format(comps[0], comps[1])
                  comps.pop(1)
      Severity: Major
      Found in salt/modules/disk.py and 1 other location - About 3 hrs to fix
      salt/modules/disk.py on lines 245..247

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

      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

              while len(comps) >= 2 and not comps[1].isdigit():
                  comps[0] = '{0} {1}'.format(comps[0], comps[1])
                  comps.pop(1)
      Severity: Major
      Found in salt/modules/disk.py and 1 other location - About 3 hrs to fix
      salt/modules/disk.py on lines 132..134

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

      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

          if disks is None:
              iostat_cmd = 'iostat -xC -w {0} -c {1} '.format(interval, count)
          elif isinstance(disks, six.string_types):
              iostat_cmd = 'iostat -x -w {0} -c {1} {2}'.format(interval, count, disks)
          else:
      Severity: Major
      Found in salt/modules/disk.py and 1 other location - About 2 hrs to fix
      salt/modules/disk.py on lines 864..869

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

      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

          if disks is None:
              iostat_cmd = 'iostat -x {0} {1} '.format(interval, count)
          elif isinstance(disks, six.string_types):
              iostat_cmd = 'iostat -xd {0} {1} {2}'.format(interval, count, disks)
          else:
      Severity: Major
      Found in salt/modules/disk.py and 1 other location - About 2 hrs to fix
      salt/modules/disk.py on lines 811..816

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

      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 3 locations. Consider refactoring.
      Open

                  if __grains__['kernel'] == 'Darwin':
                      ret[comps[8]] = {
                              'filesystem': comps[0],
                              '512-blocks': comps[1],
                              'used': comps[2],
      Severity: Major
      Found in salt/modules/disk.py and 2 other locations - About 2 hrs to fix
      salt/modules/disk.py on lines 199..205
      salt/modules/disk.py on lines 199..213

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

      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 3 locations. Consider refactoring.
      Open

                  elif __grains__['kernel'] == 'AIX':
                      ret[comps[6]] = {
                          'inodes': comps[4],
                          'used': comps[5],
                          'free': comps[2],
      Severity: Major
      Found in salt/modules/disk.py and 2 other locations - About 2 hrs to fix
      salt/modules/disk.py on lines 138..155
      salt/modules/disk.py on lines 199..213

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

      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