hackedteam/vector-edk

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

Summary

Maintainability
F
4 mos
Test Coverage

File _pyio.py has 1507 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""
Python implementation of the io module.
"""

from __future__ import (print_function, unicode_literals)
Severity: Major
Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.py - About 4 days to fix

    Function open has a Cognitive Complexity of 46 (exceeds 5 allowed). Consider refactoring.
    Open

    def open(file, mode="r", buffering=-1,
             encoding=None, errors=None,
             newline=None, closefd=True):
    
        r"""Open file and return a stream.  Raise IOError upon failure.
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.py - About 7 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 39 (exceeds 5 allowed). Consider refactoring.
    Open

        def readline(self, limit=None):
            if self.closed:
                raise ValueError("read from closed file")
            if limit is None:
                limit = -1
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.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

    TextIOWrapper has 32 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class TextIOWrapper(TextIOBase):
    
        r"""Character and line based layer over a BufferedIOBase object, buffer.
    
        encoding gives the name of the encoding that the stream will be
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.py - About 4 hrs to fix

      Function _read_unlocked has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
      Open

          def _read_unlocked(self, n=None):
              nodata_val = b""
              empty_values = (b"", None)
              buf = self._read_buf
              pos = self._read_pos
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.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 seek has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
      Open

          def seek(self, cookie, whence=0):
              if self.closed:
                  raise ValueError("tell on closed file")
              if not self._seekable:
                  raise IOError("underlying stream is not seekable")
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.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

      IOBase has 24 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class IOBase:
          __metaclass__ = abc.ABCMeta
      
          """The abstract base class for all I/O classes, acting on streams of
          bytes. There is no public constructor.
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.py - About 2 hrs to fix

        Function __init__ has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
        Open

            def __init__(self, buffer, encoding=None, errors=None, newline=None,
                         line_buffering=False):
                if newline is not None and not isinstance(newline, basestring):
                    raise TypeError("illegal newline type: %r" % (type(newline),))
                if newline not in (None, "", "\n", "\r", "\r\n"):
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.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 16 (exceeds 5 allowed). Consider refactoring.
        Open

            def readline(self, limit=-1):
                r"""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/_pyio.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 tell has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
        Open

            def tell(self):
                if not self._seekable:
                    raise IOError("underlying stream is not seekable")
                if not self._telling:
                    raise IOError("telling position disabled by next() call")
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.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 decode has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

            def decode(self, input, final=False):
                # decode input (with the eventual \r from a previous pass)
                if self.decoder is None:
                    output = input
                else:
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.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 _peek_unlocked has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
        Open

            def _peek_unlocked(self, n=0):
                want = min(n, self.buffer_size)
                have = len(self._read_buf) - self._read_pos
                if have < want or have <= 0:
                    to_read = self.buffer_size - have
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.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 open has 32 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        def open(file, mode="r", buffering=-1,
                 encoding=None, errors=None,
                 newline=None, closefd=True):
        
            r"""Open file and return a stream.  Raise IOError upon failure.
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.py - About 1 hr to fix

          Function _flush_unlocked has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

              def _flush_unlocked(self):
                  if self.closed:
                      raise ValueError("flush of closed file")
                  written = 0
                  try:
          Severity: Minor
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.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 a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

              def write(self, b):
                  if self.closed:
                      raise ValueError("write to closed file")
                  if isinstance(b, unicode):
                      raise TypeError("can't write unicode to binary stream")
          Severity: Minor
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.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 a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

              def write(self, s):
                  if self.closed:
                      raise ValueError("write to closed file")
                  if not isinstance(s, unicode):
                      raise TypeError("can't write %s to text stream" %
          Severity: Minor
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.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 open has 7 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          def open(file, mode="r", buffering=-1,
          Severity: Major
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.py - About 50 mins to fix

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

                def seek(self, pos, whence=0):
                    if self.closed:
                        raise ValueError("seek on closed file")
                    try:
                        pos.__index__
            Severity: Minor
            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.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 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                def __init__(self, buffer, encoding=None, errors=None, newline=None,
            Severity: Minor
            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.py - About 35 mins to fix

              Function _pack_cookie has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  def _pack_cookie(self, position, dec_flags=0,
              Severity: Minor
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.py - About 35 mins to fix

                Function truncate has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    def truncate(self, pos=None):
                        if self.closed:
                            raise ValueError("truncate on closed file")
                        if pos is None:
                            pos = self._pos
                Severity: Minor
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.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 read has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    def read(self, n=None):
                        self._checkReadable()
                        if n is None:
                            n = -1
                        decoder = self._decoder or self._get_decoder()
                Severity: Minor
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.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 readlines has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    def readlines(self, hint=None):
                        """Return a list of lines from the stream.
                
                        hint can be specified to control the number of lines read: no more
                        lines will be read if the total size (in bytes/characters) of all
                Severity: Minor
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/_pyio.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

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

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

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

                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