opensistemas-hub/osbrain

View on GitHub

Showing 38 of 42 total issues

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

    def _send_channel_async_rep(
Severity: Minor
Found in osbrain/agent.py - About 35 mins to fix

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

        def __init__(
    Severity: Minor
    Found in osbrain/agent.py - About 35 mins to fix

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

      def attribute_match_all(
      Severity: Minor
      Found in osbrain/helper.py - About 35 mins to fix

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

            def each(self, period, method, *args, alias=None, **kwargs):
        Severity: Minor
        Found in osbrain/agent.py - About 35 mins to fix

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

          def wait_agent_condition(agent, condition, *args, timeout=3, **kwargs):
          Severity: Minor
          Found in osbrain/helper.py - About 35 mins to fix

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

                def after(self, delay, method, *args, alias=None, **kwargs):
            Severity: Minor
            Found in osbrain/agent.py - About 35 mins to fix

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

              def random_nameserver_process(
              Severity: Minor
              Found in osbrain/nameserver.py - About 35 mins to fix

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

                    def _bind_channel(
                        self,
                        kind,
                        alias=None,
                        handler=None,
                Severity: Minor
                Found in osbrain/agent.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 True
                Severity: Major
                Found in osbrain/helper.py - About 30 mins to fix

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

                      def _cleanup_ipc_socket_files(self, address):
                          """
                          Make sure no IPC socket files are left in the file system.
                          """
                          if isinstance(address, AgentChannel):
                  Severity: Minor
                  Found in osbrain/agent.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 shutdown_agents has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                      def shutdown_agents(self, timeout=10.0):
                          """
                          Shutdown all agents registered in the name server.
                  
                          Parameters
                  Severity: Minor
                  Found in osbrain/proxy.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 _common_address_to_host_port has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                  def _common_address_to_host_port(addr):
                      """
                      Try to convert an address to a (host, port) tuple.
                  
                      This function is meant to be used with well-known types. For a more
                  Severity: Minor
                  Found in osbrain/address.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 agent_dies has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                  def agent_dies(agent, nsproxy, timeout=1.0):
                      """
                      Check if an agent dies within a given period.
                  
                      Parameters
                  Severity: Minor
                  Found in osbrain/helper.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 attribute_match_all has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                  def attribute_match_all(
                      attribute, length=None, data=None, value=None, endswith=None
                  ):
                      """
                      Check if an attribute matches all of the following specified conditions:
                  Severity: Minor
                  Found in osbrain/helper.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 unsubscribe has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                      def unsubscribe(self, alias: str, topic: Union[bytes, str]) -> None:
                          """
                          Unsubscribe a SUB/SYNC_SUB socket given by its alias from a given
                          specific topic, and delete its entry from the handlers dictionary.
                  
                  
                  Severity: Minor
                  Found in osbrain/agent.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 async_shutdown_agents has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                      def async_shutdown_agents(self, nsaddr):
                          """
                          Shutdown all agents registered in the name server.
                          """
                          for name in self.agents():
                  Severity: Minor
                  Found in osbrain/nameserver.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 _process_sub_event has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                      def _process_sub_event(self, socket, addr, data):
                          """
                          Process a SUB socket's event.
                  
                          Parameters
                  Severity: Minor
                  Found in osbrain/agent.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 locate_ns has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                  def locate_ns(nsaddr, timeout=3.0):
                      """
                      Locate a name server to ensure it actually exists.
                  
                      Parameters
                  Severity: Minor
                  Found in osbrain/proxy.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