43
40
each revision specifier supplied.
45
42
>>> _parse_revision_str('234')
46
[<RevisionSpec_dwim 234>]
43
[<RevisionSpec_revno 234>]
47
44
>>> _parse_revision_str('234..567')
48
[<RevisionSpec_dwim 234>, <RevisionSpec_dwim 567>]
45
[<RevisionSpec_revno 234>, <RevisionSpec_revno 567>]
49
46
>>> _parse_revision_str('..')
50
47
[<RevisionSpec None>, <RevisionSpec None>]
51
48
>>> _parse_revision_str('..234')
52
[<RevisionSpec None>, <RevisionSpec_dwim 234>]
49
[<RevisionSpec None>, <RevisionSpec_revno 234>]
53
50
>>> _parse_revision_str('234..')
54
[<RevisionSpec_dwim 234>, <RevisionSpec None>]
51
[<RevisionSpec_revno 234>, <RevisionSpec None>]
55
52
>>> _parse_revision_str('234..456..789') # Maybe this should be an error
56
[<RevisionSpec_dwim 234>, <RevisionSpec_dwim 456>, <RevisionSpec_dwim 789>]
53
[<RevisionSpec_revno 234>, <RevisionSpec_revno 456>, <RevisionSpec_revno 789>]
57
54
>>> _parse_revision_str('234....789') #Error ?
58
[<RevisionSpec_dwim 234>, <RevisionSpec None>, <RevisionSpec_dwim 789>]
55
[<RevisionSpec_revno 234>, <RevisionSpec None>, <RevisionSpec_revno 789>]
59
56
>>> _parse_revision_str('revid:test@other.com-234234')
60
57
[<RevisionSpec_revid revid:test@other.com-234234>]
61
58
>>> _parse_revision_str('revid:test@other.com-234234..revid:test@other.com-234235')
62
59
[<RevisionSpec_revid revid:test@other.com-234234>, <RevisionSpec_revid revid:test@other.com-234235>]
63
60
>>> _parse_revision_str('revid:test@other.com-234234..23')
64
[<RevisionSpec_revid revid:test@other.com-234234>, <RevisionSpec_dwim 23>]
61
[<RevisionSpec_revid revid:test@other.com-234234>, <RevisionSpec_revno 23>]
65
62
>>> _parse_revision_str('date:2005-04-12')
66
63
[<RevisionSpec_date date:2005-04-12>]
67
64
>>> _parse_revision_str('date:2005-04-12 12:24:33')
71
68
>>> _parse_revision_str('date:2005-04-12,12:24:33')
72
69
[<RevisionSpec_date date:2005-04-12,12:24:33>]
73
70
>>> _parse_revision_str('-5..23')
74
[<RevisionSpec_dwim -5>, <RevisionSpec_dwim 23>]
71
[<RevisionSpec_revno -5>, <RevisionSpec_revno 23>]
75
72
>>> _parse_revision_str('-5')
76
[<RevisionSpec_dwim -5>]
73
[<RevisionSpec_revno -5>]
77
74
>>> _parse_revision_str('123a')
78
[<RevisionSpec_dwim 123a>]
75
Traceback (most recent call last):
77
NoSuchRevisionSpec: No namespace registered for string: '123a'
79
78
>>> _parse_revision_str('abc')
80
[<RevisionSpec_dwim abc>]
79
Traceback (most recent call last):
81
NoSuchRevisionSpec: No namespace registered for string: 'abc'
81
82
>>> _parse_revision_str('branch:../branch2')
82
83
[<RevisionSpec_branch branch:../branch2>]
83
84
>>> _parse_revision_str('branch:../../branch2')
84
85
[<RevisionSpec_branch branch:../../branch2>]
85
86
>>> _parse_revision_str('branch:../../branch2..23')
86
[<RevisionSpec_branch branch:../../branch2>, <RevisionSpec_dwim 23>]
87
[<RevisionSpec_branch branch:../../branch2>, <RevisionSpec_revno 23>]
87
88
>>> _parse_revision_str('branch:..\\\\branch2')
88
89
[<RevisionSpec_branch branch:..\\branch2>]
89
90
>>> _parse_revision_str('branch:..\\\\..\\\\branch2..23')
90
[<RevisionSpec_branch branch:..\\..\\branch2>, <RevisionSpec_dwim 23>]
91
[<RevisionSpec_branch branch:..\\..\\branch2>, <RevisionSpec_revno 23>]
92
93
# TODO: Maybe move this into revisionspec.py
211
207
option_strings = ['--%s' % self.name]
212
208
if short_name is not None:
213
209
option_strings.append('-%s' % short_name)
215
help = optparse.SUPPRESS_HELP
218
210
optargfn = self.type
219
211
if optargfn is None:
220
parser.add_option(action='callback',
221
callback=self._optparse_bool_callback,
212
parser.add_option(action='callback',
213
callback=self._optparse_bool_callback,
222
214
callback_args=(True,),
225
217
negation_strings = ['--%s' % self.get_negation_name()]
226
parser.add_option(action='callback',
227
callback=self._optparse_bool_callback,
218
parser.add_option(action='callback',
219
callback=self._optparse_bool_callback,
228
220
callback_args=(False,),
229
221
help=optparse.SUPPRESS_HELP, *negation_strings)
231
parser.add_option(action='callback',
232
callback=self._optparse_callback,
223
parser.add_option(action='callback',
224
callback=self._optparse_callback,
233
225
type='string', metavar=self.argname.upper(),
235
default=OptionParser.DEFAULT_VALUE,
227
default=OptionParser.DEFAULT_VALUE,
238
230
def _optparse_bool_callback(self, option, opt_str, value, parser, bool_v):
329
320
'--knit' can be used interchangeably.
330
321
:param enum_switch: If true, a switch is provided with the option name,
331
322
which takes a value.
332
:param lazy_registry: A tuple of (module name, attribute name) for a
333
registry to be lazily loaded.
334
:param short_name: The short name for the enum switch, if any
335
:param short_value_switches: A dict mapping values to short names
337
Option.__init__(self, name, help, type=self.convert,
338
short_name=short_name)
339
self._registry = registry
341
if lazy_registry is None:
342
raise AssertionError(
343
'One of registry or lazy_registry must be given.')
344
self._lazy_registry = _mod_registry._LazyObjectGetter(
346
if registry is not None and lazy_registry is not None:
347
raise AssertionError(
348
'registry and lazy_registry are mutually exclusive')
324
Option.__init__(self, name, help, type=self.convert)
325
self.registry = registry
350
327
self.converter = converter
351
328
self.value_switches = value_switches
352
329
self.enum_switch = enum_switch
353
self.short_value_switches = short_value_switches
354
330
self.title = title
355
331
if self.title is None:
356
332
self.title = name
360
if self._registry is None:
361
self._registry = self._lazy_registry.get_obj()
362
return self._registry
365
335
def from_kwargs(name_, help=None, title=None, value_switches=False,
366
336
enum_switch=True, **kwargs):
369
339
name, help, value_switches and enum_switch are passed to the
370
340
RegistryOption constructor. Any other keyword arguments are treated
371
as values for the option, and their value is treated as the help.
341
as values for the option, and they value is treated as the help.
373
reg = _mod_registry.Registry()
374
for name, switch_help in sorted(kwargs.items()):
343
reg = registry.Registry()
344
for name, switch_help in kwargs.iteritems():
375
345
name = name.replace('_', '-')
376
346
reg.register(name, name, help=switch_help)
377
if not value_switches:
378
help = help + ' "' + name + '": ' + switch_help
379
if not help.endswith("."):
381
347
return RegistryOption(name_, help, reg, title=title,
382
348
value_switches=value_switches, enum_switch=enum_switch)
477
423
Option.STD_OPTIONS[name] = Option(name, **kwargs)
478
424
Option.OPTIONS[name] = Option.STD_OPTIONS[name]
480
def _standard_list_option(name, **kwargs):
481
"""Register a standard option."""
482
# All standard options are implicitly 'global' ones
483
Option.STD_OPTIONS[name] = ListOption(name, **kwargs)
484
Option.OPTIONS[name] = Option.STD_OPTIONS[name]
487
427
def _global_option(name, **kwargs):
488
428
"""Register a global option."""
489
429
Option.OPTIONS[name] = Option(name, **kwargs)
492
def _global_registry_option(name, help, registry=None, **kwargs):
432
def _global_registry_option(name, help, registry, **kwargs):
493
433
Option.OPTIONS[name] = RegistryOption(name, help, registry, **kwargs)
436
class MergeTypeRegistry(registry.Registry):
496
441
# This is the verbosity level detected during command line parsing.
497
442
# Note that the final value is dependent on the order in which the
498
443
# various flags (verbose, quiet, no-verbose, no-quiet) are given.
521
466
_verbosity_level = -1
469
_merge_type_registry = MergeTypeRegistry()
470
_merge_type_registry.register_lazy('merge3', 'bzrlib.merge', 'Merge3Merger',
471
"Native diff3-style merge")
472
_merge_type_registry.register_lazy('diff3', 'bzrlib.merge', 'Diff3Merger',
473
"Merge using external diff3")
474
_merge_type_registry.register_lazy('weave', 'bzrlib.merge', 'WeaveMerger',
476
_merge_type_registry.register_lazy('lca', 'bzrlib.merge', 'LCAMerger',
524
479
# Declare the standard options
525
480
_standard_option('help', short_name='h',
526
481
help='Show help message.')
482
_standard_option('verbose', short_name='v',
483
help='Display more information.',
484
custom_callback=_verbosity_level_callback)
527
485
_standard_option('quiet', short_name='q',
528
486
help="Only display errors and warnings.",
529
487
custom_callback=_verbosity_level_callback)
530
_standard_option('usage',
531
help='Show usage message and options.')
532
_standard_option('verbose', short_name='v',
533
help='Display more information.',
534
custom_callback=_verbosity_level_callback)
536
489
# Declare commonly used options
537
_global_option('change',
538
type=_parse_change_str,
540
param_name='revision',
541
help='Select changes introduced by the specified revision. See also "help revisionspec".')
542
_global_option('directory', short_name='d', type=unicode,
543
help='Branch to operate on, instead of working directory.')
490
_global_option('all')
491
_global_option('overwrite', help='Ignore differences between branches and '
492
'overwrite unconditionally.')
493
_global_option('basis', type=str)
494
_global_option('bound')
495
_global_option('diff-options', type=str)
544
496
_global_option('file', type=unicode, short_name='F')
545
_global_registry_option('log-format', "Use specified log format.",
546
lazy_registry=('bzrlib.log', 'log_formatter_registry'),
547
value_switches=True, title='Log format',
548
short_value_switches={'short': 'S'})
549
_global_registry_option('merge-type', 'Select a particular merge algorithm.',
550
lazy_registry=('bzrlib.merge', 'merge_type_registry'),
551
value_switches=True, title='Merge algorithm')
497
_global_option('force')
498
_global_option('format', type=unicode)
499
_global_option('forward')
552
500
_global_option('message', type=unicode,
554
502
help='Message string.')
555
_global_option('null', short_name='0',
556
help='Use an ASCII NUL (\\0) separator rather than '
558
_global_option('overwrite', help='Ignore differences between branches and '
559
'overwrite unconditionally.')
560
_global_option('remember', help='Remember the specified location as a'
562
_global_option('reprocess', help='Reprocess to reduce spurious conflicts.')
503
_global_option('no-recurse')
504
_global_option('profile',
505
help='Show performance profiling information.')
563
506
_global_option('revision',
564
507
type=_parse_revision_str,
566
509
help='See "help revisionspec" for details.')
510
_global_option('change',
511
type=_parse_change_str,
513
param_name='revision',
514
help='Select changes introduced by the specified revision. See also "help revisionspec".')
567
515
_global_option('show-ids',
568
516
help='Show internal object ids.')
569
_global_option('timezone',
517
_global_option('timezone',
571
help='Display timezone as local, original, or utc.')
573
diff_writer_registry = _mod_registry.Registry()
574
diff_writer_registry.register('plain', lambda x: x, 'Plaintext diff output.')
575
diff_writer_registry.default_key = 'plain'
519
help='display timezone as local, original, or utc')
520
_global_option('unbound')
521
_global_option('version')
522
_global_option('email')
523
_global_option('update')
524
_global_registry_option('log-format', "Use specified log format.",
525
log.log_formatter_registry, value_switches=True,
527
_global_option('long', help='Use detailed log format. Same as --log-format long',
529
_global_option('short', help='Use moderately short log format. Same as --log-format short')
530
_global_option('line', help='Use log format with one line per revision. Same as --log-format line')
531
_global_option('root', type=str)
532
_global_option('no-backup')
533
_global_registry_option('merge-type', 'Select a particular merge algorithm.',
534
_merge_type_registry, value_switches=True,
535
title='Merge algorithm')
536
_global_option('pattern', type=str)
537
_global_option('remember', help='Remember the specified location as a'
539
_global_option('reprocess', help='Reprocess to reduce spurious conflicts.')
540
_global_option('kind', type=str)
541
_global_option('dry-run',
542
help="Show what would be done, but don't actually do anything.")
543
_global_option('name-from-revision', help='The path name in the old tree.')