aequitas/python-rflink

View on GitHub

Showing 16 of 16 total issues

File parser.py has 457 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""Parsers."""

# ./.homeassistant/deps/lib/python/site-packages/rflink/parser.py
# /Library/Frameworks/Python.framework/Versions/3.6//lib/python3.6/site-packages/rflink/parser.py

Severity: Minor
Found in rflink/parser.py - About 7 hrs to fix

    File protocol.py has 374 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    """Asyncio protocol implementation of RFlink."""
    
    # ./.homeassistant/deps/lib/python/site-packages/rflink/protocol.py
    # /Library/Frameworks/Python.framework/Versions/3.6//lib/python3.6/site-packages/rflink/protocol.py
    
    
    Severity: Minor
    Found in rflink/protocol.py - About 5 hrs to fix

      Function decode_packet has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
      Open

      def decode_packet(packet: str) -> PacketType:
          """Break packet down into primitives, and do basic interpretation.
      
          >>> decode_packet('20;06;Kaku;ID=41;SWITCH=1;CMD=ON;') == {
          ...     'node': 'gateway',
      Severity: Minor
      Found in rflink/parser.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

      File __main__.py has 263 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      """Command line interface for rflink proxy.
      
      Usage:
        rflinkproxy [-v | -vv] [options]
        rflinkproxy (-h | --help)
      Severity: Minor
      Found in rflinkproxy/__main__.py - About 2 hrs to fix

        Function main has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
        Open

        def main(
            argv: Sequence[str] = sys.argv[1:], loop: Optional[asyncio.AbstractEventLoop] = None
        ) -> None:
            """Parse argument and setup main program loop."""
            args = docopt(
        Severity: Minor
        Found in rflink/__main__.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 packet_events has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
        Open

        def packet_events(packet: PacketType) -> Generator[PacketType, None, None]:
            """Return list of all events in the packet.
        
            >>> x = list(packet_events({
            ...     'protocol': 'alecto v1',
        Severity: Minor
        Found in rflink/parser.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 create_rflink_connection has 10 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        def create_rflink_connection(
        Severity: Major
        Found in rflink/protocol.py - About 1 hr to fix

          Function create_rflink_connection has 10 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          def create_rflink_connection(
          Severity: Major
          Found in rflink/protocol.py - About 1 hr to fix

            Function create_rflink_connection has 10 arguments (exceeds 4 allowed). Consider refactoring.
            Open

            def create_rflink_connection(
            Severity: Major
            Found in rflink/protocol.py - About 1 hr to fix

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

                  def connection_made(self, transport: asyncio.BaseTransport) -> None:
                      """Just logging for now."""
                      self.transport = transport
                      log.debug("connected")
                      sock = transport.get_extra_info("socket")
              Severity: Minor
              Found in rflink/protocol.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 decode_tx_packet has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

              def decode_tx_packet(packet: str) -> dict:
                  """Break packet down into primitives, and do basic interpretation.
              
                  >>> decode_packet('20;06;Kaku;ID=41;SWITCH=1;CMD=ON;') == {
                  ...     'node': 'gateway',
              Severity: Minor
              Found in rflinkproxy/__main__.py - About 55 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 main has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

              def main(argv=sys.argv[1:], loop=None):
                  """Parse argument and setup main program loop."""
                  args = docopt(
                      __doc__, argv=argv, version=pkg_resources.require("rflink")[0].version
                  )
              Severity: Minor
              Found in rflinkproxy/__main__.py - About 55 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 handle_event has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  def handle_event(self, event: PacketType) -> None:
                      """Handle of incoming event (print)."""
                      string = "{id:<32} "
                      if "command" in event:
                          string += "{command}"
              Severity: Minor
              Found in rflink/protocol.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 handle_raw_packet has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  def handle_raw_packet(self, raw_packet: str) -> None:
                      """Parse raw packet string into packet dict."""
                      log.debug("got packet: %s", raw_packet)
                      if rflink_log:
                          print(raw_packet, file=rflink_log)
              Severity: Minor
              Found in rflink/protocol.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 _handle_packet has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  def _handle_packet(self, packet: PacketType) -> None:
                      """Event specific packet handling logic.
              
                      Break packet into events and fires configured event callback or
                      nicely prints events for console.
              Severity: Minor
              Found in rflink/protocol.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

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

                  def handle_raw_packet(self, raw_packet):
                      """Parse raw packet string into packet dict."""
                      log.debug("got packet: %s", raw_packet)
                      packet = None
                      try:
              Severity: Minor
              Found in rflinkproxy/__main__.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

              Severity
              Category
              Status
              Source
              Language