2017-08-17 18:13:50 +03:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
|
2017-09-18 19:43:03 +03:00
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import tempfile
|
2017-08-17 18:13:50 +03:00
|
|
|
from argparse import ArgumentParser
|
|
|
|
|
|
|
|
from .templates import all_templates
|
|
|
|
|
|
|
|
|
|
|
|
class BaseTryParser(ArgumentParser):
|
|
|
|
name = 'try'
|
2017-08-21 20:14:31 +03:00
|
|
|
common_arguments = [
|
2017-09-18 19:43:03 +03:00
|
|
|
[['-m', '--message'],
|
|
|
|
{'const': 'editor',
|
|
|
|
'default': '{msg}',
|
|
|
|
'nargs': '?',
|
|
|
|
'help': 'Use the specified commit message, or create it in your '
|
|
|
|
'$EDITOR if blank. Defaults to computed message.',
|
|
|
|
}],
|
2017-08-21 20:14:31 +03:00
|
|
|
[['--no-push'],
|
|
|
|
{'dest': 'push',
|
|
|
|
'action': 'store_false',
|
|
|
|
'help': 'Do not push to try as a result of running this command (if '
|
|
|
|
'specified this command will only print calculated try '
|
|
|
|
'syntax and selection info).',
|
|
|
|
}],
|
2017-08-17 18:14:07 +03:00
|
|
|
[['--save'],
|
|
|
|
{'default': None,
|
|
|
|
'help': 'Save selection for future use with --preset.',
|
|
|
|
}],
|
|
|
|
[['--preset'],
|
|
|
|
{'default': None,
|
|
|
|
'help': 'Load a saved selection.',
|
|
|
|
}],
|
|
|
|
[['--list-presets'],
|
|
|
|
{'action': 'store_true',
|
|
|
|
'default': False,
|
|
|
|
'help': 'List available preset selections.',
|
|
|
|
}],
|
2017-10-16 20:59:45 +03:00
|
|
|
[['--closed-tree'],
|
|
|
|
{'action': 'store_true',
|
|
|
|
'default': False,
|
|
|
|
'help': 'Push despite a closed try tree',
|
|
|
|
}],
|
2017-08-21 20:14:31 +03:00
|
|
|
]
|
2017-08-17 18:13:50 +03:00
|
|
|
arguments = []
|
|
|
|
templates = []
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
ArgumentParser.__init__(self, *args, **kwargs)
|
|
|
|
|
|
|
|
group = self.add_argument_group("{} arguments".format(self.name))
|
|
|
|
for cli, kwargs in self.arguments:
|
|
|
|
group.add_argument(*cli, **kwargs)
|
|
|
|
|
|
|
|
group = self.add_argument_group("common arguments")
|
|
|
|
for cli, kwargs in self.common_arguments:
|
|
|
|
group.add_argument(*cli, **kwargs)
|
|
|
|
|
|
|
|
group = self.add_argument_group("template arguments")
|
|
|
|
self.templates = {t: all_templates[t]() for t in self.templates}
|
|
|
|
for template in self.templates.values():
|
|
|
|
template.add_arguments(group)
|
|
|
|
|
2017-09-18 19:43:03 +03:00
|
|
|
def validate(self, args):
|
|
|
|
if args.message == 'editor':
|
|
|
|
if 'EDITOR' not in os.environ:
|
|
|
|
self.error("must set the $EDITOR environment variable to use blank --message")
|
|
|
|
|
|
|
|
with tempfile.NamedTemporaryFile(mode='r') as fh:
|
|
|
|
subprocess.call([os.environ['EDITOR'], fh.name])
|
|
|
|
args.message = fh.read().strip()
|
|
|
|
|
|
|
|
if '{msg}' not in args.message:
|
|
|
|
args.message = '{}\n\n{}'.format(args.message, '{msg}')
|
|
|
|
|
2017-08-17 18:13:50 +03:00
|
|
|
def parse_known_args(self, *args, **kwargs):
|
|
|
|
args, remainder = ArgumentParser.parse_known_args(self, *args, **kwargs)
|
2017-09-18 19:43:03 +03:00
|
|
|
self.validate(args)
|
2017-08-17 18:13:50 +03:00
|
|
|
|
|
|
|
if self.templates:
|
|
|
|
args.templates = {}
|
|
|
|
for name, cls in self.templates.iteritems():
|
|
|
|
context = cls.context(**vars(args))
|
|
|
|
if context is not None:
|
|
|
|
args.templates[name] = context
|
|
|
|
|
|
|
|
return args, remainder
|