/LateBindingApi.CodeGenerator.VB/FakedEnumeratorManager.cs

# · C# · 244 lines · 207 code · 37 blank · 0 comment · 39 complexity · 63aaf758661702b9fe82b4e3946acfb1 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Xml.Linq;
  4. using System.Xml.XPath;
  5. using System.Xml;
  6. using System.Linq;
  7. using System.Text;
  8. namespace LateBindingApi.CodeGenerator.VB
  9. {
  10. internal class FakedEnumeratorManager
  11. {
  12. VBGenerator _parent;
  13. XDocument _document;
  14. XDocument _derived;
  15. internal FakedEnumeratorManager(VBGenerator parent, XDocument document)
  16. {
  17. _parent = parent;
  18. _document = document;
  19. }
  20. public void ScanForMissedEnumerators()
  21. {
  22. _derived = new XDocument();
  23. _derived.Add(new XElement("Document"));
  24. ScanForDerived("DispatchInterfaces", "Interface");
  25. ScanForDerived("Interfaces", "Interface");
  26. }
  27. private void ScanForDerived(string elements, string element)
  28. {
  29. var interfaces = (from a in _document.Element("LateBindingApi.CodeGenerator.Document").Element("Solution").Element("Projects").Elements("Project").
  30. Elements(elements).Elements(element)
  31. select a);
  32. foreach (XElement itemFace in interfaces)
  33. {
  34. XElement countNode = GetCountNode(itemFace);
  35. XElement itemNode = GetDefaultItemNode(itemFace);
  36. XElement enumNode = GetEnumeratorNode(itemFace);
  37. if ((null != countNode) && (null != itemNode) && (null == enumNode) && (itemNode.Element("Parameters").Element("Parameter").Attribute("IsEnum").Value == "false"))
  38. {
  39. XElement projectNode = itemFace;
  40. while (projectNode.Name != "Project")
  41. projectNode = projectNode.Parent;
  42. XElement fakedEnum = new XElement("Property",
  43. new XAttribute("Name", "_NewEnum"),
  44. new XAttribute("InvokeKind", "INVOKE_PROPERTYGET"),
  45. new XAttribute("Key", XmlConvert.EncodeLocalName(Guid.NewGuid().ToString())),
  46. new XAttribute("IsCustom", "true")
  47. );
  48. fakedEnum.Add(new XElement("RefLibraries"));
  49. fakedEnum.Add(new XElement("Parameters", new XElement("RefLibraries")));
  50. fakedEnum.Element("Parameters").Add(new XElement("ReturnValue",
  51. new XAttribute("Type", itemNode.Element("Parameters").Element("ReturnValue").Attribute("Type").Value),
  52. new XAttribute("VarType", itemNode.Element("Parameters").Element("ReturnValue").Attribute("VarType").Value),
  53. new XAttribute("MarshalAs", itemNode.Element("Parameters").Element("ReturnValue").Attribute("MarshalAs").Value),
  54. new XAttribute("TypeKind", itemNode.Element("Parameters").Element("ReturnValue").Attribute("TypeKind").Value),
  55. new XAttribute("IsComProxy", itemNode.Element("Parameters").Element("ReturnValue").Attribute("IsComProxy").Value),
  56. new XAttribute("IsExternal", itemNode.Element("Parameters").Element("ReturnValue").Attribute("IsExternal").Value),
  57. new XAttribute("IsEnum", itemNode.Element("Parameters").Element("ReturnValue").Attribute("IsEnum").Value),
  58. new XAttribute("IsArray", itemNode.Element("Parameters").Element("ReturnValue").Attribute("IsArray").Value),
  59. new XAttribute("IsNative", itemNode.Element("Parameters").Element("ReturnValue").Attribute("IsNative").Value),
  60. new XAttribute("TypeKey", itemNode.Element("Parameters").Element("ReturnValue").Attribute("TypeKey").Value),
  61. new XAttribute("ProjectKey", itemNode.Element("Parameters").Element("ReturnValue").Attribute("ProjectKey").Value),
  62. new XAttribute("LibraryKey", itemNode.Element("Parameters").Element("ReturnValue").Attribute("LibraryKey").Value)
  63. ));
  64. foreach (XElement itemRef in itemNode.Element("Parameters").Element("RefLibraries").Elements("Ref"))
  65. fakedEnum.Element("Parameters").Element("RefLibraries").Add(new XElement("Ref", new XAttribute("Key", itemRef.Attribute("Key").Value)));
  66. foreach (XElement itemRef in itemNode.Element("RefLibraries").Elements("Ref"))
  67. fakedEnum.Element("RefLibraries").Add(new XElement("Ref", new XAttribute("Key", itemRef.Attribute("Key").Value)));
  68. XElement dispNode = new XElement("DispIds", new XElement("DispId", new XAttribute("Id", "-999")));
  69. dispNode.Element("DispId").Add(new XElement("RefLibraries"));
  70. foreach (XElement itemRef in itemNode.Element("Parameters").Element("RefLibraries").Elements("Ref"))
  71. {
  72. dispNode.Element("DispId").Element("RefLibraries").Add(new XElement("Ref", new XAttribute("Key", itemRef.Attribute("Key").Value)));
  73. }
  74. fakedEnum.Add(dispNode);
  75. Console.WriteLine(projectNode.Attribute("Name").Value + "." + itemFace.Attribute("Name").Value);
  76. itemFace.Element("Properties").Add(fakedEnum);
  77. }
  78. }
  79. }
  80. private XElement GetCountNode(XElement itemFace)
  81. {
  82. XElement node = (from a in itemFace.Element("Properties").Elements("Property")
  83. where a.Attribute("Name").Value.Equals("Count", StringComparison.InvariantCultureIgnoreCase)
  84. select a).FirstOrDefault();
  85. if (null != node)
  86. {
  87. string type = (node.Element("Parameters").Element("ReturnValue").Attribute("Type").Value) ;
  88. if ("Int32" == type)
  89. return node;
  90. }
  91. node = (from a in itemFace.Element("Methods").Elements("Method")
  92. where a.Attribute("Name").Value.Equals("Count", StringComparison.InvariantCultureIgnoreCase)
  93. select a).FirstOrDefault();
  94. if (null != node)
  95. return node;
  96. return null;
  97. }
  98. private XElement GetDefaultItemNode(XElement itemFace)
  99. {
  100. XElement node = null;
  101. foreach (XElement itemMethod in itemFace.Element("Properties").Elements("Property"))
  102. {
  103. node = (from a in itemMethod.Element("DispIds").Elements("DispId")
  104. where a.Attribute("Id").Value.Equals("0", StringComparison.InvariantCultureIgnoreCase)
  105. select a).FirstOrDefault();
  106. if (null != node)
  107. return itemMethod;
  108. }
  109. foreach (XElement itemMethod in itemFace.Element("Methods").Elements("Method"))
  110. {
  111. node = (from a in itemMethod.Element("DispIds").Elements("DispId")
  112. where a.Attribute("Id").Value.Equals("0", StringComparison.InvariantCultureIgnoreCase)
  113. select a).FirstOrDefault();
  114. if (null != node)
  115. return itemMethod;
  116. }
  117. return null;
  118. }
  119. private XElement GetEnumeratorNode(XElement itemFace)
  120. {
  121. XElement node = (from a in itemFace.Element("Properties").Elements("Property")
  122. where a.Attribute("Name").Value.Equals("_NewEnum", StringComparison.InvariantCultureIgnoreCase)
  123. select a).FirstOrDefault();
  124. if (null != node)
  125. return node;
  126. node = (from a in itemFace.Element("Methods").Elements("Method")
  127. where a.Attribute("Name").Value.Equals("_NewEnum", StringComparison.InvariantCultureIgnoreCase)
  128. select a).FirstOrDefault();
  129. if (null != node)
  130. return node;
  131. return null;
  132. }
  133. private void AddType(XElement type)
  134. {
  135. string id = type.Attribute("Key").Value;
  136. XElement node = (from a in _derived.Element("Document").Elements("Type")
  137. where a.Attribute("Key").Value.Equals(id, StringComparison.InvariantCultureIgnoreCase)
  138. select a).FirstOrDefault();
  139. if (null == node)
  140. {
  141. string name = type.Attribute("Name").Value;
  142. _derived.Element("Document").Add(new XElement("Type", new XAttribute("Name", name), new XAttribute("Key", id)));
  143. }
  144. }
  145. private XElement GetTypeByName(XElement projectNode, string name)
  146. {
  147. XElement node = (from a in projectNode.Element("DispatchInterfaces").Elements("Interface")
  148. where a.Attribute("Name").Value.Equals(name, StringComparison.InvariantCultureIgnoreCase)
  149. select a).FirstOrDefault();
  150. if (null != node)
  151. return node;
  152. node = (from a in projectNode.Element("Interfaces").Elements("Interface")
  153. where a.Attribute("Name").Value.Equals(name, StringComparison.InvariantCultureIgnoreCase)
  154. select a).FirstOrDefault();
  155. if (null != node)
  156. return node;
  157. node = (from a in projectNode.Element("CoClasses").Elements("CoClass")
  158. where a.Attribute("Name").Value.Equals(name, StringComparison.InvariantCultureIgnoreCase)
  159. select a).FirstOrDefault();
  160. if (null != node)
  161. return node;
  162. throw new Exception("name not found " + name);
  163. }
  164. private bool HasAttriute(XElement node, string attributeName)
  165. {
  166. foreach (XAttribute item in node.Attributes())
  167. {
  168. if (item.Name == attributeName)
  169. return true;
  170. }
  171. return false;
  172. }
  173. private XElement GetProjectNode(XElement returnValue)
  174. {
  175. XElement projectNode = returnValue.Parent;
  176. while (projectNode.Name != "Project")
  177. projectNode = projectNode.Parent;
  178. return projectNode;
  179. }
  180. public bool IsDerivedReturnValue(XElement returnValue)
  181. {
  182. string typeKey = returnValue.Attribute("TypeKey").Value;
  183. if (string.IsNullOrEmpty(typeKey))
  184. {
  185. if (returnValue.Attribute("IsExternal").Value.Equals("true", StringComparison.InvariantCultureIgnoreCase))
  186. return false;
  187. XElement projectNode = GetProjectNode(returnValue);
  188. XElement interfaceNode = GetTypeByName(projectNode, returnValue.Attribute("Type").Value as string);
  189. string id = interfaceNode.Attribute("Key").Value;
  190. return IsDerived(id);
  191. }
  192. else
  193. {
  194. XElement interfaceNode = VBGenerator.GetInterfaceOrClassFromKey(typeKey);
  195. string id = interfaceNode.Attribute("Key").Value;
  196. return IsDerived(id);
  197. }
  198. }
  199. public bool IsDerived(string id)
  200. {
  201. XElement node = (from a in _derived.Element("Document").Elements("Type")
  202. where a.Attribute("Key").Value.Equals(id, StringComparison.InvariantCultureIgnoreCase)
  203. select a).FirstOrDefault();
  204. return (node != null);
  205. }
  206. }
  207. }