-
Notifications
You must be signed in to change notification settings - Fork 307
/
Copy pathCodePaneHandler.cs
255 lines (219 loc) · 9.69 KB
/
CodePaneHandler.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
using System;
using System.Collections.Generic;
using System.Linq;
using Rubberduck.VBEditor.ComManagement;
using Rubberduck.VBEditor.SafeComWrappers.Abstract;
using System.Diagnostics;
namespace Rubberduck.VBEditor.SourceCodeHandling
{
public class CodePaneHandler : ICodePaneHandler
{
private readonly IProjectsProvider _projectsProvider;
public CodePaneHandler(IProjectsProvider projectsProvider)
{
_projectsProvider = projectsProvider;
}
public string SourceCode(QualifiedModuleName module)
{
var component = _projectsProvider.Component(module);
if (component == null)
{
return string.Empty;
}
using (var codeModule = component.CodeModule)
{
return codeModule.Content() ?? string.Empty;
}
}
public void SetSelection(ICodeModule module, Selection selection)
{
using (var pane = module.CodePane)
{
pane.Selection = selection;
}
}
public void SubstituteCode(ICodeModule module, CodeString newCode)
{
try
{
module.DeleteLines(newCode.SnippetPosition);
module.InsertLines(newCode.SnippetPosition.StartLine, newCode.Code);
}
catch
{
Debug.Assert(false, "too many line continuations. we shouldn't even be here.");
}
}
public void SubstituteCode(QualifiedModuleName module, CodeString newCode)
{
var component = _projectsProvider.Component(module);
if (component == null)
{
return;
}
using (var codeModule = component.CodeModule)
{
SubstituteCode(codeModule, newCode);
}
}
public void SubstituteCode(QualifiedModuleName module, string newCode)
{
var component = _projectsProvider.Component(module);
if (component == null)
{
return;
}
using (var codeModule = component.CodeModule)
{
codeModule.Clear();
codeModule.InsertLines(1, newCode);
}
}
public CodeString Prettify(ICodeModule module, CodeString original)
{
var originalCode = original.Code.Replace("\r", string.Empty).Split('\n');
var originalPosition = original.CaretPosition.StartColumn;
var isAtLastCharacter = originalPosition == original.CaretLine.Length;
var originalNonWhitespaceCharacters = 0;
var isAllWhitespace = !isAtLastCharacter;
if (!isAtLastCharacter)
{
for (var i = 0; i <= Math.Min(originalPosition - 1, original.CaretLine.Length - 1); i++)
{
if (originalCode[original.CaretPosition.StartLine][i] != ' ')
{
originalNonWhitespaceCharacters++;
isAllWhitespace = false;
}
}
}
var indent = original.CaretLine.TakeWhile(c => c == ' ').Count();
module.DeleteLines(original.SnippetPosition.StartLine, original.SnippetPosition.LineCount);
module.InsertLines(original.SnippetPosition.StartLine, string.Join("\r\n", originalCode));
var prettifiedCode = module.GetLines(original.SnippetPosition)
.Replace("\r", string.Empty)
.Split('\n');
var prettifiedNonWhitespaceCharacters = 0;
var prettifiedCaretCharIndex = 0;
if (!isAtLastCharacter)
{
for (var i = 0; i < prettifiedCode[original.CaretPosition.StartLine].Length; i++)
{
if (prettifiedCode[original.CaretPosition.StartLine][i] != ' ')
{
prettifiedNonWhitespaceCharacters++;
if (prettifiedNonWhitespaceCharacters == originalNonWhitespaceCharacters
|| i == prettifiedCode[original.CaretPosition.StartLine].Length - 1)
{
prettifiedCaretCharIndex = i;
break;
}
}
}
}
else
{
prettifiedCaretCharIndex = prettifiedCode[original.CaretPosition.StartLine].Length;
}
var prettifiedPosition = new Selection(
original.SnippetPosition.ToZeroBased().StartLine + original.CaretPosition.StartLine,
prettifiedCode[original.CaretPosition.StartLine].Trim().Length == 0 || (isAllWhitespace && !string.IsNullOrEmpty(original.CaretLine.Substring(original.CaretPosition.StartColumn).Trim()))
? Math.Min(indent, original.CaretPosition.StartColumn)
: Math.Min(prettifiedCode[original.CaretPosition.StartLine].Length, prettifiedCaretCharIndex + 1))
.ToOneBased();
SetSelection(module, prettifiedPosition);
return GetPrettifiedCodeString(original, prettifiedPosition, prettifiedCode);
}
public CodeString Prettify(QualifiedModuleName module, CodeString original)
{
var component = _projectsProvider.Component(module);
if (component == null)
{
return original;
}
using (var codeModule = component.CodeModule)
{
return Prettify(codeModule, original);
}
}
private static CodeString GetPrettifiedCodeString(CodeString original, Selection prettifiedPosition, string[] prettifiedCode)
{
var caretPosition = new Selection(original.CaretPosition.StartLine,
prettifiedPosition.StartColumn - 1); // caretPosition is zero-based
var snippetPosition = new Selection(original.SnippetPosition.StartLine,
original.SnippetPosition.StartColumn, original.SnippetPosition.EndLine,
prettifiedCode[prettifiedCode.Length - 1].Length);
var result = new CodeString(string.Join("\r\n", prettifiedCode), caretPosition, snippetPosition);
return result;
}
private const string LineContinuation = " _";
public CodeString GetCurrentLogicalLine(ICodeModule module)
{
Selection pSelection;
using (var pane = module.CodePane)
{
pSelection = pane.Selection;
}
var selectedContent = module.GetLines(pSelection.StartLine, pSelection.LineCount);
var selectedLines = selectedContent.Replace("\r", string.Empty).Split('\n');
var currentLine = selectedLines[0];
var caretStartLine = (pSelection.StartLine, currentLine);
var lines = new List<(int pLine, string Content)> {caretStartLine};
// selection line may not be the only physical line in the complete logical line; accounts for line continuations.
InsertPhysicalLinesAboveSelectionStart(lines, module, pSelection.StartLine);
AppendPhysicalLinesBelowSelectionStart(lines, module, pSelection.StartLine, currentLine);
var logicalLine = string.Join("\r\n", lines.Select(e => e.Content));
var zCaretLine = lines.IndexOf(caretStartLine);
var zCaretColumn = pSelection.StartColumn - 1;
var caretPosition = new Selection(
zCaretLine, zCaretColumn, zCaretLine + pSelection.LineCount - 1, pSelection.EndColumn - 1);
var pStartLine = lines[0].pLine;
var pEndLine = lines[lines.Count - 1].pLine;
var snippetPosition = new Selection(pStartLine, 1, pEndLine, 1);
if (pStartLine > pSelection.StartLine || pEndLine > pSelection.EndLine)
{
// selection spans more than a single logical line
return null;
}
var result = new CodeString(logicalLine, caretPosition, snippetPosition);
return result;
}
private void AppendPhysicalLinesBelowSelectionStart(ICollection<(int Line, string Content)> lines, ICodeModule module, int currentLineIndex, string currentLine)
{
// assumes caret line is already in the list.
while (currentLineIndex <= module.CountOfLines && currentLine.EndsWith(LineContinuation))
{
currentLineIndex++;
if (currentLineIndex <= module.CountOfLines)
{
currentLine = module.GetLines(currentLineIndex, 1);
lines.Add((currentLineIndex, currentLine));
}
else
{
break;
}
}
}
private void InsertPhysicalLinesAboveSelectionStart(IList<(int Line, string Content)> lines, ICodeModule module, int currentLineIndex)
{
// assumes caret line is already in the list.
while (currentLineIndex >= 1)
{
currentLineIndex--;
if (currentLineIndex >= 1)
{
var currentLine = module.GetLines(currentLineIndex, 1);
if (currentLine.EndsWith(LineContinuation))
{
lines.Insert(0, (currentLineIndex, currentLine));
}
else
{
break;
}
}
}
}
}
}