86
86
[<RevisionSpec_branch branch:../../branch2>]
87
87
>>> _parse_revision_str('branch:../../branch2..23')
88
88
[<RevisionSpec_branch branch:../../branch2>, <RevisionSpec_revno 23>]
89
>>> _parse_revision_str('branch:..\\\\branch2')
90
[<RevisionSpec_branch branch:..\\branch2>]
91
>>> _parse_revision_str('branch:..\\\\..\\\\branch2..23')
92
[<RevisionSpec_branch branch:..\\..\\branch2>, <RevisionSpec_revno 23>]
94
90
# TODO: Maybe move this into revisionspec.py
96
# split on .. that is not followed by a / or \
97
sep = re.compile(r'\.\.(?![\\/])')
92
# split on the first .. that is not followed by a / ?
93
sep = re.compile("\\.\\.(?!/)")
98
94
for x in sep.split(revstr):
99
95
revs.append(revisionspec.RevisionSpec.from_string(x or None))
103
def _parse_change_str(revstr):
104
"""Parse the revision string and return a tuple with left-most
105
parent of the revision.
107
>>> _parse_change_str('123')
108
(<RevisionSpec_before before:123>, <RevisionSpec_revno 123>)
109
>>> _parse_change_str('123..124')
110
Traceback (most recent call last):
112
RangeInChangeOption: Option --change does not accept revision ranges
114
revs = _parse_revision_str(revstr)
116
raise errors.RangeInChangeOption()
117
return (revisionspec.RevisionSpec.from_string('before:' + revstr),
121
99
def _parse_merge_type(typestring):
122
100
return get_merge_type(typestring)
145
# The dictionary of standard options. These are always legal.
123
# TODO: Some way to show in help a description of the option argument
148
# The dictionary of commonly used options. these are only legal
149
# if a command explicitly references them by name in the list
150
# of supported options.
153
127
def __init__(self, name, help='', type=None, argname=None,
154
short_name=None, param_name=None, custom_callback=None):
155
129
"""Make a new command option.
157
:param name: regular name of the command, used in the double-dash
131
name -- regular name of the command, used in the double-dash
158
132
form and also as the parameter to the command's run()
159
method (unless param_name is specified).
161
:param help: help message displayed in command help
163
:param type: function called to parse the option argument, or
135
help -- help message displayed in command help
137
type -- function called to parse the option argument, or
164
138
None (default) if this option doesn't take an argument.
166
:param argname: name of option argument, if any
168
:param short_name: short option code for use with a single -, e.g.
169
short_name="v" to enable parsing of -v.
171
:param param_name: name of the parameter which will be passed to
172
the command's run() method.
174
:param custom_callback: a callback routine to be called after normal
175
processing. The signature of the callback routine is
176
(option, name, new_value, parser).
140
argname -- name of option argument, if any
184
148
elif argname is None:
186
150
self.argname = argname
187
if param_name is None:
188
self._param_name = self.name
190
self._param_name = param_name
191
self.custom_callback = custom_callback
193
152
def short_name(self):
194
153
if self._short_name:
195
154
return self._short_name
156
# remove this when SHORT_OPTIONS is removed
157
# XXX: This is accessing a DeprecatedDict, so we call the super
158
# method to avoid warnings
159
for (k, v) in dict.iteritems(Option.SHORT_OPTIONS):
197
163
def set_short_name(self, short_name):
198
164
self._short_name = short_name
210
176
option_strings.append('-%s' % short_name)
211
177
optargfn = self.type
212
178
if optargfn is None:
213
parser.add_option(action='callback',
214
callback=self._optparse_bool_callback,
215
callback_args=(True,),
179
parser.add_option(action='store_true', dest=self.name,
181
default=OptionParser.DEFAULT_VALUE,
218
183
negation_strings = ['--%s' % self.get_negation_name()]
219
parser.add_option(action='callback',
220
callback=self._optparse_bool_callback,
221
callback_args=(False,),
184
parser.add_option(action='store_false', dest=self.name,
222
185
help=optparse.SUPPRESS_HELP, *negation_strings)
224
187
parser.add_option(action='callback',
228
191
default=OptionParser.DEFAULT_VALUE,
231
def _optparse_bool_callback(self, option, opt_str, value, parser, bool_v):
232
setattr(parser.values, self._param_name, bool_v)
233
if self.custom_callback is not None:
234
self.custom_callback(option, self._param_name, bool_v, parser)
236
194
def _optparse_callback(self, option, opt, value, parser):
238
setattr(parser.values, self._param_name, v)
239
if self.custom_callback is not None:
240
self.custom_callback(option, self.name, v, parser)
195
setattr(parser.values, self.name, self.type(value))
242
197
def iter_switches(self):
243
198
"""Iterate through the list of switches provided by the option
278
230
def _optparse_callback(self, option, opt, value, parser):
279
values = getattr(parser.values, self._param_name)
231
values = getattr(parser.values, self.name)
283
235
values.append(self.type(value))
284
if self.custom_callback is not None:
285
self.custom_callback(option, self._param_name, values, parser)
288
238
class RegistryOption(Option):
342
292
as values for the option, and they value is treated as the help.
344
294
reg = registry.Registry()
345
for name, switch_help in kwargs.iteritems():
295
for name, help in kwargs.iteritems():
346
296
name = name.replace('_', '-')
347
reg.register(name, name, help=switch_help)
297
reg.register(name, name, help=help)
348
298
return RegistryOption(name_, help, reg, title=title,
349
299
value_switches=value_switches, enum_switch=enum_switch)
369
319
def _optparse_value_callback(self, cb_value):
370
320
def cb(option, opt, value, parser):
371
v = self.type(cb_value)
372
setattr(parser.values, self._param_name, v)
373
if self.custom_callback is not None:
374
self.custom_callback(option, self._param_name, v, parser)
321
setattr(parser.values, self.name, self.type(cb_value))
377
324
def iter_switches(self):
385
332
for key in sorted(self.registry.keys()):
386
333
yield key, None, None, self.registry.get_help(key)
388
def is_hidden(self, name):
389
if name == self.name:
390
return Option.is_hidden(self, name)
391
return getattr(self.registry.get_info(name), 'hidden', False)
394
336
class OptionParser(optparse.OptionParser):
395
337
"""OptionParser that raises exceptions instead of exiting"""
413
def custom_help(name, help):
414
"""Clone a common option overriding the help."""
416
o = copy.copy(Option.OPTIONS[name])
421
def _standard_option(name, **kwargs):
422
"""Register a standard option."""
423
# All standard options are implicitly 'global' ones
424
Option.STD_OPTIONS[name] = Option(name, **kwargs)
425
Option.OPTIONS[name] = Option.STD_OPTIONS[name]
428
355
def _global_option(name, **kwargs):
429
"""Register a global option."""
356
"""Register o as a global option."""
430
357
Option.OPTIONS[name] = Option(name, **kwargs)
442
# This is the verbosity level detected during command line parsing.
443
# Note that the final value is dependent on the order in which the
444
# various flags (verbose, quiet, no-verbose, no-quiet) are given.
445
# The final value will be one of the following:
453
def _verbosity_level_callback(option, opt_str, value, parser):
454
global _verbosity_level
456
# Either --no-verbose or --no-quiet was specified
458
elif opt_str == "verbose":
459
if _verbosity_level > 0:
460
_verbosity_level += 1
464
if _verbosity_level < 0:
465
_verbosity_level -= 1
467
_verbosity_level = -1
470
369
_merge_type_registry = MergeTypeRegistry()
471
370
_merge_type_registry.register_lazy('merge3', 'bzrlib.merge', 'Merge3Merger',
472
371
"Native diff3-style merge")
475
374
_merge_type_registry.register_lazy('weave', 'bzrlib.merge', 'WeaveMerger',
476
375
"Weave-based merge")
478
# Declare the standard options
479
_standard_option('help', short_name='h',
480
help='Show help message.')
481
_standard_option('verbose', short_name='v',
482
help='Display more information.',
483
custom_callback=_verbosity_level_callback)
484
_standard_option('quiet', short_name='q',
485
help="Only display errors and warnings.",
486
custom_callback=_verbosity_level_callback)
488
# Declare commonly used options
489
377
_global_option('all')
490
378
_global_option('overwrite', help='Ignore differences between branches and '
491
'overwrite unconditionally.')
379
'overwrite unconditionally')
492
380
_global_option('basis', type=str)
493
381
_global_option('bound')
494
382
_global_option('diff-options', type=str)
383
_global_option('help',
384
help='show help message',
495
386
_global_option('file', type=unicode, short_name='F')
496
387
_global_option('force')
497
388
_global_option('format', type=unicode)
498
389
_global_option('forward')
499
390
_global_option('message', type=unicode,
501
help='Message string.')
502
392
_global_option('no-recurse')
503
393
_global_option('profile',
504
help='Show performance profiling information.')
394
help='show performance profiling information')
505
395
_global_option('revision',
506
396
type=_parse_revision_str,
508
help='See "help revisionspec" for details.')
509
_global_option('change',
510
type=_parse_change_str,
512
param_name='revision',
513
help='Select changes introduced by the specified revision. See also "help revisionspec".')
514
_global_option('show-ids',
515
help='Show internal object ids.')
398
help='See \'help revisionspec\' for details')
399
_global_option('show-ids',
400
help='show internal object ids')
516
401
_global_option('timezone',
518
403
help='display timezone as local, original, or utc')
519
404
_global_option('unbound')
405
_global_option('verbose',
406
help='display more information',
520
408
_global_option('version')
521
409
_global_option('email')
522
410
_global_option('update')
523
_global_registry_option('log-format', "Use specified log format.",
411
_global_registry_option('log-format', "Use this log format",
524
412
log.log_formatter_registry, value_switches=True,
525
413
title='Log format')
526
414
_global_option('long', help='Use detailed log format. Same as --log-format long',
529
417
_global_option('line', help='Use log format with one line per revision. Same as --log-format line')
530
418
_global_option('root', type=str)
531
419
_global_option('no-backup')
532
_global_registry_option('merge-type', 'Select a particular merge algorithm.',
420
_global_registry_option('merge-type', 'Select a particular merge algorithm',
533
421
_merge_type_registry, value_switches=True,
534
422
title='Merge algorithm')
535
423
_global_option('pattern', type=str)
424
_global_option('quiet', short_name='q')
536
425
_global_option('remember', help='Remember the specified location as a'
538
_global_option('reprocess', help='Reprocess to reduce spurious conflicts.')
427
_global_option('reprocess', help='Reprocess to reduce spurious conflicts')
539
428
_global_option('kind', type=str)
540
429
_global_option('dry-run',
541
help="Show what would be done, but don't actually do anything.")
430
help="show what would be done, but don't actually do anything")
542
431
_global_option('name-from-revision', help='The path name in the old tree.')
434
# prior to 0.14 these were always globally registered; the old dict is
435
# available for plugins that use it but it should not be used.
436
Option.SHORT_OPTIONS = symbol_versioning.DeprecatedDict(
437
symbol_versioning.zero_fourteen,
440
'F': Option.OPTIONS['file'],
441
'h': Option.OPTIONS['help'],
442
'm': Option.OPTIONS['message'],
443
'r': Option.OPTIONS['revision'],
444
'v': Option.OPTIONS['verbose'],
445
'l': Option.OPTIONS['long'],
446
'q': Option.OPTIONS['quiet'],
448
'Set the short option name when constructing the Option.',