-
Notifications
You must be signed in to change notification settings - Fork 603
Expand file tree
/
Copy pathMCContext.cs
More file actions
484 lines (408 loc) · 14.8 KB
/
Copy pathMCContext.cs
File metadata and controls
484 lines (408 loc) · 14.8 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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using DocumentFormat.OpenXml.Features;
using DocumentFormat.OpenXml.Framework;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Xml;
namespace DocumentFormat.OpenXml
{
internal class MCContext
{
private static readonly char[] Separator = new[] { ' ' };
internal delegate string? LookupNamespace(string prefix);
private readonly IOpenXmlNamespaceResolver _resolver;
private readonly Stack<string> _currentIgnorable;
private readonly Stack<XmlQualifiedName> _currentPreserveAttr;
private readonly Stack<XmlQualifiedName> _currentPreserveEle;
private readonly Stack<XmlQualifiedName> _currentProcessContent;
private readonly Stack<int> _pushedIgnor;
private readonly Stack<int> _pushedPA;
private readonly Stack<int> _pushedPE;
private readonly Stack<int> _pushedPC;
private readonly bool _noExceptionOnError;
internal MCContext(IOpenXmlNamespaceResolver resolver)
{
_resolver = resolver;
_currentIgnorable = new Stack<string>();
_currentPreserveAttr = new Stack<XmlQualifiedName>();
_currentPreserveEle = new Stack<XmlQualifiedName>();
_currentProcessContent = new Stack<XmlQualifiedName>();
_pushedIgnor = new Stack<int>();
_pushedPA = new Stack<int>();
_pushedPC = new Stack<int>();
_pushedPE = new Stack<int>();
}
internal MCContext(IOpenXmlNamespaceResolver resolver, bool exceptionOnError)
: this(resolver)
{
_noExceptionOnError = !exceptionOnError;
}
internal LookupNamespace? LookupNamespaceDelegate { get; set; }
#region methods to maintain the MC Context
internal void PushMCAttributes(MarkupCompatibilityAttributes attr)
{
_pushedIgnor.Push(PushIgnorable(attr));
_pushedPA.Push(PushPreserveAttribute(attr));
_pushedPE.Push(PushPreserveElement(attr));
_pushedPC.Push(PushProcessContent(attr));
}
internal void PopMCAttributes()
{
PopIgnorable(_pushedIgnor.Pop());
PopPreserveAttribute(_pushedPA.Pop());
PopPreserveElement(_pushedPE.Pop());
PopProcessContent(_pushedPC.Pop());
}
/// <summary>
/// This method is for MC validation use. Only push Ignorable and ProcessContent.
/// </summary>
/// <param name="attr"></param>
/// <param name="lookupNamespaceDelegate"></param>
internal void PushMCAttributes2(MarkupCompatibilityAttributes? attr, LookupNamespace lookupNamespaceDelegate)
{
LookupNamespaceDelegate = lookupNamespaceDelegate;
_pushedIgnor.Push(PushIgnorable(attr));
_pushedPC.Push(PushProcessContent(attr));
}
/// <summary>
/// This method is for MC validation use only.
/// </summary>
internal void PopMCAttributes2()
{
PopIgnorable(_pushedIgnor.Pop());
PopProcessContent(_pushedPC.Pop());
}
/// <summary>
/// This method is called by ParseQNameList() and ParsePrefixList().
/// </summary>
/// <param name="value">The value of the attribute.</param>
/// <returns>True to stop parsing; False to continue.</returns>
internal delegate bool OnInvalidValue(string value);
internal static string[] GetPrefixes(string? value)
{
if (value is null)
{
return Cached.Array<string>();
}
return value.Split(Separator, StringSplitOptions.RemoveEmptyEntries);
}
internal IEnumerable<string> ParsePrefixList(string ignorable, OnInvalidValue onInvalidPrefix)
{
var prefixes = GetPrefixes(ignorable);
foreach (var prefix in prefixes)
{
var ns = LookupNamespaceDelegate?.Invoke(prefix);
if (ns.IsNullOrEmpty())
{
if (onInvalidPrefix(ignorable))
{
yield break;
}
else
{
continue;
}
}
yield return ns;
}
}
internal IEnumerable<XmlQualifiedName> ParseQNameList(string qnameList, OnInvalidValue onInvalidQName)
{
Debug.Assert(!string.IsNullOrEmpty(qnameList));
var qnames = GetPrefixes(qnameList);
foreach (var qname in qnames)
{
var colonIndex = qname.IndexOf(":", StringComparison.Ordinal);
if (colonIndex <= 0 || colonIndex == qname.Length - 1 || qname.IndexOf(":", colonIndex + 1, StringComparison.Ordinal) >= 0)
{
if (onInvalidQName(qnameList))
{
yield break;
}
else
{
continue;
}
}
var ns = LookupNamespaceDelegate?.Invoke(qname.Substring(0, colonIndex));
if (ns.IsNullOrEmpty())
{
if (onInvalidQName(qnameList))
{
yield break;
}
else
{
continue;
}
}
yield return new XmlQualifiedName(qname.Substring(colonIndex + 1), ns);
}
}
#endregion
#region Exposed functions
internal bool HasIgnorable()
{
return _currentIgnorable.Count > 0;
}
internal bool IsIgnorableNs(in OpenXmlNamespace ns)
{
if (_currentIgnorable.Count == 0)
{
return false;
}
if (ns.IsEmpty)
{
return false;
}
if (_currentIgnorable.Contains(ns.Uri))
{
return true;
}
else
{
return false;
}
}
internal bool IsPreservedAttribute(in OpenXmlQualifiedName qname)
{
return ContainsQName(qname, _currentPreserveAttr);
}
internal bool IsPreservedElement(in OpenXmlQualifiedName qname)
{
return ContainsQName(qname, _currentPreserveEle);
}
internal bool IsProcessContent(in OpenXmlQualifiedName qname)
{
return ContainsQName(qname, _currentProcessContent);
}
internal bool IsProcessContent(OpenXmlElement element)
{
// TODO: performance tuning
return ContainsQName(element.QName, _currentProcessContent);
}
internal AttributeAction GetAttributeAction(in OpenXmlQualifiedName qname, FileFormatVersions format)
{
if (format == (FileFormatVersions.Office2010 | FileFormatVersions.Office2007) || format.All())
{
return AttributeAction.Normal;
}
if (qname.Namespace.IsEmpty)
{
return AttributeAction.Normal;
}
if (_resolver.HasVersion(qname.Namespace, format))
{
return AttributeAction.Normal;
}
if (!IsIgnorableNs(qname.Namespace))
{
return AttributeAction.Normal;
}
if (IsPreservedAttribute(qname))
{
return AttributeAction.Normal;
}
return AttributeAction.Ignore;
}
internal ElementAction GetElementAction(OpenXmlElement element, FileFormatVersions format)
{
if (format == (FileFormatVersions.Office2010 | FileFormatVersions.Office2007) || format.All())
{
return ElementAction.Normal;
}
if (element is AlternateContent)
{
return ElementAction.ACBlock;
}
if (element.IsInVersion(format))
{
return ElementAction.Normal;
}
if (IsIgnorableNs(element.QName.Namespace))
{
if (IsPreservedElement(element.QName))
{
return ElementAction.Normal;
}
if (IsProcessContent(element.QName))
{
return ElementAction.ProcessContent;
}
return ElementAction.Ignore;
}
return ElementAction.Normal;
}
#endregion
#region private methods
private static bool ContainsQName(in OpenXmlQualifiedName input, Stack<XmlQualifiedName> stack)
{
var qname = new XmlQualifiedName(input.Name, input.Namespace.Uri);
foreach (var qn in stack)
{
if (qn == qname ||
(qn.Name == "*" && qn.Namespace == input.Namespace.Uri))
{
return true;
}
}
return false;
}
/// <summary>
/// This method is called by ParseIgnorable() and ParseProcessContent().
/// </summary>
/// <param name="value">The value of the attribute.</param>
/// <returns>True to stop parsing; False to continue.</returns>
private bool OnMcContextError(string value)
{
if (_noExceptionOnError)
{
return false;
}
else
{
throw new InvalidMCContentException(SR.Format(ExceptionMessages.UnknowMCContent, value));
}
}
private int PushIgnorable(MarkupCompatibilityAttributes? attr)
{
int ret = 0;
if (attr is not null && attr.Ignorable is not null && !attr.Ignorable.Value.IsNullOrEmpty())
{
foreach (var ns in ParsePrefixList(attr.Ignorable.Value, OnMcContextError))
{
_currentIgnorable.Push(ns);
ret++;
}
}
return ret;
}
private int PushQName(Stack<XmlQualifiedName> stack, string value)
{
int ret = 0;
foreach (var qn in ParseQNameList(value, OnMcContextError))
{
stack.Push(qn);
ret++;
}
return ret;
}
private int PushPreserveAttribute(MarkupCompatibilityAttributes attr)
{
int ret = 0;
if (attr is not null && attr.PreserveAttributes is not null && !attr.PreserveAttributes.Value.IsNullOrEmpty())
{
ret = PushQName(_currentPreserveAttr, attr.PreserveAttributes.Value);
}
return ret;
}
private int PushPreserveElement(MarkupCompatibilityAttributes attr)
{
int ret = 0;
if (attr is not null && attr.PreserveElements is not null && !attr.PreserveElements.Value.IsNullOrEmpty())
{
ret = PushQName(_currentPreserveEle, attr.PreserveElements.Value);
}
return ret;
}
private int PushProcessContent(MarkupCompatibilityAttributes? attr)
{
int ret = 0;
if (attr is not null && attr.ProcessContent is not null && !attr.ProcessContent.Value.IsNullOrEmpty())
{
ret = PushQName(_currentProcessContent, attr.ProcessContent.Value);
}
return ret;
}
private void PopIgnorable(int count)
{
for (int i = 0; i < count; i++)
{
_currentIgnorable.Pop();
}
}
private void PopPreserveAttribute(int count)
{
for (int i = 0; i < count; i++)
{
_currentPreserveAttr.Pop();
}
}
private void PopPreserveElement(int count)
{
for (int i = 0; i < count; i++)
{
_currentPreserveEle.Pop();
}
}
private void PopProcessContent(int count)
{
for (int i = 0; i < count; i++)
{
_currentProcessContent.Pop();
}
}
#endregion
#region Helper functions
internal OpenXmlCompositeElement? GetContentFromACBlock(AlternateContent acblk, FileFormatVersions format)
{
Debug.Assert(format != FileFormatVersions.Office2007.AndLater());
foreach (var choice in acblk.ChildElements.OfType<AlternateContentChoice>())
{
if (choice.Requires is null)
{
// should we throw exception here?
continue;
}
var reqs = choice.Requires.InnerText?.Trim();
if (reqs.IsNullOrEmpty())
{
// should we throw exception here?
continue;
}
bool chooce = true;
foreach (var req in GetPrefixes(reqs))
{
// fix bug 537858
// the LookupNamespaceDeleget is from xmlReader
// bug when we try to GetContentFromACBlock, the reader has already moved to the next element of ACB
// so we should use the element's LookupNamespace function to find it
// string ns = LookupNamespaceDelegate(req);
var uri = choice.LookupNamespace(req);
if (uri is null)
{
if (_noExceptionOnError)
{
chooce = false;
break;
}
else
{
throw new InvalidMCContentException(SR.Format(ExceptionMessages.UnknowMCContent, req));
}
}
var ns = new OpenXmlNamespace(uri);
if (!_resolver.HasVersion(ns, format))
{
chooce = false;
break;
}
}
if (chooce)
{
return choice;
}
}
var fallback = acblk.GetFirstChild<AlternateContentFallback>();
if (fallback is not null)
{
return fallback;
}
return null;
}
#endregion
}
}