1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
|
# Copyright (C) 2008, 2009, 2010 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
from cStringIO import StringIO
import shutil
import sys
import tempfile
from bzrlib import (
builtins,
delta,
diff,
errors,
osutils,
patches,
patiencediff,
shelf,
textfile,
trace,
ui,
workingtree,
)
class UseEditor(Exception):
"""Use an editor instead of selecting hunks."""
class ShelfReporter(object):
vocab = {'add file': 'Shelve adding file "%(path)s"?',
'binary': 'Shelve binary changes?',
'change kind': 'Shelve changing "%s" from %(other)s'
' to %(this)s?',
'delete file': 'Shelve removing file "%(path)s"?',
'final': 'Shelve %d change(s)?',
'hunk': 'Shelve?',
'modify target': 'Shelve changing target of'
' "%(path)s" from "%(other)s" to "%(this)s"?',
'rename': 'Shelve renaming "%(other)s" =>'
' "%(this)s"?'
}
invert_diff = False
def __init__(self):
self.delta_reporter = delta._ChangeReporter()
def no_changes(self):
"""Report that no changes were selected to apply."""
trace.warning('No changes to shelve.')
def shelved_id(self, shelf_id):
"""Report the id changes were shelved to."""
trace.note('Changes shelved with id "%d".' % shelf_id)
def changes_destroyed(self):
"""Report that changes were made without shelving."""
trace.note('Selected changes destroyed.')
def selected_changes(self, transform):
"""Report the changes that were selected."""
trace.note("Selected changes:")
changes = transform.iter_changes()
delta.report_changes(changes, self.delta_reporter)
def prompt_change(self, change):
"""Determine the prompt for a change to apply."""
if change[0] == 'rename':
vals = {'this': change[3], 'other': change[2]}
elif change[0] == 'change kind':
vals = {'path': change[4], 'other': change[2], 'this': change[3]}
elif change[0] == 'modify target':
vals = {'path': change[2], 'other': change[3], 'this': change[4]}
else:
vals = {'path': change[3]}
prompt = self.vocab[change[0]] % vals
return prompt
class ApplyReporter(ShelfReporter):
vocab = {'add file': 'Delete file "%(path)s"?',
'binary': 'Apply binary changes?',
'change kind': 'Change "%(path)s" from %(this)s'
' to %(other)s?',
'delete file': 'Add file "%(path)s"?',
'final': 'Apply %d change(s)?',
'hunk': 'Apply change?',
'modify target': 'Change target of'
' "%(path)s" from "%(this)s" to "%(other)s"?',
'rename': 'Rename "%(this)s" => "%(other)s"?',
}
invert_diff = True
def changes_destroyed(self):
pass
class Shelver(object):
"""Interactively shelve the changes in a working tree."""
def __init__(self, work_tree, target_tree, diff_writer=None, auto=False,
auto_apply=False, file_list=None, message=None,
destroy=False, manager=None, reporter=None):
"""Constructor.
:param work_tree: The working tree to shelve changes from.
:param target_tree: The "unchanged" / old tree to compare the
work_tree to.
:param auto: If True, shelve each possible change.
:param auto_apply: If True, shelve changes with no final prompt.
:param file_list: If supplied, only files in this list may be shelved.
:param message: The message to associate with the shelved changes.
:param destroy: Change the working tree without storing the shelved
changes.
:param manager: The shelf manager to use.
:param reporter: Object for reporting changes to user.
"""
self.work_tree = work_tree
self.target_tree = target_tree
self.diff_writer = diff_writer
if self.diff_writer is None:
self.diff_writer = sys.stdout
if manager is None:
manager = work_tree.get_shelf_manager()
self.manager = manager
self.auto = auto
self.auto_apply = auto_apply
self.file_list = file_list
self.message = message
self.destroy = destroy
if reporter is None:
reporter = ShelfReporter()
self.reporter = reporter
config = self.work_tree.branch.get_config()
self.change_editor = config.get_change_editor(target_tree, work_tree)
self.work_tree.lock_tree_write()
@classmethod
def from_args(klass, diff_writer, revision=None, all=False, file_list=None,
message=None, directory=None, destroy=False):
"""Create a shelver from commandline arguments.
The returned shelver wil have a work_tree that is locked and should
be unlocked.
:param revision: RevisionSpec of the revision to compare to.
:param all: If True, shelve all changes without prompting.
:param file_list: If supplied, only files in this list may be shelved.
:param message: The message to associate with the shelved changes.
:param directory: The directory containing the working tree.
:param destroy: Change the working tree without storing the shelved
changes.
"""
if directory is None:
directory = u'.'
elif file_list:
file_list = [osutils.pathjoin(directory, f) for f in file_list]
tree, path = workingtree.WorkingTree.open_containing(directory)
# Ensure that tree is locked for the lifetime of target_tree, as
# target tree may be reading from the same dirstate.
tree.lock_tree_write()
try:
target_tree = builtins._get_one_revision_tree('shelf2', revision,
tree.branch, tree)
files = tree.safe_relpath_files(file_list)
return klass(tree, target_tree, diff_writer, all, all, files,
message, destroy)
finally:
tree.unlock()
def run(self):
"""Interactively shelve the changes."""
creator = shelf.ShelfCreator(self.work_tree, self.target_tree,
self.file_list)
self.tempdir = tempfile.mkdtemp()
changes_shelved = 0
try:
for change in creator.iter_shelvable():
if change[0] == 'modify text':
try:
changes_shelved += self.handle_modify_text(creator,
change[1])
except errors.BinaryFile:
if self.prompt_bool(self.reporter.vocab['binary']):
changes_shelved += 1
creator.shelve_content_change(change[1])
else:
if self.prompt_bool(self.reporter.prompt_change(change)):
creator.shelve_change(change)
changes_shelved += 1
if changes_shelved > 0:
self.reporter.selected_changes(creator.work_transform)
if (self.auto_apply or self.prompt_bool(
self.reporter.vocab['final'] % changes_shelved)):
if self.destroy:
creator.transform()
self.reporter.changes_destroyed()
else:
shelf_id = self.manager.shelve_changes(creator,
self.message)
self.reporter.shelved_id(shelf_id)
else:
self.reporter.no_changes()
finally:
shutil.rmtree(self.tempdir)
creator.finalize()
def finalize(self):
if self.change_editor is not None:
self.change_editor.finish()
self.work_tree.unlock()
def get_parsed_patch(self, file_id, invert=False):
"""Return a parsed version of a file's patch.
:param file_id: The id of the file to generate a patch for.
:param invert: If True, provide an inverted patch (insertions displayed
as removals, removals displayed as insertions).
:return: A patches.Patch.
"""
diff_file = StringIO()
if invert:
old_tree = self.work_tree
new_tree = self.target_tree
else:
old_tree = self.target_tree
new_tree = self.work_tree
old_path = old_tree.id2path(file_id)
new_path = new_tree.id2path(file_id)
text_differ = diff.DiffText(old_tree, new_tree, diff_file,
path_encoding=osutils.get_terminal_encoding())
patch = text_differ.diff(file_id, old_path, new_path, 'file', 'file')
diff_file.seek(0)
return patches.parse_patch(diff_file)
def prompt(self, message):
"""Prompt the user for a character.
:param message: The message to prompt a user with.
:return: A character.
"""
if not sys.stdin.isatty():
# Since there is no controlling terminal we will hang when trying
# to prompt the user, better abort now. See
# https://code.launchpad.net/~bialix/bzr/shelve-no-tty/+merge/14905
# for more context.
raise errors.BzrError("You need a controlling terminal.")
sys.stdout.write(message)
char = osutils.getchar()
sys.stdout.write("\r" + ' ' * len(message) + '\r')
sys.stdout.flush()
return char
def prompt_bool(self, question, long=False, allow_editor=False):
"""Prompt the user with a yes/no question.
This may be overridden by self.auto. It may also *set* self.auto. It
may also raise UserAbort.
:param question: The question to ask the user.
:return: True or False
"""
if self.auto:
return True
editor_string = ''
if long:
if allow_editor:
editor_string = '(E)dit manually, '
prompt = ' [(y)es, (N)o, %s(f)inish, or (q)uit]' % editor_string
else:
if allow_editor:
editor_string = 'e'
prompt = ' [yN%sfq?]' % editor_string
char = self.prompt(question + prompt)
if char == 'y':
return True
elif char == 'e' and allow_editor:
raise UseEditor
elif char == 'f':
self.auto = True
return True
elif char == '?':
return self.prompt_bool(question, long=True)
if char == 'q':
raise errors.UserAbort()
else:
return False
def handle_modify_text(self, creator, file_id):
"""Handle modified text, by using hunk selection or file editing.
:param creator: A ShelfCreator.
:param file_id: The id of the file that was modified.
:return: The number of changes.
"""
work_tree_lines = self.work_tree.get_file_lines(file_id)
try:
lines, change_count = self._select_hunks(creator, file_id,
work_tree_lines)
except UseEditor:
lines, change_count = self._edit_file(file_id, work_tree_lines)
if change_count != 0:
creator.shelve_lines(file_id, lines)
return change_count
def _select_hunks(self, creator, file_id, work_tree_lines):
"""Provide diff hunk selection for modified text.
If self.reporter.invert_diff is True, the diff is inverted so that
insertions are displayed as removals and vice versa.
:param creator: a ShelfCreator
:param file_id: The id of the file to shelve.
:param work_tree_lines: Line contents of the file in the working tree.
:return: number of shelved hunks.
"""
if self.reporter.invert_diff:
target_lines = work_tree_lines
else:
target_lines = self.target_tree.get_file_lines(file_id)
textfile.check_text_lines(work_tree_lines)
textfile.check_text_lines(target_lines)
parsed = self.get_parsed_patch(file_id, self.reporter.invert_diff)
final_hunks = []
if not self.auto:
offset = 0
self.diff_writer.write(parsed.get_header())
for hunk in parsed.hunks:
self.diff_writer.write(str(hunk))
selected = self.prompt_bool(self.reporter.vocab['hunk'],
allow_editor=(self.change_editor
is not None))
if not self.reporter.invert_diff:
selected = (not selected)
if selected:
hunk.mod_pos += offset
final_hunks.append(hunk)
else:
offset -= (hunk.mod_range - hunk.orig_range)
sys.stdout.flush()
if self.reporter.invert_diff:
change_count = len(final_hunks)
else:
change_count = len(parsed.hunks) - len(final_hunks)
patched = patches.iter_patched_from_hunks(target_lines,
final_hunks)
lines = list(patched)
return lines, change_count
def _edit_file(self, file_id, work_tree_lines):
"""
:param file_id: id of the file to edit.
:param work_tree_lines: Line contents of the file in the working tree.
:return: (lines, change_region_count), where lines is the new line
content of the file, and change_region_count is the number of
changed regions.
"""
lines = osutils.split_lines(self.change_editor.edit_file(file_id))
return lines, self._count_changed_regions(work_tree_lines, lines)
@staticmethod
def _count_changed_regions(old_lines, new_lines):
matcher = patiencediff.PatienceSequenceMatcher(None, old_lines,
new_lines)
blocks = matcher.get_matching_blocks()
return len(blocks) - 2
class Unshelver(object):
"""Unshelve changes into a working tree."""
@classmethod
def from_args(klass, shelf_id=None, action='apply', directory='.',
write_diff_to=None):
"""Create an unshelver from commandline arguments.
The returned shelver will have a tree that is locked and should
be unlocked.
:param shelf_id: Integer id of the shelf, as a string.
:param action: action to perform. May be 'apply', 'dry-run',
'delete', 'preview'.
:param directory: The directory to unshelve changes into.
:param write_diff_to: See Unshelver.__init__().
"""
tree, path = workingtree.WorkingTree.open_containing(directory)
tree.lock_tree_write()
try:
manager = tree.get_shelf_manager()
if shelf_id is not None:
try:
shelf_id = int(shelf_id)
except ValueError:
raise errors.InvalidShelfId(shelf_id)
else:
shelf_id = manager.last_shelf()
if shelf_id is None:
raise errors.BzrCommandError('No changes are shelved.')
apply_changes = True
delete_shelf = True
read_shelf = True
show_diff = False
if action == 'dry-run':
apply_changes = False
delete_shelf = False
elif action == 'preview':
apply_changes = False
delete_shelf = False
show_diff = True
elif action == 'delete-only':
apply_changes = False
read_shelf = False
elif action == 'keep':
apply_changes = True
delete_shelf = False
except:
tree.unlock()
raise
return klass(tree, manager, shelf_id, apply_changes, delete_shelf,
read_shelf, show_diff, write_diff_to)
def __init__(self, tree, manager, shelf_id, apply_changes=True,
delete_shelf=True, read_shelf=True, show_diff=False,
write_diff_to=None):
"""Constructor.
:param tree: The working tree to unshelve into.
:param manager: The ShelveManager containing the shelved changes.
:param shelf_id:
:param apply_changes: If True, apply the shelved changes to the
working tree.
:param delete_shelf: If True, delete the changes from the shelf.
:param read_shelf: If True, read the changes from the shelf.
:param show_diff: If True, show the diff that would result from
unshelving the changes.
:param write_diff_to: A file-like object where the diff will be
written to. If None, ui.ui_factory.make_output_stream() will
be used.
"""
self.tree = tree
manager = tree.get_shelf_manager()
self.manager = manager
self.shelf_id = shelf_id
self.apply_changes = apply_changes
self.delete_shelf = delete_shelf
self.read_shelf = read_shelf
self.show_diff = show_diff
self.write_diff_to = write_diff_to
def run(self):
"""Perform the unshelving operation."""
self.tree.lock_tree_write()
cleanups = [self.tree.unlock]
try:
if self.read_shelf:
trace.note('Using changes with id "%d".' % self.shelf_id)
unshelver = self.manager.get_unshelver(self.shelf_id)
cleanups.append(unshelver.finalize)
if unshelver.message is not None:
trace.note('Message: %s' % unshelver.message)
change_reporter = delta._ChangeReporter()
merger = unshelver.make_merger(None)
merger.change_reporter = change_reporter
if self.apply_changes:
merger.do_merge()
elif self.show_diff:
self.write_diff(merger)
else:
self.show_changes(merger)
if self.delete_shelf:
self.manager.delete_shelf(self.shelf_id)
trace.note('Deleted changes with id "%d".' % self.shelf_id)
finally:
for cleanup in reversed(cleanups):
cleanup()
def write_diff(self, merger):
"""Write this operation's diff to self.write_diff_to."""
tree_merger = merger.make_merger()
tt = tree_merger.make_preview_transform()
new_tree = tt.get_preview_tree()
if self.write_diff_to is None:
self.write_diff_to = ui.ui_factory.make_output_stream(encoding_type='exact')
path_encoding = osutils.get_diff_header_encoding()
diff.show_diff_trees(merger.this_tree, new_tree, self.write_diff_to,
path_encoding=path_encoding)
tt.finalize()
def show_changes(self, merger):
"""Show the changes that this operation specifies."""
tree_merger = merger.make_merger()
# This implicitly shows the changes via the reporter, so we're done...
tt = tree_merger.make_preview_transform()
tt.finalize()
|