165 lines
4.7 KiB
Python
165 lines
4.7 KiB
Python
"""The migrate command-line tool."""
|
|
|
|
import sys
|
|
import inspect
|
|
from optparse import OptionParser, BadOptionError
|
|
|
|
from migrate.versioning.base import *
|
|
from migrate.versioning import api, exceptions
|
|
|
|
|
|
alias = dict(
|
|
s=api.script,
|
|
vc=api.version_control,
|
|
dbv=api.db_version,
|
|
v=api.version,
|
|
)
|
|
|
|
def alias_setup():
|
|
global alias
|
|
for key, val in alias.iteritems():
|
|
setattr(api, key, val)
|
|
alias_setup()
|
|
|
|
|
|
class PassiveOptionParser(OptionParser):
|
|
|
|
def _process_args(self, largs, rargs, values):
|
|
"""little hack to support all --some_option=value parameters"""
|
|
|
|
while rargs:
|
|
arg = rargs[0]
|
|
if arg == "--":
|
|
del rargs[0]
|
|
return
|
|
elif arg[0:2] == "--":
|
|
# if parser does not know about the option
|
|
# pass it along (make it anonymous)
|
|
try:
|
|
opt = arg.split('=', 1)[0]
|
|
self._match_long_opt(opt)
|
|
except BadOptionError:
|
|
largs.append(arg)
|
|
del rargs[0]
|
|
else:
|
|
self._process_long_opt(rargs, values)
|
|
elif arg[:1] == "-" and len(arg) > 1:
|
|
self._process_short_opts(rargs, values)
|
|
elif self.allow_interspersed_args:
|
|
largs.append(arg)
|
|
del rargs[0]
|
|
|
|
def main(argv=None, **kwargs):
|
|
"""kwargs are default options that can be overriden with passing
|
|
--some_option to cmdline
|
|
"""
|
|
|
|
argv = argv or list(sys.argv[1:])
|
|
commands = list(api.__all__)
|
|
commands.sort()
|
|
|
|
usage = """%%prog COMMAND ...
|
|
|
|
Available commands:
|
|
%s
|
|
|
|
Enter "%%prog help COMMAND" for information on a particular command.
|
|
""" % '\n\t'.join(commands)
|
|
|
|
parser = PassiveOptionParser(usage=usage)
|
|
parser.add_option("-v", "--verbose", action="store_true", dest="verbose")
|
|
parser.add_option("-d", "--debug", action="store_true", dest="debug")
|
|
parser.add_option("-f", "--force", action="store_true", dest="force")
|
|
help_commands = ['help', '-h', '--help']
|
|
HELP = False
|
|
|
|
try:
|
|
command = argv.pop(0)
|
|
if command in help_commands:
|
|
HELP = True
|
|
command = argv.pop(0)
|
|
except IndexError:
|
|
parser.print_help()
|
|
return
|
|
|
|
command_func = getattr(api, command, None)
|
|
if command_func is None or command.startswith('_'):
|
|
parser.error("Invalid command %s" % command)
|
|
|
|
parser.set_usage(inspect.getdoc(command_func))
|
|
f_args, f_varargs, f_kwargs, f_defaults = inspect.getargspec(command_func)
|
|
for arg in f_args:
|
|
parser.add_option(
|
|
"--%s" % arg,
|
|
dest=arg,
|
|
action='store',
|
|
type="string")
|
|
|
|
# display help of the current command
|
|
if HELP:
|
|
parser.print_help()
|
|
return
|
|
|
|
options, args = parser.parse_args(argv)
|
|
|
|
# override kwargs with anonymous parameters
|
|
override_kwargs = dict()
|
|
for arg in list(args):
|
|
if arg.startswith('--'):
|
|
args.remove(arg)
|
|
if '=' in arg:
|
|
opt, value = arg[2:].split('=', 1)
|
|
else:
|
|
opt = arg[2:]
|
|
value = True
|
|
override_kwargs[opt] = value
|
|
|
|
# override kwargs with options if user is overwriting
|
|
for key, value in options.__dict__.iteritems():
|
|
if value is not None:
|
|
override_kwargs[key] = value
|
|
|
|
# arguments that function accepts without passed kwargs
|
|
f_required = list(f_args)
|
|
candidates = dict(kwargs)
|
|
candidates.update(override_kwargs)
|
|
for key, value in candidates.iteritems():
|
|
if key in f_args:
|
|
f_required.remove(key)
|
|
|
|
# map function arguments to parsed arguments
|
|
for arg in args:
|
|
try:
|
|
kw = f_required.pop(0)
|
|
except IndexError:
|
|
parser.error("Too many arguments for command %s: %s" % (command,
|
|
arg))
|
|
kwargs[kw] = arg
|
|
|
|
# apply overrides
|
|
kwargs.update(override_kwargs)
|
|
|
|
# check if all args are given
|
|
try:
|
|
num_defaults = len(f_defaults)
|
|
except TypeError:
|
|
num_defaults = 0
|
|
f_args_default = f_args[len(f_args) - num_defaults:]
|
|
required = list(set(f_required) - set(f_args_default))
|
|
if required:
|
|
parser.error("Not enough arguments for command %s: %s not specified" \
|
|
% (command, ', '.join(required)))
|
|
|
|
# handle command
|
|
try:
|
|
ret = command_func(**kwargs)
|
|
if ret is not None:
|
|
print ret
|
|
except (exceptions.UsageError, exceptions.KnownError), e:
|
|
if e.args[0] is None:
|
|
parser.print_help()
|
|
parser.error(e.args[0])
|
|
|
|
if __name__ == "__main__":
|
|
main()
|