-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatchdialog.py
More file actions
163 lines (134 loc) · 5.71 KB
/
patchdialog.py
File metadata and controls
163 lines (134 loc) · 5.71 KB
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
# Copyright (C) 2002-2006 Stephen Kennedy <stevek@gnome.org>
# Copyright (C) 2009-2010, 2013 Kai Willadsen <kai.willadsen@gmail.com>
#
# 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, see <http://www.gnu.org/licenses/>.
import difflib
import os
from gi.repository import Gdk, Gio, GLib, Gtk, GtkSource
from meld.conf import _
from meld.iohelpers import prompt_save_filename
from meld.misc import error_dialog
from meld.settings import get_meld_settings
from meld.sourceview import LanguageManager
@Gtk.Template(resource_path='/org/gnome/meld/ui/patch-dialog.ui')
class PatchDialog(Gtk.Dialog):
__gtype_name__ = "PatchDialog"
left_radiobutton = Gtk.Template.Child("left_radiobutton")
reverse_checkbutton = Gtk.Template.Child("reverse_checkbutton")
right_radiobutton = Gtk.Template.Child("right_radiobutton")
side_selection_box = Gtk.Template.Child("side_selection_box")
side_selection_label = Gtk.Template.Child("side_selection_label")
textview: Gtk.TextView = Gtk.Template.Child("textview")
def __init__(self, filediff):
super().__init__()
self.set_transient_for(filediff.get_toplevel())
self.filediff = filediff
buf = GtkSource.Buffer()
self.textview.set_buffer(buf)
lang = LanguageManager.get_language_from_mime_type("text/x-diff")
buf.set_language(lang)
buf.set_highlight_syntax(True)
self.index_map = {self.left_radiobutton: (0, 1),
self.right_radiobutton: (1, 2)}
self.left_patch = True
self.reverse_patch = self.reverse_checkbutton.get_active()
if self.filediff.num_panes < 3:
self.side_selection_label.hide()
self.side_selection_box.hide()
meld_settings = get_meld_settings()
self.textview.modify_font(meld_settings.font)
self.textview.set_editable(False)
meld_settings.connect('changed', self.on_setting_changed)
def on_setting_changed(self, settings, key):
if key == "font":
self.textview.modify_font(settings.font)
@Gtk.Template.Callback()
def on_buffer_selection_changed(self, radiobutton):
if not radiobutton.get_active():
return
self.left_patch = radiobutton == self.left_radiobutton
self.update_patch()
@Gtk.Template.Callback()
def on_reverse_checkbutton_toggled(self, checkbutton):
self.reverse_patch = checkbutton.get_active()
self.update_patch()
def update_patch(self):
indices = (0, 1)
if not self.left_patch:
indices = (1, 2)
if self.reverse_patch:
indices = (indices[1], indices[0])
texts = []
for b in self.filediff.textbuffer:
start, end = b.get_bounds()
text = b.get_text(start, end, False)
lines = text.splitlines(True)
# Ensure that the last line ends in a newline
barelines = text.splitlines(False)
if barelines and lines and barelines[-1] == lines[-1]:
# Final line lacks a line-break; add in a best guess
if len(lines) > 1:
previous_linebreak = lines[-2][len(barelines[-2]):]
else:
previous_linebreak = "\n"
lines[-1] += previous_linebreak
texts.append(lines)
names = [self.filediff.textbuffer[i].data.label for i in range(3)]
prefix = os.path.commonprefix(names)
names = [n[prefix.rfind("/") + 1:] for n in names]
buf = self.textview.get_buffer()
text0, text1 = texts[indices[0]], texts[indices[1]]
name0, name1 = names[indices[0]], names[indices[1]]
diff = difflib.unified_diff(text0, text1, name0, name1)
diff_text = "".join(d for d in diff)
buf.set_text(diff_text)
def save_patch(self, targetfile: Gio.File):
buf = self.textview.get_buffer()
sourcefile = GtkSource.File.new()
saver = GtkSource.FileSaver.new_with_target(
buf, sourcefile, targetfile)
saver.save_async(
GLib.PRIORITY_HIGH,
callback=self.file_saved_cb,
)
def file_saved_cb(self, saver, result, *args):
gfile = saver.get_location()
try:
saver.save_finish(result)
except GLib.Error as err:
filename = GLib.markup_escape_text(gfile.get_parse_name())
error_dialog(
primary=_("Could not save file %s.") % filename,
secondary=_("Couldn’t save file due to:\n%s") % (
GLib.markup_escape_text(str(err))),
)
def run(self):
self.update_patch()
result = super().run()
if result < 0:
self.hide()
return
# Copy patch to clipboard
if result == 1:
buf = self.textview.get_buffer()
start, end = buf.get_bounds()
clip = Gtk.Clipboard.get_default(Gdk.Display.get_default())
clip.set_text(buf.get_text(start, end, False), -1)
clip.store()
# Save patch as a file
else:
gfile = prompt_save_filename(_("Save Patch"))
if gfile:
self.save_patch(gfile)
self.hide()