-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathConfigurationCollectionSchema.cs
234 lines (200 loc) · 7.74 KB
/
ConfigurationCollectionSchema.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
// Copyright (c) Lex Li. All rights reserved.
//
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Collections.Generic;
using System.Linq;
namespace Microsoft.Web.Administration
{
public sealed class ConfigurationCollectionSchema
{
internal ConfigurationCollectionSchema(string path, string addElementNames, string removeElementName, string clearElementName, bool isMergeAppend, bool allowDuplicates, bool allowUnrecognizedAttributes, string fileName)
{
IsMergeAppend = isMergeAppend;
AllowDuplicates = allowDuplicates;
AddElementNames = addElementNames;
AddSchemas = new List<ConfigurationElementSchema>(_addNames.Length);
foreach (var name in _addNames)
{
AddSchemas.Add(new ConfigurationElementSchema(fileName) { Path = path + '/' + name, AllowUnrecognizedAttributes = allowUnrecognizedAttributes, Name = name });
}
RemoveElementName = removeElementName;
RemoveSchema = RemoveElementName == null
? null
: new ConfigurationElementSchema(fileName)
{
Path = path + '/' + RemoveElementName,
AllowUnrecognizedAttributes =
allowUnrecognizedAttributes,
Name = RemoveElementName
};
ClearElementName = clearElementName;
ClearSchema = ClearElementName == null
? null
: new ConfigurationElementSchema(fileName)
{
Path = path + '/' + ClearElementName,
AllowUnrecognizedAttributes =
allowUnrecognizedAttributes,
Name = ClearElementName
};
Path = path;
}
public ConfigurationElementSchema GetAddElementSchema(string elementName)
{
return (from name in _addNames
where elementName == name
select AddSchemas.First(item => item.Path.EndsWith(name, System.StringComparison.Ordinal))).FirstOrDefault();
}
public ConfigurationElementSchema GetClearElementSchema()
{
return ClearSchema;
}
public object GetMetadata(string metadataType)
{
return null;
}
public ConfigurationElementSchema GetRemoveElementSchema()
{
return RemoveSchema;
}
public string AddElementNames
{
get
{
return _addElementNames;
}
internal set
{
if (string.IsNullOrWhiteSpace(value))
{
_addElementNames = "add";
_addNames = new[] { "add" };
return;
}
_addElementNames = value;
_addNames = value.Split(',');
}
}
public bool AllowDuplicates { get; internal set; }
public string ClearElementName
{
get { return _clearElementName; }
internal set { _clearElementName = string.IsNullOrWhiteSpace(value) ? null : value; }
}
public bool IsMergeAppend { get; internal set; }
public string RemoveElementName
{
get { return _removeElementName; }
internal set { _removeElementName = string.IsNullOrWhiteSpace(value) ? null : value; }
}
internal ConfigurationElementSchema RemoveSchema;
internal ConfigurationElementSchema ClearSchema;
internal List<ConfigurationElementSchema> AddSchemas;
private string _addElementNames;
private string[] _addNames;
private string _clearElementName;
private string _removeElementName;
internal string Path { get; }
internal ConfigurationElementSchema FindSchema(string path)
{
var remove = string.Format("{0}/{1}", Path, RemoveElementName);
var clear = string.Format("{0}/{1}", Path, ClearElementName);
if (path == remove)
{
return RemoveSchema;
}
if (path == clear)
{
return ClearSchema;
}
foreach (string name in _addNames)
{
string add = string.Format("{0}/{1}", Path, name);
if (path == add)
{
return GetAddElementSchema(name);
}
}
foreach (var name in _addNames)
{
var addRoot = GetAddElementSchema(name);
var addSchema = addRoot.FindSchema(path);
if (addSchema != null)
{
return addSchema;
}
}
// TODO: do we need clear and remove check?
if (ClearSchema != null)
{
var root = ClearSchema;
var result = root.FindSchema(path);
if (result != null)
{
return result;
}
}
if (RemoveSchema != null)
{
var root = RemoveSchema;
var result = root.FindSchema(path);
return result;
}
return null;
}
internal void Merge(ConfigurationCollectionSchema child)
{
// TODO: validation
if (string.IsNullOrEmpty(AddElementNames))
{
AddElementNames = child.AddElementNames;
}
if (string.IsNullOrEmpty(ClearElementName))
{
ClearElementName = child.ClearElementName;
}
if (string.IsNullOrEmpty(RemoveElementName))
{
RemoveElementName = child.RemoveElementName;
}
// TODO: is it OK?
if (RemoveSchema != null && child.RemoveSchema != null)
{
RemoveSchema.AllowUnrecognizedAttributes = child.RemoveSchema.AllowUnrecognizedAttributes;
}
if (ClearSchema != null && child.ClearSchema != null)
{
ClearSchema.AllowUnrecognizedAttributes = child.ClearSchema.AllowUnrecognizedAttributes;
}
}
internal bool ContainsAddElement(string elementTagName)
{
return _addNames.Any(item => item == elementTagName);
}
internal ConfigurationElementSchema GetElementSchema(string name)
{
if (name == ClearElementName)
{
return GetClearElementSchema();
}
return name == RemoveElementName ? GetRemoveElementSchema() : GetAddElementSchema(name);
}
internal void ReplicateAddSchema()
{
for (int i = 1; i < AddSchemas.Count; i++)
{
AddSchemas[i].AttributeSchemas = AddSchemas[0].AttributeSchemas;
AddSchemas[i].ChildElementSchemas = AddSchemas[0].ChildElementSchemas;
AddSchemas[i].CollectionSchema = AddSchemas[0].CollectionSchema;
}
foreach (ConfigurationAttributeSchema schema in AddSchemas[0].AttributeSchemas)
{
if (!schema.IsUniqueKey && !schema.IsCombinedKey)
{
continue;
}
this.RemoveSchema?.AttributeSchemas.Add(schema);
}
}
}
}