opensistemas-hub/osbrain

View on GitHub
osbrain/agent.py

Summary

Maintainability
F
1 wk
Test Coverage

File agent.py has 1849 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""
Core agent classes.
"""
import contextlib
import errno
Severity: Major
Found in osbrain/agent.py - About 5 days to fix

    Agent has 84 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Agent:
        """
        A base agent class which is to be served by an AgentProcess.
    
        An AgentProcess runs a Pyro multiplexed server and serves one Agent
    Severity: Major
    Found in osbrain/agent.py - About 1 day to fix

      Function run_agent has 8 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      def run_agent(
      Severity: Major
      Found in osbrain/agent.py - About 1 hr to fix

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

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

          Function send has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

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

            Function bind has 6 arguments (exceeds 4 allowed). Consider refactoring.
            Open

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

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

                  def _get_unique_external_zmq_sockets(self):
                      """
                      Return an iterable containing all the zmq.Socket objects from
                      `self.socket` which are not internal, without repetition.
              
              
              Severity: Minor
              Found in osbrain/agent.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 _send_channel_sync_sub has 6 arguments (exceeds 4 allowed). Consider refactoring.
              Open

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

                Function _send_channel has 6 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    def _send_channel(self, channel, message, topic, handler, wait, on_error):
                Severity: Minor
                Found in osbrain/agent.py - About 45 mins to fix

                  Function _bind_address has 6 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

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

                    Function _bind_channel has 6 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        def _bind_channel(
                    Severity: Minor
                    Found in osbrain/agent.py - About 45 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 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 _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 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 _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

                              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 _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 _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

                              There are no issues that match your filters.

                              Category
                              Status