-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitDiffWindow.cs
412 lines (372 loc) · 19.5 KB
/
GitDiffWindow.cs
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
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Unity.CodeEditor;
using UnityEditor;
using UnityEngine;
namespace Abuksigun.UnityGitUI
{
using static Const;
public static class GitDiff
{
[MenuItem("Assets/Git File/Diff", true)]
public static bool Check() => Selection.assetGUIDs.Any(x => Utils.GetAssetGitInfo(x) != null);
[MenuItem("Assets/Git File/Diff", priority = 110), MenuItem("Window/Git UI/Diff")]
public static void Invoke()
{
ShowDiff();
}
public static void ShowDiff()
{
if (EditorWindow.GetWindow<GitDiffWindow>() is { } window && window)
{
window.titleContent = new GUIContent("Git Diff");
window.Show();
}
}
}
public class GitDiffWindow : DefaultWindow
{
public delegate void HunkAction(FileStatus filePath, int hunkIndex);
const int TopPanelHeight = 20;
const int MaxChangesDisplay = 2000;
const int CodeLineHeight = 12;
static Regex hunkStartRegex = new(@"@@ -(\d+),?(\d+)?.*?\+(\d+),?(\d+)?.*?@@");
Vector2 scrollPosition;
GUIContent[] toolbarContent;
string[] diffLines;
HashSet<int> selectedLines;
Dictionary<string, string> unindexedFilesCache = new();
Module lastSelectedModule = null;
string lastSelectedFile = null;
int lastSelectedIndex = -1;
int lastSelectedLine = -1;
int lastHashCode = 0;
bool showLongDiff = false;
[SerializeField] bool staged;
public static LazyStyle lineNumber = new(() => new()
{
fontSize = 10,
normal = new GUIStyleState()
{
textColor = Style.TextColor
}
}, Style.VerifyNormalBackground);
public static LazyStyle diffUnchanged = new(() => new() {
normal = new GUIStyleState
{
background = Style.GetColorTexture(Style.BackgroundColor),
textColor = Style.TextColor
},
font = Style.MonospacedFont.Value,
fontSize = 10
}, Style.VerifyNormalBackground);
public static LazyStyle diffAdded = new(() => new(diffUnchanged.Value) {
normal = new GUIStyleState
{
background = Style.GetColorTexture(EditorGUIUtility.isProSkin ? new Color(0.13f, 0.33f, 0.16f) : new Color(0.505f, 0.99f, 0.618f)),
textColor = Style.TextColor
}
}, Style.VerifyNormalBackground);
public static LazyStyle diffRemoved = new(() => new(diffUnchanged.Value) {
normal = new GUIStyleState
{
background = Style.GetColorTexture(EditorGUIUtility.isProSkin ? new Color(0.5f, 0.19f, 0.21f) : new Color(0.990f, 0.564f, 0.564f)),
textColor = Style.TextColor
}
}, Style.VerifyNormalBackground);
public static LazyStyle diffSelected = new(() => new(diffUnchanged.Value) {
normal = new GUIStyleState
{
background = Style.GetColorTexture(EditorGUIUtility.isProSkin ? new Color(0.17f, 0.3f, 0.64f) : new Color(0.505f, 0.618f, 0.99f)),
textColor = Style.TextColor
}
}, Style.VerifyNormalBackground);
private void OnEnable()
{
AssetsWatcher.UnityEditorFocusChanged += OnEditorFocusChanged;
}
void OnEditorFocusChanged(bool hasFocus)
{
if (hasFocus)
lastHashCode = 0;
}
async Task<string> Diff(Module module, GitFileReference file)
{
var status = await module.GitStatus;
if (status.Unindexed.Any(x => x.FullPath == file.FullPath))
{
if (unindexedFilesCache.GetValueOrDefault(file.FullPath) is { } diff)
return diff;
const int maxSize = 1 * 1024* 1024;
var content = new FileInfo(file.FullPath).Length > maxSize ? File.ReadLines(file.FullPath).Take(MaxChangesDisplay).ToArray() : File.ReadAllLines(file.FullPath);
string relativePath = Path.GetRelativePath(module.GitRepoPath.GetResultOrDefault(), file.FullPath);
return unindexedFilesCache[file.FullPath] = $"new {relativePath}\n" + $"@@ -0,0 +1,{content.Length} @@\n+" + content.Join("\n+");
}
return await module.FileDiff(file);
}
protected override void OnGUI()
{
int maxSelectedFiles = 10;
var selectedFiles = Utils.GetSelectedFiles();
if (!selectedFiles.Any())
return;
bool viewingLog = selectedFiles.Any(x => !string.IsNullOrEmpty(x.FirstCommit));
bool hideButtons = viewingLog;
bool viewingAsset = selectedFiles.Any(x => !x.Staged.HasValue && string.IsNullOrEmpty(x.FirstCommit));
if (selectedFiles.Length > maxSelectedFiles)
GUILayout.Label($"Can't display diff for more then {maxSelectedFiles} without performance drop. Showing only first {maxSelectedFiles} files. (WIP)");
var diffs = selectedFiles.Select(x => (module: x.Module, fullPath: x.FullPath, diff: Diff(x.Module, x), x.Staged));
var loadedDiffs = diffs.Select(x => (x.module, x.fullPath, diff: x.diff.GetResultOrDefault(), x.Staged)).Where(x => x.diff != null).Take(maxSelectedFiles);
var stagedDiffs = loadedDiffs.Where(x => x.Staged.GetValueOrDefault());
var unstagedDiffs = loadedDiffs.Where(x => !x.Staged.GetValueOrDefault());
using (new GUILayout.HorizontalScope())
{
toolbarContent ??= new[] {
new GUIContent("Unstaged", EditorGUIUtility.IconContent("d_winbtn_mac_min@2x").image),
new GUIContent("Staged", EditorGUIUtility.IconContent("d_winbtn_mac_max@2x").image)
};
staged = stagedDiffs.Any() && (!unstagedDiffs.Any() || GUILayout.Toolbar(staged ? 1 : 0, toolbarContent, EditorStyles.toolbarButton, GUILayout.Width(160)) == 1);
GUILayout.FlexibleSpace();
if (!hideButtons)
{
if (staged)
{
int count = stagedDiffs.Count();
var modules = stagedDiffs.Select(x => x.module).Distinct();
var filesPerModule = modules.Select(module => (module, stagedDiffs.Where(x => x.module == module).Select(x => x.fullPath).ToArray()));
if (GUILayout.Button($"Unstage All ({count})", EditorStyles.toolbarButton, GUILayout.Width(130)))
{
GUIUtils.Unstage(filesPerModule);
UpdateSelection(modules.ToArray());
}
}
else
{
int count = unstagedDiffs.Count();
var modules = unstagedDiffs.Select(x => x.module).Distinct();
var filesPerModule = modules.Select(module => (module, unstagedDiffs.Where(x => x.module == module).Select(x => x.fullPath).ToArray()));
if (GUILayout.Button($"Stage All ({count})", EditorStyles.toolbarButton, GUILayout.Width(130)))
{
_ = GUIUtils.Stage(filesPerModule);
UpdateSelection(modules.ToArray());
}
if (GUILayout.Button($"Discard All ({count})", EditorStyles.toolbarButton, GUILayout.Width(130)))
{
GUIUtils.DiscardFiles(filesPerModule);
UpdateSelection(modules.ToArray());
}
}
}
}
var hashCode = selectedFiles.GetCombinedHashCode() ^ staged.GetHashCode();
if (hashCode != lastHashCode && diffs.All(x => x.diff.IsCompleted))
{
var diffStrings = staged ? stagedDiffs.Select(x => $"#{x.module.Guid}\n{x.diff}") : unstagedDiffs.Select(x => $"#{x.module.Guid}\n{x.diff}");
diffLines = diffStrings.SelectMany(x => GUIUtils.EscapeAngleBrackets(x).Split('\n', RemoveEmptyEntries)).ToArray();
selectedLines = new();
lastSelectedIndex = -1;
unindexedFilesCache.Clear();
lastHashCode = hashCode;
}
if (focusedWindow == this)
{
if (Event.current.control && Event.current.keyCode == KeyCode.C)
CopySelected();
if (Event.current.type == EventType.MouseDown && Event.current.button == 1)
{
var menu = new GenericMenu();
menu.AddItem(new GUIContent("Copy Diff"), false, () => CopyDiff(selectedFiles));
menu.AddItem(new GUIContent("Copy"), false, CopySelected);
if (lastSelectedModule != null && lastSelectedFile != null)
menu.AddItem(new GUIContent("Open Editor"), false, () => CodeEditor.Editor.CurrentCodeEditor.OpenProject(Path.Join(lastSelectedModule.LogicalPath, lastSelectedFile), lastSelectedLine));
menu.ShowAsContext();
Event.current.Use();
}
if (Event.current.type == EventType.MouseDown && Event.current.button == 0 && Event.current.clickCount > 1)
{
if (lastSelectedModule != null && lastSelectedFile != null)
{
CodeEditor.Editor.CurrentCodeEditor.OpenProject(Path.Join(lastSelectedModule.LogicalPath, lastSelectedFile), lastSelectedLine);
Event.current.Use();
}
}
}
DrawGitDiff(position.size - TopPanelHeight.To0Y(), StageHunk, UnstageHunk, DiscardHunk, staged, !hideButtons, ref scrollPosition);
base.OnGUI();
}
public void DrawGitDiff(Vector2 size, HunkAction stageHunk, HunkAction unstageHunk, HunkAction discardHunk, bool staged, bool showButtons, ref Vector2 scrollPosition)
{
if (diffLines == null || diffLines.Length == 0)
return;
if (diffLines.Length > MaxChangesDisplay && !showLongDiff)
{
EditorGUI.LabelField(new Rect(Vector2.zero, size), $"Can't display without performance drop. Diff contains {diffLines.Length} lines of max {MaxChangesDisplay}");
if (GUI.Button(new Rect(0, size.y - 20, size.x, 20), "Show anyway"))
showLongDiff = true;
return;
}
string longestLine = diffLines.OrderByDescending(x => x.Length).First();
float width = Mathf.Max(diffUnchanged.Value.CalcSize(new GUIContent(longestLine)).x, size.x) + 100;
int currentAddedLine = 1;
int currentRemovedLine = 1;
int currentLine = 1;
using var scroll = new GUILayout.ScrollViewScope(scrollPosition, false, false, GUILayout.Width(size.x), GUILayout.Height(size.y));
float headerHeight = EditorStyles.toolbarButton.fixedHeight;
Module module = null;
float currentOffset = 0;
string currentFile = null;
int hunkIndex = -1;
for (int i = 0; i < diffLines.Length; i++)
{
if (diffLines[i][0] == '#')
{
module = Utils.GetModule(diffLines[i][1..]);
}
else if (diffLines[i][0] == 'n')
{
currentFile = diffLines[i][4..].Trim();
if (currentOffset >= scrollPosition.y && currentOffset < scrollPosition.y + size.y)
EditorGUI.SelectableLabel(new Rect(0, currentOffset, width, headerHeight), currentFile, Style.FileName.Value);
currentOffset += headerHeight;
}
else if (diffLines[i][0] == 'd')
{
if (diffLines[i + 2].StartsWith("Binary") || diffLines[i + 3].StartsWith("Binary"))
{
EditorGUI.SelectableLabel(new Rect(0, currentOffset, width, headerHeight), diffLines[i + 2], Style.FileName.Value);
break;
}
while (!diffLines[i].StartsWith("---"))
i++;
string removedFile = diffLines[i][6..].Trim();
i++;
string addedFile = diffLines[i][6..].Trim();
currentFile = addedFile == "ev/null" ? removedFile : addedFile;
hunkIndex = -1;
if (currentOffset >= scrollPosition.y && currentOffset < scrollPosition.y + size.y)
EditorGUI.SelectableLabel(new Rect(0, currentOffset, width, headerHeight), currentFile, Style.FileName.Value);
currentOffset += headerHeight;
}
else if (diffLines[i].StartsWith("@@"))
{
var match = hunkStartRegex.Match(diffLines[i]);
if (currentOffset >= scrollPosition.y && currentOffset < scrollPosition.y + size.y)
{
EditorGUI.LabelField(new Rect(0, currentOffset, width, headerHeight), match.Value, Style.FileName.Value);
if (showButtons && module.GitStatus.GetResultOrDefault() is { } status)
{
const float buttonWidth = 70;
float verticalOffsest = size.x;
var fileStatus = status.Files.FirstOrDefault(x => x.FullProjectPath.Contains(currentFile));
if (fileStatus != null && !fileStatus.IsUnresolved)
{
if (!staged && GUI.Button(new Rect(verticalOffsest -= buttonWidth, currentOffset, 70, headerHeight), "Stage", EditorStyles.miniButton))
stageHunk.Invoke(fileStatus, hunkIndex + 1);
if (staged && GUI.Button(new Rect(verticalOffsest -= buttonWidth, currentOffset, 70, headerHeight), "Unstage", EditorStyles.miniButton))
unstageHunk.Invoke(fileStatus, hunkIndex + 1);
if (!staged && GUI.Button(new Rect(verticalOffsest -= buttonWidth, currentOffset, 70, headerHeight), "Discard", EditorStyles.miniButton))
discardHunk.Invoke(fileStatus, hunkIndex + 1);
}
}
}
currentAddedLine = match.Groups[1].Value != "0" ? int.Parse(match.Groups[1].Value) : int.Parse(match.Groups[3].Value);
currentRemovedLine = match.Groups[3].Value != "0" ? int.Parse(match.Groups[3].Value) : currentAddedLine;
currentLine = currentAddedLine;
hunkIndex++;
currentOffset += headerHeight;
}
else if (hunkIndex >= 0)
{
bool selected = selectedLines?.Contains(i) ?? false;
char lineMode = diffLines[i][0];
var style = selected ? diffSelected : lineMode switch { '+' => diffAdded, '-' => diffRemoved, _ => diffUnchanged };
if (currentOffset >= scrollPosition.y && currentOffset < scrollPosition.y + size.y)
{
var rect = new Rect(0, currentOffset, width, CodeLineHeight);
if (GUI.Toggle(rect, selected, $" {diffLines[i][1..]}", style.Value) != selected)
HandleSelection(selected, module, currentFile, i, currentLine);
GUI.Label(rect, $"{diffLines[i][0]}", lineNumber.Value);
GUI.Label(rect.Move(8, 0), $"{(lineMode == '-' ? currentRemovedLine : currentAddedLine),4}", lineNumber.Value);
}
if (lineMode == '-' || lineMode == ' ')
currentRemovedLine++;
if (lineMode == '+' || lineMode == ' ')
currentAddedLine++;
currentLine++;
currentOffset += CodeLineHeight;
}
}
GUILayoutUtility.GetRect(width, currentOffset); // scroll won't work without telling the layout system the actual size of the diff
scrollPosition = scroll.scrollPosition;
}
void HandleSelection(bool previouslySelected, Module module, string fileName, int index, int line)
{
if (Event.current.control)
{
if (previouslySelected)
selectedLines.Remove(index);
else
selectedLines.Add(index);
}
if (Event.current.shift)
{
int min = Mathf.Min(index, lastSelectedIndex);
int max = Mathf.Max(index, lastSelectedIndex);
for (int i = min; i <= max; i++)
{
selectedLines.Add(i);
}
}
else
{
selectedLines = new() { index };
}
lastSelectedModule = module;
lastSelectedFile = fileName;
lastSelectedIndex = index;
lastSelectedLine = line;
}
void CopySelected()
{
var selectedText = GUIUtils.UnescapeAngleBrackets(string.Join("\n", selectedLines.Select(x => diffLines[x][1..])));
EditorGUIUtility.systemCopyBuffer = selectedText;
}
async void CopyDiff(GitFileReference[] selectedFiles)
{
string[] diffs = await Task.WhenAll(selectedFiles.Select(x => x.Module.FileDiff(selectedFiles.First())));
EditorGUIUtility.systemCopyBuffer = diffs.Join('\n');
}
async void DiscardHunk(FileStatus file, int id) => await GitPatch("checkout -q --patch", file, id);
async void StageHunk(FileStatus file, int id) => await GitPatch("add --patch", file, id);
async void UnstageHunk(FileStatus file, int id) => await GitPatch("reset -q --patch", file, id);
async Task GitPatch(string args, FileStatus file, int id)
{
bool inputApplied = false;
var module = Utils.GetModule(file.ModuleGuid);
await module.RunProcess(PluginSettingsProvider.GitPath, $"{args} -- {file.FullPath.WrapUp()}", false, data => {
if (data.Error)
throw new System.Exception($"Got an error can't continue staging! {data.Data}");
if (!inputApplied)
{
for (int i = 0; i < id; i++)
data.Process.StandardInput.WriteLine("n");
data.Process.StandardInput.WriteLine("y");
data.Process.StandardInput.WriteLine("d");
data.Process.StandardInput.Flush();
inputApplied = true;
}
});
UpdateSelection(module);
}
void UpdateSelection(params Module[] modules)
{
foreach (var module in modules)
module.RefreshFilesStatus();
_ = ProjectBrowserExtension.UpdateSelection();
lastHashCode = 0;
}
}
}