-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathScriptWriter.cs
More file actions
417 lines (357 loc) · 15.5 KB
/
ScriptWriter.cs
File metadata and controls
417 lines (357 loc) · 15.5 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
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
//#define VISIBLE_WHITESPACE
//------------------------------------------------------------------------------
// <copyright file="ScriptWriter.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
namespace Microsoft.SqlServer.TransactSql.ScriptDom.ScriptGenerator
{
/// <summary>
/// Writes tokens to a token stream which can then be outputted to text
/// </summary>
internal partial class ScriptWriter
{
#region private static members
private static NewLineElement _newLine = new NewLineElement();
private static TSqlParserToken _newLineToken = new TSqlParserToken(TSqlTokenType.WhiteSpace, Environment.NewLine);
#endregion
#region Private Fields
//private Int32 _indentation; // number of white space characters to be inserted for indentation
private SqlScriptGeneratorOptions _options;
private Dictionary<AlignmentPoint, AlignmentPointData> _alignmentPointDataMap; // AlignmentPoints to their AlignmentPointData for all alignment points
private Dictionary<String, AlignmentPoint> _alignmentPointNameMapForCurrentScope; // Name to AlignmentPoints for all pushes
private Stack<Dictionary<String, AlignmentPoint>> _alignmentPointNameMaps; // Name to AlignmentPoints for the alignment points found after the nearest push
private List<ScriptWriterElement> _scriptWriterElements;
private Stack<AlignmentPoint> _newLineAlignmentPoints;
#endregion
#region Public Constructors
public ScriptWriter(SqlScriptGeneratorOptions options)
{
_options = options;
_alignmentPointDataMap = new Dictionary<AlignmentPoint, AlignmentPointData>();
_alignmentPointNameMapForCurrentScope = new Dictionary<String, AlignmentPoint>();
_alignmentPointNameMaps = new Stack<Dictionary<String, AlignmentPoint>>();
_scriptWriterElements = new List<ScriptWriterElement>();
_newLineAlignmentPoints = new Stack<AlignmentPoint>();
}
#endregion
#region public methods
public void AddKeyword(TSqlTokenType keywordId)
{
String text = ScriptGeneratorSupporter.GetTokenString(keywordId, _options.KeywordCasing);
TSqlParserToken token = new TSqlParserToken(keywordId, text);
AddToken(token);
}
public void AddIdentifierWithCasing(String text)
{
ScriptGeneratorSupporter.CheckForNullReference(text, "text");
AddIdentifier(text, true);
}
public void AddIdentifierWithoutCasing(String text)
{
ScriptGeneratorSupporter.CheckForNullReference(text, "text");
AddIdentifier(text, false);
}
public void AddToken(TSqlParserToken token)
{
ScriptGeneratorSupporter.CheckForNullReference(token, "token");
AddTokenWrapper(new TokenWrapper(token));
}
public void NewLine()
{
AddNewLine();
// if we have some AlignmentPoints on stack, we set to the top one
if (_newLineAlignmentPoints.Count > 0)
{
Mark(_newLineAlignmentPoints.Peek());
}
}
public void Indent(Int32 size)
{
AddSpace(size);
}
public void Mark(AlignmentPoint ap)
{
if (String.IsNullOrEmpty(ap.Name) == false &&
_alignmentPointNameMapForCurrentScope.ContainsKey(ap.Name) == false)
{
_alignmentPointNameMapForCurrentScope.Add(ap.Name, ap);
}
AddAlignmentPoint(ap);
}
public void PushNewLineAlignmentPoint(AlignmentPoint ap)
{
_newLineAlignmentPoints.Push(ap);
_alignmentPointNameMaps.Push(_alignmentPointNameMapForCurrentScope);
_alignmentPointNameMapForCurrentScope = new Dictionary<String, AlignmentPoint>();
}
public void PopNewLineAlignmentPoint()
{
_newLineAlignmentPoints.Pop();
_alignmentPointNameMapForCurrentScope = _alignmentPointNameMaps.Pop();
}
public AlignmentPoint FindOrCreateAlignmentPoint(String name)
{
AlignmentPoint ap = null;
if (_alignmentPointNameMapForCurrentScope.TryGetValue(name, out ap) == false)
{
// may not be necessary, just want to make it explicit
ap = null;
}
if (ap == null)
{
ap = new AlignmentPoint(name);
}
return ap;
}
/// <summary>
/// Writes the textual contents of this script writer to the specified text writer
/// </summary>
/// <remarks>This method calls Dispose after completing to dispose of the script writer</remarks>
/// <param name="writer">The text writer to write contents to</param>
public void WriteTo(TextWriter writer)
{
List<TSqlParserToken> alignedTokens = TryGetAlignedTokens();
foreach (TSqlParserToken token in alignedTokens)
{
writer.Write(token.Text);
}
writer.Flush();
}
/// <summary>
/// Writes the tokens in this script writer to the specified list
/// </summary>
/// <remarks>This method calls Dispose after completing to dispose of the script writer</remarks>
/// <param name="tokens">A list of tokens to write the contents of this writer to</param>
public void WriteTo(IList<TSqlParserToken> tokens)
{
List<TSqlParserToken> alignedTokens = TryGetAlignedTokens();
foreach (TSqlParserToken token in alignedTokens)
{
tokens.Add(token);
}
}
#endregion
#region supporting methods
private void AddIdentifier(String text, Boolean applyCasing)
{
if (applyCasing)
{
text = ScriptGeneratorSupporter.GetCasedString(text, _options.KeywordCasing);
}
TSqlParserToken token = new TSqlParserToken(TSqlTokenType.Identifier, text);
AddToken(token);
}
private void AddSpace(int count)
{
AddToken(ScriptGeneratorSupporter.CreateWhitespaceToken(count));
}
private void AddTokenWrapper(TokenWrapper token)
{
_scriptWriterElements.Add(token);
}
#if DEBUG
HashSet<AlignmentPoint> _alignmentPointsForCurrentLine = new HashSet<AlignmentPoint>();
#endif
private void AddAlignmentPoint(AlignmentPoint ap)
{
#if DEBUG
if (_alignmentPointsForCurrentLine.Contains(ap))
{
Debug.Assert(false, "Duplicated alignment points found in the same line");
}
_alignmentPointsForCurrentLine.Add(ap);
#endif
_scriptWriterElements.Add(FindOrCreateAlignmentPointData(ap));
}
private void AddNewLine()
{
#if DEBUG
_alignmentPointsForCurrentLine.Clear();
#endif
_scriptWriterElements.Add(_newLine);
}
private ScriptWriterElement FindOrCreateAlignmentPointData(AlignmentPoint ap)
{
AlignmentPointData apd;
if (_alignmentPointDataMap.TryGetValue(ap, out apd) == false)
{
apd = new AlignmentPointData(ap.Name);
_alignmentPointDataMap.Add(ap, apd);
}
return apd;
}
// try to return the aligned tokens
// return unaligned tokens if failing aligning the tokens
private List<TSqlParserToken> TryGetAlignedTokens()
{
List<TSqlParserToken> result = Align();
if (result == null)
result = GetAllTokens();
return result;
}
private List<TSqlParserToken> Align()
{
// keep all alignment points
HashSet<AlignmentPointData> allPoints = new HashSet<AlignmentPointData>();
// find out the width for each alignment point and populate relationship among alignment points
Int32 width = 0; // keep the width between two alignment points
AlignmentPointData previousPoint = null;
for (Int32 index = 0; index < _scriptWriterElements.Count; ++index)
{
ScriptWriterElement element = _scriptWriterElements[index];
switch (element.ElementType)
{
case ScriptWriterElementType.AlignmentPoint:
AlignmentPointData ap = element as AlignmentPointData;
#if !PIMODLANGUAGE
Debug.Assert(ap != null, "AlignmentPointData is expected");
#endif
allPoints.Add(ap);
if (previousPoint != null)
{
// this is not the first alignment point of the current line, so establish the relationships
ap.AddLeftPoint(previousPoint, width);
previousPoint.AddRightPoint(ap);
}
else
{
// this is the first alignment point of the current line, so the width is also its offset
ap.Offset = Math.Max(ap.Offset, width);
}
width = 0;
previousPoint = ap;
break;
case ScriptWriterElementType.Token:
TokenWrapper tokenWrapper = element as TokenWrapper;
Debug.Assert(tokenWrapper != null, "TokenWrapper is expected");
Debug.Assert(tokenWrapper.Token.Text != null, "TokenWrapper.Token.Text should not be null");
if (tokenWrapper != null && tokenWrapper.Token != null && tokenWrapper.Token.Text != null)
{
width += tokenWrapper.Token.Text.Length;
}
break;
case ScriptWriterElementType.NewLine:
Debug.Assert(element is NewLineElement, "NewLineElement is expected");
width = 0;
previousPoint = null;
break;
default:
Debug.Assert(false, "Unknown ScriptWriterElement type");
break;
}
}
// we have established previous-next relationships among all alignmnet points
// now, we perform the alignment
while (true)
{
if (allPoints.Count == 0)
{
// all the alignment points have been aligned, so we are done
break;
}
AlignmentPointData ap = FindOneAlignmentPointWithOutDependent(allPoints);
if (ap == null)
{
// if we can't find any, we have a circle among alignment points
return null;
}
// let's align ap up
HashSet<AlignmentPointData> rightPoints = ap.RightPoints;
foreach (AlignmentPointData rightPoint in rightPoints)
{
rightPoint.AlignAndRemoveLeftPoint(ap);
}
// ap is done; let's remove it;
allPoints.Remove(ap);
}
// generate aligned token stream
List<TSqlParserToken> tokens = new List<TSqlParserToken>(_scriptWriterElements.Count);
Int32 offset = 0;
for (Int32 index = 0; index < _scriptWriterElements.Count; ++index)
{
ScriptWriterElement element = _scriptWriterElements[index];
switch (element.ElementType)
{
case ScriptWriterElementType.AlignmentPoint:
AlignmentPointData ap = element as AlignmentPointData;
#if !PIMODLANGUAGE
Debug.Assert(ap != null, "AlignmentPointData is expected");
#endif
Debug.Assert(ap.Offset >= offset, "Incorrect offset");
if (ap.Offset > offset)
{
tokens.Add(ScriptGeneratorSupporter.CreateWhitespaceToken(ap.Offset - offset));
}
offset = ap.Offset;
break;
case ScriptWriterElementType.Token:
TokenWrapper tokenWrapper = element as TokenWrapper;
Debug.Assert(tokenWrapper != null, "TokenWrapper is expected");
Debug.Assert(tokenWrapper.Token.Text != null, "TokenWrapper.Token.Text should not be null");
if (tokenWrapper != null && tokenWrapper.Token != null && tokenWrapper.Token.Text != null)
{
tokens.Add(tokenWrapper.Token);
offset += tokenWrapper.Token.Text.Length;
}
break;
case ScriptWriterElementType.NewLine:
Debug.Assert(element is NewLineElement, "NewLineElement is expected");
tokens.Add(_newLineToken);
offset = 0;
break;
default:
Debug.Assert(false, "Unknown ScriptWriterElement type");
break;
}
}
return tokens;
}
// get all tokens without alignment
private List<TSqlParserToken> GetAllTokens()
{
List<TSqlParserToken> tokens = new List<TSqlParserToken>();
for (Int32 index = 0; index < _scriptWriterElements.Count; ++index)
{
ScriptWriterElement element = _scriptWriterElements[index];
switch (element.ElementType)
{
case ScriptWriterElementType.Token:
TokenWrapper tokenWrapper = element as TokenWrapper;
Debug.Assert(tokenWrapper != null, "TokenWrapper is expected");
tokens.Add(tokenWrapper.Token);
break;
case ScriptWriterElementType.NewLine:
Debug.Assert(element is NewLineElement, "NewLineElement is expected");
tokens.Add(_newLineToken);
break;
case ScriptWriterElementType.AlignmentPoint:
// we don't do anything for the alignement points
break;
default:
Debug.Assert(false, "Unknown ScriptWriterElement type");
break;
}
}
return tokens;
}
private static AlignmentPointData FindOneAlignmentPointWithOutDependent(HashSet<AlignmentPointData> points)
{
AlignmentPointData value = null;
foreach (var item in points)
{
if (item.HasNoLeftPoints)
{
value = item;
break;
}
}
return value;
}
#endregion
}
}