2018-02-12 14:41:40 -06:00
|
|
|
# -*- coding: utf-8; -*-
|
2016-10-09 21:12:13 -05:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Rattail -- Retail Software Framework
|
2018-02-12 14:41:40 -06:00
|
|
|
# Copyright © 2010-2018 Lance Edgar
|
2016-10-09 21:12:13 -05:00
|
|
|
#
|
|
|
|
# This file is part of Rattail.
|
|
|
|
#
|
|
|
|
# Rattail is free software: you can redistribute it and/or modify it under the
|
2017-07-06 23:47:56 -05:00
|
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
|
|
# Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
# version.
|
2016-10-09 21:12:13 -05:00
|
|
|
#
|
|
|
|
# Rattail is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
2017-07-06 23:47:56 -05:00
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
# details.
|
2016-10-09 21:12:13 -05:00
|
|
|
#
|
2017-07-06 23:47:56 -05:00
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# Rattail. If not, see <http://www.gnu.org/licenses/>.
|
2016-10-09 21:12:13 -05:00
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
"""
|
|
|
|
Tween Factories
|
|
|
|
"""
|
|
|
|
|
|
|
|
from __future__ import unicode_literals, absolute_import
|
|
|
|
|
2018-02-12 14:41:40 -06:00
|
|
|
import six
|
2018-08-17 00:24:51 -05:00
|
|
|
from sqlalchemy.exc import OperationalError
|
2018-02-12 14:41:40 -06:00
|
|
|
|
2016-10-09 21:12:13 -05:00
|
|
|
|
|
|
|
def sqlerror_tween_factory(handler, registry):
|
|
|
|
"""
|
|
|
|
Produces a tween which will convert ``sqlalchemy.exc.OperationalError``
|
2018-08-17 00:04:59 -05:00
|
|
|
instances (caused by database server restart) into a retryable error
|
|
|
|
instance, so that a second attempt may be made to connect to the database
|
|
|
|
before really giving up.
|
2016-10-09 21:12:13 -05:00
|
|
|
|
|
|
|
.. note::
|
|
|
|
This tween alone is not enough to cause the transaction to be retried;
|
|
|
|
it only marks the error as being *retryable*. If you wish more than one
|
2018-08-17 00:04:59 -05:00
|
|
|
attempt to be made, you must define the ``retry.attempts`` (or
|
|
|
|
``tm.attempts`` if running pyramid<1.9) setting within your Pyramid app
|
|
|
|
configuration. For more info see `Retrying`_.
|
2016-10-09 21:12:13 -05:00
|
|
|
|
|
|
|
.. _Retrying: http://docs.pylonsproject.org/projects/pyramid_tm/en/latest/#retrying
|
|
|
|
"""
|
|
|
|
|
|
|
|
def sqlerror_tween(request):
|
2018-08-17 00:04:59 -05:00
|
|
|
try:
|
|
|
|
from pyramid_retry import mark_error_retryable
|
|
|
|
except ImportError:
|
|
|
|
mark_error_retryable = None
|
|
|
|
from transaction.interfaces import TransientError
|
|
|
|
|
2016-10-09 21:12:13 -05:00
|
|
|
try:
|
|
|
|
response = handler(request)
|
2018-08-17 00:24:51 -05:00
|
|
|
except OperationalError as error:
|
2018-08-17 00:04:59 -05:00
|
|
|
|
|
|
|
# if connection is invalid, allow retry
|
2016-10-09 21:12:13 -05:00
|
|
|
if error.connection_invalidated:
|
2018-08-17 00:04:59 -05:00
|
|
|
if mark_error_retryable:
|
|
|
|
mark_error_retryable(error)
|
|
|
|
raise error
|
|
|
|
else:
|
|
|
|
raise TransientError(six.text_type(error))
|
|
|
|
|
|
|
|
# if connection was *not* invalid, raise original error
|
2016-10-09 21:12:13 -05:00
|
|
|
raise
|
2018-08-17 00:04:59 -05:00
|
|
|
|
2016-10-09 21:12:13 -05:00
|
|
|
return response
|
|
|
|
|
|
|
|
return sqlerror_tween
|