Showing 14 of 26 total issues

File pool.py has 571 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""
Connection Pooling

"""
import datetime
Severity: Major
Found in queries/pool.py - About 1 day to fix

    File tornado_session.py has 382 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    """
    Tornado Session Adapter
    
    Use Queries asynchronously within the Tornado framework.
    
    
    Severity: Minor
    Found in queries/tornado_session.py - About 5 hrs to fix

      File session.py has 285 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      """The Session class allows for a unified (and simplified) view of
      interfacing with a PostgreSQL database server.
      
      Connection details are passed in as a PostgreSQL URI and connections are pooled
      by default, allowing for reuse of connections across modules in the Python
      Severity: Minor
      Found in queries/session.py - About 2 hrs to fix

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

        class Session(object):
            """The Session class allows for a unified (and simplified) view of
            interfacing with a PostgreSQL database server. The Session object can
            act as a context manager, providing automated cleanup and simple, Pythonic
            way of interacting with the object.
        Severity: Minor
        Found in queries/session.py - About 2 hrs to fix

          Pool has 23 functions (exceeds 20 allowed). Consider refactoring.
          Open

          class Pool(object):
              """A connection pool for gaining access to and managing connections"""
              _lock = threading.Lock()
          
              idle_start = None
          Severity: Minor
          Found in queries/pool.py - About 2 hrs to fix

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

            class PoolManager(object):
                """The connection pool object implements behavior around connections and
                their use in queries.Session objects.
            
                We carry a pool id instead of the connection URI so that we will not be
            Severity: Minor
            Found in queries/pool.py - About 2 hrs to fix

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

                  def _poll_connection(self, fd):
                      """Check with psycopg2 to see what action to take. If the state is
                      POLL_OK, we should have a pending callback for that fd.
              
                      :param int fd: The socket fd for the postgresql connection
              Severity: Minor
              Found in queries/tornado_session.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 _create_connection has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

                  def _create_connection(self, future):
                      """Create a new PostgreSQL connection
              
                      :param tornado.concurrent.Future future: future for new conn result
              
              
              Severity: Minor
              Found in queries/tornado_session.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 uri_to_kwargs has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

              def uri_to_kwargs(uri):
                  """Return a URI as kwargs for connecting to PostgreSQL with psycopg2,
                  applying default values for non-specified areas of the URI.
              
                  :param str uri: The connection URI
              Severity: Minor
              Found in queries/utils.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 _execute has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                  def _execute(self, method, query, parameters=None):
                      """Issue a query asynchronously on the server, mogrifying the
                      parameters against the sql statement and yielding the results
                      as a :py:class:`Results <queries.tornado_session.Results>` object.
              
              
              Severity: Minor
              Found in queries/tornado_session.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, uri=session.DEFAULT_URI,
              Severity: Minor
              Found in queries/tornado_session.py - About 35 mins to fix

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

                    def __init__(self, uri=DEFAULT_URI,
                Severity: Minor
                Found in queries/session.py - About 35 mins to fix

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

                  def uri(host='localhost', port=5432, dbname='postgres', user='postgres',
                  Severity: Minor
                  Found in queries/utils.py - About 35 mins to fix

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

                        def _cleanup_fd(self, fd, close=False):
                            """Ensure the socket socket is removed from the IOLoop, the
                            connection stack, and futures stack.
                    
                            :param int fd: The fd # to cleanup
                    Severity: Minor
                    Found in queries/tornado_session.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