hackedteam/vector-edk

View on GitHub
AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.py

Summary

Maintainability
F
3 mos
Test Coverage

File zipfile.py has 1111 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""
Read and write ZIP files.
"""
import struct, os, time, sys, shutil
import binascii, cStringIO, stat
Severity: Major
Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.py - About 2 days to fix

    Function writepy has a Cognitive Complexity of 52 (exceeds 5 allowed). Consider refactoring.
    Open

        def writepy(self, pathname, basename = ""):
            """Add all files from "pathname" to the ZIP archive.
    
            If pathname is a package directory, search the directory and
            all package subdirectories recursively for all *.py and enter
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 main has a Cognitive Complexity of 35 (exceeds 5 allowed). Consider refactoring.
    Open

    def main(args = None):
        import textwrap
        USAGE=textwrap.dedent("""\
            Usage:
                zipfile.py -l zipfile.zip        # Show listing of a zipfile
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 close has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
    Open

        def close(self):
            """Close the file, and for mode "w" and "a" write the ending
            records."""
            if self.fp is None:
                return
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 __init__ has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
    Open

        def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=False):
            """Open the ZIP file with mode read "r", write "w" or append "a"."""
            if mode not in ("r", "w", "a"):
                raise RuntimeError('ZipFile() requires mode "r", "w", or "a"')
    
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 open has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

        def open(self, name, mode="r", pwd=None):
            """Return file-like object for 'name'."""
            if mode not in ("r", "U", "rU"):
                raise RuntimeError, 'open() requires mode "r", "U", or "rU"'
            if not self.fp:
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 _decodeExtra has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
    Open

        def _decodeExtra(self):
            # Try to decode the extra field.
            extra = self.extra
            unpack = struct.unpack
            while extra:
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 readline has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
    Open

        def readline(self, limit=-1):
            """Read and return a line from the stream.
    
            If limit is specified, at most limit bytes will be read.
            """
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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

    ZipFile has 21 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class ZipFile:
        """ Class with methods to open, read, write, close, list zip files.
    
        z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=False)
    
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.py - About 2 hrs to fix

      Function write has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

          def write(self, filename, arcname=None, compress_type=None):
              """Put the bytes from filename into the archive under the name
              arcname."""
              if not self.fp:
                  raise RuntimeError(
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 _writecheck has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def _writecheck(self, zinfo):
              """Check for errors before writing a file to the archive."""
              if zinfo.filename in self.NameToInfo:
                  if self.debug:      # Warning for duplicate names
                      print "Duplicate name:", zinfo.filename
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 read1 has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def read1(self, n):
              """Read up to n bytes with at most one read() system call."""
      
              # Simplify algorithm (branching) by transforming negative n to large n.
              if n < 0 or n is None:
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 _RealGetContents has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          def _RealGetContents(self):
              """Read in the table of contents for the ZIP file."""
              fp = self.fp
              try:
                  endrec = _EndRecData(fp)
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 write has 28 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def write(self, filename, arcname=None, compress_type=None):
              """Put the bytes from filename into the archive under the name
              arcname."""
              if not self.fp:
                  raise RuntimeError(
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.py - About 1 hr to fix

        Function _get_codename has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

            def _get_codename(self, pathname, basename):
                """Return (filename, archivename) for the path.
        
                Given a module name path, return the correct file path and
                archive name, compiling if necessary.  For example, given
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 os.path.isfile(os.path.join(path, "__init__.py")):
                                    # This is a package directory, add it
                                    self.writepy(path, basename)  # Recursive call
                            elif ext == ".py":
        Severity: Major
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.py - About 45 mins to fix

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

              def _extract_member(self, member, targetpath, pwd):
                  """Extract the ZipInfo object 'member' to a physical
                     file on the path targetpath.
                  """
                  # build the destination pathname, replacing
          Severity: Minor
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 self.debug:
                                      print "Adding", arcname
                                  self.write(fname, arcname)
          Severity: Major
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.py - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                                    if self.debug:
                                        print "Adding", arcname
                                    self.write(fname, arcname)
            Severity: Major
            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.py - About 45 mins to fix

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

                  def read(self, n=-1):
                      """Read and return up to n bytes.
                      If the argument is omitted, None, or negative, data is read and returned until EOF is reached..
                      """
                      buf = ''
              Severity: Minor
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 writestr has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  def writestr(self, zinfo_or_arcname, bytes, compress_type=None):
                      """Write a file into the archive.  The contents is the string
                      'bytes'.  'zinfo_or_arcname' is either a ZipInfo instance or
                      the name of the file in the archive."""
                      if not isinstance(zinfo_or_arcname, ZipInfo):
              Severity: Minor
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 _GenerateCRCTable has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  def _GenerateCRCTable():
                      """Generate a CRC-32 table.
              
                      ZIP encryption uses the CRC32 one-byte primitive for scrambling some
                      internal keys. We noticed that a direct implementation is faster than
              Severity: Minor
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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 line
              Severity: Major
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.py - About 30 mins to fix

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

                def _EndRecData(fpin):
                    """Return data from the "End of Central Directory" record, or None.
                
                    The data is a list of the nine items in the ZIP "End of central dir"
                    record followed by a tenth item, the file seek offset of this record."""
                Severity: Minor
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.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

                Severity: Major
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/zipfile.py and 1 other location - About 3 mos to fix
                vector-uefi/fd/efi/StdLib/lib/python.27/zipfile.py on lines 0..1437

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

                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