vitess-gh/py/vttest/mysql_flavor.py

100 строки
2.6 KiB
Python
Исходник Обычный вид История

2015-09-18 11:35:06 +03:00
"""Define abstractions for various mysql flavors.
This moduleis used by mysql_db_mysqlctl.py to handle differences
between various flavors of mysql"""
import environment
import logging
import os
import subprocess
# For now, vttop is only used in this module. If other people
# need this, we should move it to environment.
if 'VTTOP' not in os.environ:
sys.stderr.write(
'ERROR: Vitess environment not set up. '
'Please run "source dev.env" first.\n')
sys.exit(1)
# vttop is the toplevel of the vitess source tree
vttop = os.environ['VTTOP']
class MysqlFlavor(object):
"""Base class with default SQL statements."""
def my_cnf(self):
"""Returns the path to an extra my_cnf file, or None."""
return None
def bootstrap_archive(self):
"""Returns the name of the bootstrap archive for mysqlctl.
Name is relative to vitess/data/bootstrap/.
"""
return "mysql-db-dir.tbz"
class MariaDB(MysqlFlavor):
"""Overrides specific to MariaDB."""
def my_cnf(self):
files = [
os.path.join(vttop, "config/mycnf/default-fast.cnf"),
os.path.join(vttop, "config/mycnf/master_mariadb.cnf"),
]
return ":".join(files)
def bootstrap_archive(self):
return "mysql-db-dir_10.0.13-MariaDB.tbz"
class MySQL56(MysqlFlavor):
"""Overrides specific to MySQL 5.6"""
def my_cnf(self):
files = [
os.path.join(vttop, "config/mycnf/default-fast.cnf"),
2015-10-08 21:50:11 +03:00
os.path.join(vttop, "config/mycnf/master_mysql56.cnf"),
]
return ":".join(files)
def bootstrap_archive(self):
return "mysql-db-dir_5.6.24.tbz"
__mysql_flavor = None
# mysql_flavor is a function because we need something to import before the
# actual __mysql_flavor is initialized, since that doesn't happen until after
# the command-line options are parsed. If we make mysql_flavor a variable and
# import it before it's initialized, the module that imported it won't get the
# updated value when it's later initialized.
def mysql_flavor():
return __mysql_flavor
def set_mysql_flavor(flavor):
global __mysql_flavor
if not flavor:
flavor = os.environ.get("MYSQL_FLAVOR", "MariaDB")
# The environment variable might be set, but equal to "".
if flavor == "":
flavor = "MariaDB"
# Set the environment variable explicitly in case we're overriding it via
# command-line flag.
os.environ["MYSQL_FLAVOR"] = flavor
if flavor == "MariaDB":
__mysql_flavor = MariaDB()
elif flavor == "MySQL56":
__mysql_flavor = MySQL56()
else:
logging.error("Unknown MYSQL_FLAVOR '%s'", flavor)
exit(1)
logging.debug("Using MYSQL_FLAVOR=%s", str(flavor))