/dotnet45/Xml.Schema.Linq/Fxt/XmlSchemaQueryExtensions.cs

# · C# · 323 lines · 276 code · 46 blank · 1 comment · 28 complexity · 7487f88be6a3c3d718a9be13bb5f3325 MD5 · raw file

  1. //Copyright (c) Microsoft Corporation. All rights reserved.
  2. namespace Xml.Schema.Linq.Fxt
  3. {
  4. using System;
  5. using System.Linq;
  6. using System.Xml;
  7. using System.Xml.Schema;
  8. using System.Collections.Generic;
  9. public static class XmlSchemaQueryExtensions
  10. {
  11. public static bool DefinesXsdType(this XmlSchemaSet schemas, XmlQualifiedName name)
  12. {
  13. return schemas.GlobalXsdTypes().QNames().Contains(name);
  14. }
  15. public static bool DefinesXsdElement(this XmlSchemaSet schemas, XmlQualifiedName name)
  16. {
  17. return schemas.GlobalXsdElements().QNames().Contains(name);
  18. }
  19. public static bool DefinesXsdAttribute(this XmlSchemaSet schemas, XmlQualifiedName name)
  20. {
  21. return schemas.GlobalXsdAttributes().QNames().Contains(name);
  22. }
  23. public static XmlQualifiedName RootType(this XmlSchemaSet schemas, XmlQualifiedName name)
  24. {
  25. var ct = schemas.GlobalTypes[name] as XmlSchemaComplexType;
  26. if (ct==null)
  27. return null;
  28. if (ct.BaseXmlSchemaType.TypeCode == XmlTypeCode.Item)
  29. return name;
  30. return schemas.RootType(ct.BaseXmlSchemaType.QualifiedName);
  31. }
  32. public static XmlQualifiedName RootElement(this XmlSchemaSet schemas, XmlQualifiedName name)
  33. {
  34. var el = schemas.GlobalElements[name] as XmlSchemaElement;
  35. var bname = el.SubstitutionGroup;
  36. if (bname.IsEmpty)
  37. return name;
  38. return schemas.RootElement(bname);
  39. }
  40. public static bool IsDerivedComplexType(this XmlSchemaType ty)
  41. {
  42. var ct = ty as XmlSchemaComplexType;
  43. if (ct!=null)
  44. return (ct.ContentModel as XmlSchemaComplexContent) != null;
  45. return false;
  46. }
  47. public static bool IsGlobal(this XmlSchemaElement el)
  48. {
  49. return el.Parent is XmlSchema;
  50. }
  51. public static bool IsLocal(this XmlSchemaElement el)
  52. {
  53. return !el.IsGlobal();
  54. }
  55. public static XmlSchema XmlSchema(this XmlSchemaObject o)
  56. {
  57. if (o is XmlSchema) return (o as XmlSchema);
  58. else return o.Parent.XmlSchema();
  59. }
  60. public static IEnumerable<XmlSchema> XmlSchemas(this XmlSchemaSet set)
  61. {
  62. foreach (XmlSchema x in set.Schemas())
  63. yield return x;
  64. }
  65. public static IEnumerable<XmlSchemaType> GlobalXsdTypes(this XmlSchemaSet set)
  66. {
  67. foreach (var x in set.XmlSchemas())
  68. foreach (var y in x.GlobalXsdTypes())
  69. yield return y;
  70. }
  71. public static IEnumerable<XmlSchemaType> AllXsdTypes(this XmlSchemaSet set)
  72. {
  73. return Enumerable.Union(
  74. set.GlobalXsdTypes(),
  75. set.AnonymousXsdTypes());
  76. }
  77. public static IEnumerable<XmlSchemaType> GlobalXsdTypes(this XmlSchema schema)
  78. {
  79. foreach (XmlSchemaType x in schema.SchemaTypes.Values)
  80. yield return x;
  81. }
  82. public static IEnumerable<XmlSchemaType> AnonymousXsdTypes(this XmlSchemaSet set)
  83. {
  84. return
  85. from gel in set.AllXsdElements()
  86. where gel.SchemaType != null
  87. select gel.SchemaType;
  88. }
  89. public static IEnumerable<XmlQualifiedName> QNames(this IEnumerable<XmlSchemaType> types)
  90. {
  91. return types.Select(x => x.QualifiedName);
  92. }
  93. public static IEnumerable<XmlSchemaElement> AllXsdElements(this XmlSchemaSet set)
  94. {
  95. return Enumerable.Union(
  96. set.GlobalXsdElements(),
  97. set.LocalXsdElements());
  98. }
  99. public static IEnumerable<XmlSchemaElement> GlobalXsdElements(this XmlSchemaSet set)
  100. {
  101. foreach (var x in set.XmlSchemas())
  102. foreach (var y in x.GlobalXsdElements())
  103. yield return y;
  104. }
  105. public static IEnumerable<XmlSchemaElement> GlobalXsdElements(this XmlSchema schema)
  106. {
  107. foreach (XmlSchemaElement x in schema.Elements.Values)
  108. yield return x;
  109. }
  110. public static IEnumerable<XmlSchemaAttribute> GlobalXsdAttributes(this XmlSchemaSet set)
  111. {
  112. foreach (var x in set.XmlSchemas())
  113. foreach (var y in x.GlobalXsdAttributes())
  114. yield return y;
  115. }
  116. public static IEnumerable<XmlSchemaAttribute> GlobalXsdAttributes(this XmlSchema schema)
  117. {
  118. foreach (XmlSchemaAttribute x in schema.Attributes.Values)
  119. yield return x;
  120. }
  121. public static IEnumerable<XmlQualifiedName> QNames(this IEnumerable<XmlSchemaElement> els)
  122. {
  123. return els.Select(x => x.QualifiedName);
  124. }
  125. public static IEnumerable<XmlQualifiedName> QNames(this IEnumerable<XmlSchemaAttribute> els)
  126. {
  127. return els.Select(x => x.QualifiedName);
  128. }
  129. public static IEnumerable<XmlSchemaElement> LocalXsdElements(this XmlSchemaSet set)
  130. {
  131. foreach (var x in set.XmlSchemas())
  132. foreach (var y in x.LocalXsdElements())
  133. yield return y;
  134. }
  135. public static IEnumerable<XmlSchemaElement> LocalXsdElements(this XmlSchema schema)
  136. {
  137. foreach (XmlSchemaElement x in schema.Elements.Values)
  138. foreach (var y in x.LocalXsdElements())
  139. yield return y;
  140. foreach (XmlSchemaType x in schema.SchemaTypes.Values)
  141. foreach (var y in x.LocalXsdElements())
  142. yield return y;
  143. foreach (XmlSchemaGroup x in schema.Groups.Values)
  144. foreach (var y in x.LocalXsdElements())
  145. yield return y;
  146. }
  147. public static IEnumerable<XmlSchemaElement> LocalXsdElements(this XmlSchemaElement el)
  148. {
  149. return el.SchemaType.LocalXsdElements();
  150. }
  151. public static IEnumerable<XmlSchemaElement> LocalXsdElements(this XmlSchemaType ty)
  152. {
  153. var ct = ty as XmlSchemaComplexType;
  154. if (ct==null) yield break;
  155. if (ct.ContentModel==null)
  156. foreach (var x in ct.Particle.LocalXsdElements())
  157. yield return x;
  158. else
  159. {
  160. var cc = ct.ContentModel as XmlSchemaComplexContent;
  161. if (cc==null) yield break;
  162. var ext = cc.Content as XmlSchemaComplexContentExtension;
  163. if (ext==null) yield break;
  164. foreach (var x in ext.Particle.LocalXsdElements())
  165. yield return x;
  166. }
  167. }
  168. public static IEnumerable<XmlSchemaElement> LocalXsdElements(this XmlSchemaGroup gr)
  169. {
  170. return gr.Particle.LocalXsdElements();
  171. }
  172. public static IEnumerable<XmlSchemaElement> LocalXsdElements(this XmlSchemaParticle pa)
  173. {
  174. if (pa==null) yield break;
  175. var grp = pa as XmlSchemaGroupBase;
  176. if (grp!=null)
  177. {
  178. foreach (XmlSchemaParticle x in grp.Items)
  179. foreach (var y in x.LocalXsdElements())
  180. yield return y;
  181. yield break;
  182. }
  183. var el = pa as XmlSchemaElement;
  184. if (el!=null)
  185. {
  186. yield return el;
  187. foreach (var x in el.SchemaType.LocalXsdElements())
  188. yield return x;
  189. yield break;
  190. }
  191. }
  192. public static IEnumerable<XmlSchemaAttribute> LocalXsdAttributes(this XmlSchemaSet set)
  193. {
  194. foreach (var x in set.XmlSchemas())
  195. foreach (var y in x.LocalXsdAttributes())
  196. yield return y;
  197. }
  198. public static IEnumerable<XmlSchemaAttribute> LocalXsdAttributes(this XmlSchema schema)
  199. {
  200. foreach (XmlSchemaElement x in schema.Elements.Values)
  201. foreach (var y in x.LocalXsdAttributes())
  202. yield return y;
  203. foreach (XmlSchemaType x in schema.SchemaTypes.Values)
  204. foreach (var y in x.LocalXsdAttributes())
  205. yield return y;
  206. foreach (XmlSchemaGroup x in schema.Groups.Values)
  207. foreach (var y in x.LocalXsdAttributes())
  208. yield return y;
  209. }
  210. public static IEnumerable<XmlSchemaAttribute> LocalXsdAttributes(this XmlSchemaElement el)
  211. {
  212. return el.SchemaType.LocalXsdAttributes();
  213. }
  214. public static IEnumerable<XmlSchemaAttribute> LocalXsdAttributes(this XmlSchemaType ty)
  215. {
  216. var ct = ty as XmlSchemaComplexType;
  217. if (ct==null) yield break;
  218. foreach (XmlSchemaAttribute x in ct.Attributes)
  219. yield return x;
  220. if (ct.ContentModel==null)
  221. foreach (var x in ct.Particle.LocalXsdAttributes())
  222. yield return x;
  223. else
  224. {
  225. var cc = ct.ContentModel as XmlSchemaComplexContent;
  226. if (cc==null) yield break;
  227. var ext = cc.Content as XmlSchemaComplexContentExtension;
  228. if (ext==null) yield break;
  229. foreach (XmlSchemaAttribute x in ext.Attributes)
  230. yield return x;
  231. foreach (var x in ext.Particle.LocalXsdAttributes())
  232. yield return x;
  233. }
  234. }
  235. public static IEnumerable<XmlSchemaAttribute> LocalXsdAttributes(this XmlSchemaGroup gr)
  236. {
  237. return gr.Particle.LocalXsdAttributes();
  238. }
  239. public static IEnumerable<XmlSchemaAttribute> LocalXsdAttributes(this XmlSchemaParticle pa)
  240. {
  241. if (pa==null) yield break;
  242. var grp = pa as XmlSchemaGroupBase;
  243. if (grp!=null)
  244. {
  245. foreach (XmlSchemaParticle x in grp.Items)
  246. foreach (var y in x.LocalXsdAttributes())
  247. yield return y;
  248. yield break;
  249. }
  250. var el = pa as XmlSchemaElement;
  251. if (el!=null)
  252. {
  253. foreach (var x in el.SchemaType.LocalXsdAttributes())
  254. yield return x;
  255. yield break;
  256. }
  257. }
  258. public static IEnumerable<XmlSchemaAttribute> XsdAttributesInScope(this XmlSchemaElement el) {
  259. return el.SchemaType.XsdAttributesInScope();
  260. }
  261. public static IEnumerable<XmlSchemaAttribute> XsdAttributesInScope(this XmlSchemaType ty) {
  262. if (ty==null) yield break;
  263. var ct = ty as XmlSchemaComplexType;
  264. if (ct==null) yield break;
  265. foreach (XmlSchemaAttribute x in ct.Attributes)
  266. yield return x;
  267. if (ct.ContentModel!=null) {
  268. var cc = ct.ContentModel as XmlSchemaComplexContent;
  269. if (cc==null) yield break;
  270. var ext = cc.Content as XmlSchemaComplexContentExtension;
  271. if (ext==null) yield break;
  272. foreach (XmlSchemaAttribute x in ext.Attributes)
  273. yield return x;
  274. }
  275. }
  276. }
  277. }