forked from colinta/SublimeFileDiffs
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfile_diffs.py
More file actions
277 lines (228 loc) · 9.78 KB
/
file_diffs.py
File metadata and controls
277 lines (228 loc) · 9.78 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
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
# coding: utf8
import os
import re
import sublime
import sublime_plugin
import difflib
from fnmatch import fnmatch
import codecs
SETTINGS = sublime.load_settings('FileDiffs.sublime-settings')
CLIPBOARD = u'Diff file with Clipboard'
SELECTIONS = u'Diff Selections'
SAVED = u'Diff file with Saved'
FILE = u'Diff file with File in Project…'
TAB = u'Diff file with Open Tab…'
FILE_DIFFS = [CLIPBOARD, SAVED, FILE, TAB]
class FileDiffMenuCommand(sublime_plugin.TextCommand):
def run(self, edit):
menu_items = FILE_DIFFS[:]
saved = SAVED
non_empty_regions = [region for region in self.view.sel() if not region.empty()]
if len(non_empty_regions) == 2:
menu_items.insert(1, SELECTIONS)
elif len(non_empty_regions):
menu_items = [f.replace(u'Diff file', u'Diff selection') for f in menu_items]
saved = saved.replace(u'Diff file', u'Diff selection')
if not (self.view.file_name() and self.view.is_dirty()):
menu_items.remove(saved)
def on_done(index):
restored_menu_items = [f.replace(u'Diff selection', u'Diff file') for f in menu_items]
if index == -1:
return
elif restored_menu_items[index] == CLIPBOARD:
self.view.run_command('file_diff_clipboard')
elif restored_menu_items[index] == SELECTIONS:
self.view.run_command('file_diff_selections')
elif restored_menu_items[index] == SAVED:
self.view.run_command('file_diff_saved')
elif restored_menu_items[index] == FILE:
self.view.run_command('file_diff_file')
elif restored_menu_items[index] == TAB:
self.view.run_command('file_diff_tab')
sublime.set_timeout(lambda: self.view.window().show_quick_panel(menu_items, on_done), 10)
class FileDiffCommand(sublime_plugin.TextCommand):
def diff_content(self):
content = ''
regions = [region for region in self.view.sel()]
for region in regions:
if region.empty():
continue
content += self.view.substr(region)
if not content:
content = self.view.substr(sublime.Region(0, self.view.size()))
return content
def is_path(self, path):
#due to Windows Exception when trying to open text: ValueError: path too long for Windows
try:
return os.path.exists(a)
except Exception as e:
return False
def run_diff(self, a, b, from_file=None, to_file=None):
from_content = a
to_content = b
if self.is_path(a):
if from_file is None:
from_file = a
with codecs.open(from_file, mode='U', encoding='utf-8') as f:
from_content = f.readlines()
else:
from_content = a.splitlines(True)
if from_file is None:
from_file = 'from_file'
if self.is_path(b):
if to_file is None:
to_file = b
with codecs.open(to_file, mode='U', encoding='utf-8') as f:
to_content = f.readlines()
else:
to_content = b.splitlines(True)
if to_file is None:
to_file = 'to_file'
diffs = list(difflib.unified_diff(from_content, to_content, from_file, to_file))
FileDiffCommand.diff_with_external(self, a, b, from_file, to_file)
return diffs
def diff_with_external(self, a, b, from_file=None, to_file=None):
if os.path.exists(from_file) and os.path.exists(to_file):
command = SETTINGS.get('cmd')
if command is not None:
command = [c.replace(u'$file1', from_file) for c in command]
command = [c.replace(u'$file2', to_file) for c in command]
self.view.window().run_command("exec", {"cmd": command})
def show_diff(self, diffs):
if diffs:
scratch = self.view.window().new_file()
scratch.set_scratch(True)
scratch.set_syntax_file('Packages/Diff/Diff.tmLanguage')
scratch_edit = scratch.begin_edit('file_diffs')
scratch.insert(scratch_edit, 0, ''.join(diffs))
scratch.end_edit(scratch_edit)
else:
sublime.status_message('No Difference')
class FileDiffClipboardCommand(FileDiffCommand):
def run(self, edit, **kwargs):
current = sublime.get_clipboard()
diffs = self.run_diff(self.diff_content(), current,
from_file=self.view.file_name(),
to_file='(clipboard)')
self.show_diff(diffs)
class FileDiffSelectionsCommand(FileDiffCommand):
def run(self, edit, **kwargs):
regions = self.view.sel()
current = self.view.substr(regions[0])
diff = self.view.substr(regions[1])
# trim off indent
indent = None
for line in current.splitlines():
new_indent = re.match('[ \t]*', line).group(0)
if new_indent == '':
continue
if indent is None:
indent = new_indent
elif len(new_indent) < len(indent):
indent = new_indent
if not indent:
break
if indent:
current = u"\n".join(line[len(indent):] for line in current.splitlines())
# trim off indent
indent = None
for line in diff.splitlines():
new_indent = re.match('[ \t]*', line).group(0)
if new_indent == '':
continue
if indent is None:
indent = new_indent
elif len(new_indent) < len(indent):
indent = new_indent
if indent:
diff = u"\n".join(line[len(indent):] for line in diff.splitlines())
self.show_diff(self.run_diff(current, diff,
from_file='first selection',
to_file='second selection'))
class FileDiffSavedCommand(FileDiffCommand):
def run(self, edit, **kwargs):
content = ''
regions = [region for region in self.view.sel()]
for region in regions:
if region.empty():
continue
content += self.view.substr(region)
if not content:
content = self.view.substr(sublime.Region(0, self.view.size()))
diffs = self.run_diff(self.view.file_name(), content,
from_file=self.view.file_name(),
to_file=self.view.file_name() + u' (Unsaved)')
self.show_diff(diffs)
class FileDiffFileCommand(FileDiffCommand):
def run(self, edit, **kwargs):
common = None
folders = self.view.window().folders()
files = self.find_files(folders)
for folder in folders:
if common == None:
common = folder
else:
common_len = len(common)
while folder[0:common_len] != common[0:common_len]:
common_len -= 1
common = common[0:common_len]
my_file = self.view.file_name()
# filter out my_file
files = [file for file in files if file != my_file]
# shorten names using common length
file_picker = [file[len(common):] for file in files]
def on_done(index):
if index > -1:
diffs = self.run_diff(self.diff_content(), files[index],
from_file=self.view.file_name())
self.show_diff(diffs)
sublime.set_timeout(lambda: self.view.window().show_quick_panel(file_picker, on_done), 10)
def find_files(self, folders):
# Cannot access these settings!! WHY!?
# folder_exclude_patterns = self.view.settings().get('folder_exclude_patterns')
# file_exclude_patterns = self.view.settings().get('file_exclude_patterns')
folder_exclude_patterns = [".svn", ".git", ".hg", "CVS"]
file_exclude_patterns = ["*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj", "*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store", "*.class", "*.psd", "*.db"]
ret = []
for folder in folders:
if not os.path.isdir(folder):
continue
for file in os.listdir(folder):
fullpath = os.path.join(folder, file)
if os.path.isdir(fullpath):
# excluded folder?
if not len([True for pattern in folder_exclude_patterns if fnmatch(file, pattern)]):
ret += self.find_files([fullpath])
else:
# excluded file?
if not len([True for pattern in file_exclude_patterns if fnmatch(file, pattern)]):
ret.append(fullpath)
return ret
class FileDiffTabCommand(FileDiffCommand):
def run(self, edit, **kwargs):
my_id = self.view.id()
files = []
contents = []
untitled_count = 1
for v in self.view.window().views():
if v.id() != my_id:
this_content = v.substr(sublime.Region(0, v.size()))
if v.file_name():
files.append(v.file_name())
elif v.name():
files.append(v.name())
else:
files.append('untitled %d' % untitled_count)
untitled_count += 1
contents.append(this_content)
def on_done(index):
if index > -1:
diffs = self.run_diff(self.diff_content(), contents[index],
from_file=self.view.file_name(),
to_file=files[index])
self.show_diff(diffs)
if len(files) == 1:
on_done(0)
else:
menu_items = [os.path.basename(f) for f in files]
sublime.set_timeout(lambda: self.view.window().show_quick_panel(menu_items, on_done), 10)