mysql_pool.py
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:4k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. """
  2. @file mysql_pool.py
  3. @brief Thin wrapper around eventlet.db_pool that chooses MySQLdb and Tpool.
  4. $LicenseInfo:firstyear=2007&license=mit$
  5. Copyright (c) 2007-2010, Linden Research, Inc.
  6. Permission is hereby granted, free of charge, to any person obtaining a copy
  7. of this software and associated documentation files (the "Software"), to deal
  8. in the Software without restriction, including without limitation the rights
  9. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. copies of the Software, and to permit persons to whom the Software is
  11. furnished to do so, subject to the following conditions:
  12. The above copyright notice and this permission notice shall be included in
  13. all copies or substantial portions of the Software.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  20. THE SOFTWARE.
  21. $/LicenseInfo$
  22. """
  23. import MySQLdb
  24. from eventlet import db_pool
  25. class DatabaseConnector(db_pool.DatabaseConnector):
  26.     def __init__(self, credentials, *args, **kwargs):
  27.         super(DatabaseConnector, self).__init__(MySQLdb, credentials,
  28.                                                 conn_pool=db_pool.ConnectionPool,
  29.                                                 *args, **kwargs)
  30.     # get is extended relative to eventlet.db_pool to accept a port argument
  31.     def get(self, host, dbname, port=3306):
  32.         key = (host, dbname, port)
  33.         if key not in self._databases:
  34.             new_kwargs = self._kwargs.copy()
  35.             new_kwargs['db'] = dbname
  36.             new_kwargs['host'] = host
  37.             new_kwargs['port'] = port
  38.             new_kwargs.update(self.credentials_for(host))
  39.             dbpool = ConnectionPool(*self._args, **new_kwargs)
  40.             self._databases[key] = dbpool
  41.         return self._databases[key]
  42. class ConnectionPool(db_pool.TpooledConnectionPool):
  43.     """A pool which gives out saranwrapped MySQLdb connections from a pool
  44.     """
  45.     def __init__(self, *args, **kwargs):
  46.         super(ConnectionPool, self).__init__(MySQLdb, *args, **kwargs)
  47.     def get(self):
  48.         conn = super(ConnectionPool, self).get()
  49.         # annotate the connection object with the details on the
  50.         # connection; this is used elsewhere to check that you haven't
  51.         # suddenly changed databases in midstream while making a
  52.         # series of queries on a connection.
  53.         arg_names = ['host','user','passwd','db','port','unix_socket','conv','connect_timeout',
  54.          'compress', 'named_pipe', 'init_command', 'read_default_file', 'read_default_group',
  55.          'cursorclass', 'use_unicode', 'charset', 'sql_mode', 'client_flag', 'ssl',
  56.          'local_infile']
  57.         # you could have constructed this connectionpool with a mix of
  58.         # keyword and non-keyword arguments, but we want to annotate
  59.         # the connection object with a dict so it's easy to check
  60.         # against so here we are converting the list of non-keyword
  61.         # arguments (in self._args) into a dict of keyword arguments,
  62.         # and merging that with the actual keyword arguments
  63.         # (self._kwargs).  The arg_names variable lists the
  64.         # constructor arguments for MySQLdb Connection objects.
  65.         converted_kwargs = dict([ (arg_names[i], arg) for i, arg in enumerate(self._args) ])
  66.         converted_kwargs.update(self._kwargs)
  67.         conn.connection_parameters = converted_kwargs
  68.         return conn