I'm designing an API with SQLAlchemy (querying MySQL) and I would like to force all my queries to have page_size (LIMIT) and page_number (OFFSET) parameters.
Is there a clean way of doing this with SQLAlchemy? Perhaps building a factory of some sort to create a custom Query object? Or maybe there is a good way to do this with a mixin class?
I tried the obvious thing and it didn't work because .limit() and .offset() must be called after all filter conditions have been applied:
def q(page=0, page_size=None):
q = session.query(...)
if page_size: q = q.limit(page_size)
if page: q = q.offset(page*page_size)
return q
When I try using this, I get the exception:
sqlalchemy.exc.InvalidRequestError: Query.filter() being called on a Query which already has LIMIT or OFFSET applied. To modify the row-limited results of a Query, call from_self() first. Otherwise, call filter() before limit() or offset() are applied.
EDIT
Not sure if this is the best way, but I hacked this up and it seems to work given a couple minutes of testing:
from sqlalchemy.orm import Query, sessionmaker
from sqlalchemy.orm.query import _generative
class DeferredLimitOffsetQuery(Query):
_deferred_limit = None
_deferred_offset = None
@_generative(Query._no_statement_condition)
def deferred_limit(self, limit):
self._deferred_limit = limit
@_generative(Query._no_statement_condition)
def deferred_offset(self, offset):
self._deferred_offset = offset
def __iter__(self):
"""Applies a deferred limit and offset to Query."""
q = self.limit(self._deferred_limit).offset(self._deferred_offset)
return Query.__iter__(q)
And I can use this query_cls by configuring with sessionmaker:
Session = sessionmaker(bind=engine, query_cls=DeferredLimitOffsetQuery)